2021-09-16 22:09:39 +02:00
|
|
|
const attributeService = require("./attributes");
|
|
|
|
const dateNoteService = require("./date_notes");
|
|
|
|
const becca = require("../becca/becca");
|
|
|
|
const noteService = require("./notes");
|
|
|
|
const cls = require("./cls");
|
|
|
|
const dateUtils = require("./date_utils");
|
|
|
|
|
|
|
|
function getInboxNote(date) {
|
|
|
|
const hoistedNote = getHoistedNote();
|
|
|
|
|
|
|
|
let inbox;
|
|
|
|
|
|
|
|
if (!hoistedNote.isRoot()) {
|
|
|
|
inbox = hoistedNote.searchNoteInSubtree('#hoistedInbox');
|
|
|
|
|
|
|
|
if (!inbox) {
|
|
|
|
inbox = hoistedNote.searchNoteInSubtree('#inbox');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inbox) {
|
|
|
|
inbox = hoistedNote;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
inbox = attributeService.getNoteWithLabel('inbox')
|
2022-01-10 17:09:20 +01:00
|
|
|
|| dateNoteService.getDayNote(date);
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return inbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getHiddenRoot() {
|
|
|
|
let hidden = becca.getNote('hidden');
|
|
|
|
|
|
|
|
if (!hidden) {
|
|
|
|
hidden = noteService.createNewNote({
|
2021-12-21 13:22:13 +01:00
|
|
|
branchId: 'hidden',
|
2021-09-16 22:09:39 +02:00
|
|
|
noteId: 'hidden',
|
|
|
|
title: 'hidden',
|
|
|
|
type: 'text',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: 'root'
|
|
|
|
}).note;
|
|
|
|
|
|
|
|
// isInheritable: false means that this notePath is automatically not preffered but at the same time
|
|
|
|
// the flag is not inherited to the children
|
|
|
|
hidden.addLabel('archived', "", false);
|
2021-12-04 13:45:15 +01:00
|
|
|
hidden.addLabel('excludeFromNoteMap', "", true);
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getSearchRoot() {
|
|
|
|
let searchRoot = becca.getNote('search');
|
|
|
|
|
|
|
|
if (!searchRoot) {
|
|
|
|
searchRoot = noteService.createNewNote({
|
|
|
|
noteId: 'search',
|
|
|
|
title: 'search',
|
|
|
|
type: 'text',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: getHiddenRoot().noteId
|
|
|
|
}).note;
|
|
|
|
}
|
|
|
|
|
|
|
|
return searchRoot;
|
|
|
|
}
|
|
|
|
|
2021-09-16 22:20:59 +02:00
|
|
|
function getSinglesNoteRoot() {
|
|
|
|
let singlesNoteRoot = becca.getNote('singles');
|
2021-09-16 22:09:39 +02:00
|
|
|
|
2021-09-16 22:20:59 +02:00
|
|
|
if (!singlesNoteRoot) {
|
|
|
|
singlesNoteRoot = noteService.createNewNote({
|
|
|
|
noteId: 'singles',
|
|
|
|
title: 'singles',
|
2021-09-16 22:09:39 +02:00
|
|
|
type: 'text',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: getHiddenRoot().noteId
|
|
|
|
}).note;
|
|
|
|
}
|
|
|
|
|
2021-09-16 22:20:59 +02:00
|
|
|
return singlesNoteRoot;
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
2021-09-20 23:04:41 +02:00
|
|
|
function getGlobalNoteMap() {
|
|
|
|
let globalNoteMap = becca.getNote('globalnotemap');
|
2021-09-16 22:09:39 +02:00
|
|
|
|
2021-09-20 23:04:41 +02:00
|
|
|
if (!globalNoteMap) {
|
|
|
|
globalNoteMap = noteService.createNewNote({
|
2021-09-20 22:19:47 +02:00
|
|
|
noteId: 'globalnotemap',
|
|
|
|
title: 'Global Note Map',
|
|
|
|
type: 'note-map',
|
2021-09-16 22:09:39 +02:00
|
|
|
content: '',
|
2021-09-16 22:20:59 +02:00
|
|
|
parentNoteId: getSinglesNoteRoot().noteId
|
2021-09-16 22:09:39 +02:00
|
|
|
}).note;
|
2021-09-20 23:04:41 +02:00
|
|
|
|
|
|
|
globalNoteMap.addLabel('mapRootNoteId', 'hoisted');
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
2021-09-20 23:04:41 +02:00
|
|
|
return globalNoteMap;
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function getSqlConsoleRoot() {
|
|
|
|
let sqlConsoleRoot = becca.getNote('sqlconsole');
|
|
|
|
|
|
|
|
if (!sqlConsoleRoot) {
|
|
|
|
sqlConsoleRoot = noteService.createNewNote({
|
|
|
|
noteId: 'sqlconsole',
|
|
|
|
title: 'SQL Console',
|
|
|
|
type: 'text',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: getHiddenRoot().noteId
|
|
|
|
}).note;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sqlConsoleRoot;
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSqlConsole() {
|
|
|
|
const {note} = noteService.createNewNote({
|
|
|
|
parentNoteId: getSqlConsoleRoot().noteId,
|
|
|
|
title: 'SQL Console',
|
|
|
|
content: "SELECT title, isDeleted, isProtected FROM notes WHERE noteId = ''\n\n\n\n",
|
|
|
|
type: 'code',
|
|
|
|
mime: 'text/x-sqlite;schema=trilium'
|
|
|
|
});
|
|
|
|
|
|
|
|
note.setLabel("sqlConsole", dateUtils.localNowDate());
|
|
|
|
|
|
|
|
return note;
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveSqlConsole(sqlConsoleNoteId) {
|
|
|
|
const sqlConsoleNote = becca.getNote(sqlConsoleNoteId);
|
|
|
|
const today = dateUtils.localNowDate();
|
|
|
|
|
|
|
|
const sqlConsoleHome =
|
|
|
|
attributeService.getNoteWithLabel('sqlConsoleHome')
|
2022-01-10 17:09:20 +01:00
|
|
|
|| dateNoteService.getDayNote(today);
|
2021-09-16 22:09:39 +02:00
|
|
|
|
2021-10-24 14:53:45 +02:00
|
|
|
const result = sqlConsoleNote.cloneTo(sqlConsoleHome.noteId);
|
|
|
|
|
|
|
|
for (const parentBranch of sqlConsoleNote.getParentBranches()) {
|
|
|
|
if (parentBranch.parentNote.hasAncestor("hidden")) {
|
|
|
|
parentBranch.markAsDeleted();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function createSearchNote(searchString, ancestorNoteId) {
|
|
|
|
const {note} = noteService.createNewNote({
|
|
|
|
parentNoteId: getSearchRoot().noteId,
|
|
|
|
title: 'Search: ' + searchString,
|
|
|
|
content: "",
|
|
|
|
type: 'search',
|
|
|
|
mime: 'application/json'
|
|
|
|
});
|
|
|
|
|
|
|
|
note.setLabel('searchString', searchString);
|
|
|
|
|
|
|
|
if (ancestorNoteId) {
|
|
|
|
note.setRelation('ancestor', ancestorNoteId);
|
|
|
|
}
|
|
|
|
|
|
|
|
return note;
|
|
|
|
}
|
|
|
|
|
2021-10-24 14:53:45 +02:00
|
|
|
function getSearchHome() {
|
2021-09-16 22:09:39 +02:00
|
|
|
const hoistedNote = getHoistedNote();
|
|
|
|
|
|
|
|
if (!hoistedNote.isRoot()) {
|
2021-10-24 14:53:45 +02:00
|
|
|
return hoistedNote.searchNoteInSubtree('#hoistedSearchHome')
|
2021-09-16 22:09:39 +02:00
|
|
|
|| hoistedNote.searchNoteInSubtree('#searchHome')
|
|
|
|
|| hoistedNote;
|
2021-10-24 14:53:45 +02:00
|
|
|
} else {
|
2021-09-16 22:09:39 +02:00
|
|
|
const today = dateUtils.localNowDate();
|
|
|
|
|
2021-10-24 14:53:45 +02:00
|
|
|
return hoistedNote.searchNoteInSubtree('#searchHome')
|
2022-01-10 17:09:20 +01:00
|
|
|
|| dateNoteService.getDayNote(today);
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
2021-10-24 14:53:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function saveSearchNote(searchNoteId) {
|
|
|
|
const searchNote = becca.getNote(searchNoteId);
|
|
|
|
const searchHome = getSearchHome();
|
|
|
|
|
|
|
|
const result = searchNote.cloneTo(searchHome.noteId);
|
|
|
|
|
|
|
|
for (const parentBranch of searchNote.getParentBranches()) {
|
|
|
|
if (parentBranch.parentNote.hasAncestor("hidden")) {
|
|
|
|
parentBranch.markAsDeleted();
|
|
|
|
}
|
|
|
|
}
|
2021-09-16 22:09:39 +02:00
|
|
|
|
2021-10-24 14:53:45 +02:00
|
|
|
return result;
|
2021-09-16 22:09:39 +02:00
|
|
|
}
|
|
|
|
|
2021-09-16 22:20:59 +02:00
|
|
|
function getHoistedNote() {
|
|
|
|
return becca.getNote(cls.getHoistedNoteId());
|
|
|
|
}
|
|
|
|
|
2021-12-07 23:03:49 +01:00
|
|
|
function getShareRoot() {
|
|
|
|
let shareRoot = becca.getNote('share');
|
|
|
|
|
|
|
|
if (!shareRoot) {
|
2022-11-06 14:44:26 +01:00
|
|
|
const hiddenRoot = getHiddenRoot();
|
|
|
|
|
2021-12-07 23:03:49 +01:00
|
|
|
shareRoot = noteService.createNewNote({
|
2021-12-20 17:30:47 +01:00
|
|
|
branchId: 'share',
|
2021-12-07 23:03:49 +01:00
|
|
|
noteId: 'share',
|
2021-12-20 17:30:47 +01:00
|
|
|
title: 'Shared notes',
|
2021-12-07 23:03:49 +01:00
|
|
|
type: 'text',
|
|
|
|
content: '',
|
2022-11-06 14:44:26 +01:00
|
|
|
parentNoteId: hiddenRoot.noteId
|
2021-12-07 23:03:49 +01:00
|
|
|
}).note;
|
|
|
|
}
|
|
|
|
|
|
|
|
return shareRoot;
|
|
|
|
}
|
|
|
|
|
2022-06-03 17:29:08 +02:00
|
|
|
function getBulkActionNote() {
|
|
|
|
let bulkActionNote = becca.getNote('bulkaction');
|
|
|
|
|
|
|
|
if (!bulkActionNote) {
|
|
|
|
bulkActionNote = noteService.createNewNote({
|
|
|
|
branchId: 'bulkaction',
|
|
|
|
noteId: 'bulkaction',
|
|
|
|
title: 'Bulk action',
|
|
|
|
type: 'text',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: getHiddenRoot().noteId
|
|
|
|
}).note;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bulkActionNote;
|
|
|
|
}
|
|
|
|
|
2022-08-02 17:01:09 +02:00
|
|
|
function getLaunchBarRoot() {
|
2022-08-04 23:00:32 +02:00
|
|
|
let note = becca.getNote('lb_root');
|
2022-08-02 17:01:09 +02:00
|
|
|
|
|
|
|
if (!note) {
|
|
|
|
note = noteService.createNewNote({
|
2022-08-04 23:00:32 +02:00
|
|
|
branchId: 'lb_root',
|
|
|
|
noteId: 'lb_root',
|
2022-08-02 17:01:09 +02:00
|
|
|
title: 'Launch bar',
|
2022-08-06 15:00:56 +02:00
|
|
|
type: 'shortcut',
|
2022-08-02 17:01:09 +02:00
|
|
|
content: '',
|
|
|
|
parentNoteId: getHiddenRoot().noteId
|
|
|
|
}).note;
|
2022-08-05 19:15:28 +02:00
|
|
|
|
|
|
|
note.addLabel("iconClass", "bx bx-sidebar");
|
2022-08-06 23:49:25 +02:00
|
|
|
note.addLabel("docName", "launchbar_intro");
|
2022-08-02 17:01:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return note;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLaunchBarAvailableShortcutsRoot() {
|
|
|
|
let note = becca.getNote('lb_availableshortcuts');
|
|
|
|
|
|
|
|
if (!note) {
|
|
|
|
note = noteService.createNewNote({
|
|
|
|
branchId: 'lb_availableshortcuts',
|
|
|
|
noteId: 'lb_availableshortcuts',
|
|
|
|
title: 'Available shortcuts',
|
2022-08-06 15:00:56 +02:00
|
|
|
type: 'shortcut',
|
2022-08-02 17:01:09 +02:00
|
|
|
content: '',
|
|
|
|
parentNoteId: getLaunchBarRoot().noteId
|
|
|
|
}).note;
|
2022-08-05 19:15:28 +02:00
|
|
|
|
|
|
|
note.addLabel("iconClass", "bx bx-hide");
|
2022-08-06 23:49:25 +02:00
|
|
|
note.addLabel("docName", "launchbar_intro");
|
2022-08-02 17:01:09 +02:00
|
|
|
}
|
|
|
|
|
2022-08-05 16:44:26 +02:00
|
|
|
const branch = becca.getBranch('lb_availableshortcuts');
|
|
|
|
if (!branch.isExpanded) {
|
|
|
|
branch.isExpanded = true;
|
|
|
|
branch.save();
|
|
|
|
}
|
|
|
|
|
2022-08-02 17:01:09 +02:00
|
|
|
return note;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLaunchBarVisibleShortcutsRoot() {
|
|
|
|
let note = becca.getNote('lb_visibleshortcuts');
|
|
|
|
|
|
|
|
if (!note) {
|
|
|
|
note = noteService.createNewNote({
|
|
|
|
branchId: 'lb_visibleshortcuts',
|
|
|
|
noteId: 'lb_visibleshortcuts',
|
|
|
|
title: 'Visible shortcuts',
|
2022-08-06 15:00:56 +02:00
|
|
|
type: 'shortcut',
|
2022-08-02 17:01:09 +02:00
|
|
|
content: '',
|
|
|
|
parentNoteId: getLaunchBarRoot().noteId
|
|
|
|
}).note;
|
2022-08-05 19:15:28 +02:00
|
|
|
|
|
|
|
note.addLabel("iconClass", "bx bx-show");
|
2022-08-06 23:49:25 +02:00
|
|
|
note.addLabel("docName", "launchbar_intro");
|
2022-08-02 17:01:09 +02:00
|
|
|
}
|
|
|
|
|
2022-08-05 16:44:26 +02:00
|
|
|
const branch = becca.getBranch('lb_visibleshortcuts');
|
|
|
|
if (!branch.isExpanded) {
|
|
|
|
branch.isExpanded = true;
|
|
|
|
branch.save();
|
|
|
|
}
|
|
|
|
|
2022-08-02 17:01:09 +02:00
|
|
|
return note;
|
|
|
|
}
|
|
|
|
|
|
|
|
const shortcuts = [
|
2022-08-04 23:00:32 +02:00
|
|
|
{ id: 'lb_newnote', command: 'createNoteIntoInbox', title: 'New note', icon: 'bx bx-file-blank', isVisible: true },
|
|
|
|
{ id: 'lb_search', command: 'searchNotes', title: 'Search notes', icon: 'bx bx-search', isVisible: true },
|
|
|
|
{ id: 'lb_jumpto', command: 'jumpToNote', title: 'Jump to note', icon: 'bx bx-send', isVisible: true },
|
2022-08-05 16:44:26 +02:00
|
|
|
{ id: 'lb_notemap', targetNoteId: 'globalnotemap', title: 'Note map', icon: 'bx bx-map-alt', isVisible: true },
|
|
|
|
{ id: 'lb_recentchanges', command: 'showRecentChanges', title: 'Recent changes', icon: 'bx bx-history', isVisible: false },
|
|
|
|
{ id: 'lb_calendar', builtinWidget: 'calendar', title: 'Calendar', icon: 'bx bx-calendar', isVisible: true },
|
2022-08-06 13:47:27 +02:00
|
|
|
{ id: 'lb_spacer1', builtinWidget: 'spacer', title: 'Spacer', icon: 'bx bx-move-vertical', isVisible: true, labels: [
|
|
|
|
{ type: "number", name: "baseSize", value: "40" },
|
|
|
|
{ type: "number", name: "growthFactor", value: "100" },
|
|
|
|
] },
|
|
|
|
{ id: 'lb_pluginbuttons', builtinWidget: 'pluginButtons', title: 'Plugin buttons', icon: 'bx bx-extension', isVisible: true },
|
2022-08-05 19:15:28 +02:00
|
|
|
{ id: 'lb_bookmarks', builtinWidget: 'bookmarks', title: 'Bookmarks', icon: 'bx bx-bookmark', isVisible: true },
|
2022-08-06 13:47:27 +02:00
|
|
|
{ id: 'lb_spacer2', builtinWidget: 'spacer', title: 'Spacer', icon: 'bx bx-move-vertical', isVisible: true, labels: [
|
|
|
|
{ type: "number", name: "baseSize", value: "40" },
|
|
|
|
{ type: "number", name: "growthFactor", value: "100" },
|
|
|
|
] },
|
2022-08-05 19:15:28 +02:00
|
|
|
{ id: 'lb_protectedsession', builtinWidget: 'protectedSession', title: 'Protected session', icon: 'bx bx bx-shield-quarter', isVisible: true },
|
|
|
|
{ id: 'lb_syncstatus', builtinWidget: 'syncStatus', title: 'Sync status', icon: 'bx bx-wifi', isVisible: true },
|
2022-08-02 17:01:09 +02:00
|
|
|
];
|
|
|
|
|
2021-09-16 22:20:59 +02:00
|
|
|
function createMissingSpecialNotes() {
|
|
|
|
getSinglesNoteRoot();
|
|
|
|
getSqlConsoleRoot();
|
2021-09-20 23:04:41 +02:00
|
|
|
getGlobalNoteMap();
|
2022-06-03 17:29:08 +02:00
|
|
|
getBulkActionNote();
|
2022-08-02 17:01:09 +02:00
|
|
|
getLaunchBarRoot();
|
|
|
|
getLaunchBarAvailableShortcutsRoot();
|
2022-08-04 23:00:32 +02:00
|
|
|
getLaunchBarVisibleShortcutsRoot()
|
|
|
|
|
|
|
|
for (const shortcut of shortcuts) {
|
|
|
|
let note = becca.getNote(shortcut.id);
|
2022-08-06 13:47:27 +02:00
|
|
|
|
|
|
|
if (note) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-08-04 23:00:32 +02:00
|
|
|
const parentNoteId = shortcut.isVisible ? getLaunchBarVisibleShortcutsRoot().noteId : getLaunchBarAvailableShortcutsRoot().noteId;
|
2022-08-06 13:47:27 +02:00
|
|
|
note = noteService.createNewNote({
|
|
|
|
noteId: shortcut.id,
|
|
|
|
title: shortcut.title,
|
2022-08-06 15:00:56 +02:00
|
|
|
type: 'shortcut',
|
2022-08-06 13:47:27 +02:00
|
|
|
content: '',
|
|
|
|
parentNoteId: parentNoteId
|
|
|
|
}).note;
|
|
|
|
|
|
|
|
note.addLabel('builtinShortcut');
|
|
|
|
note.addLabel('iconClass', shortcut.icon);
|
|
|
|
|
|
|
|
if (shortcut.command) {
|
|
|
|
note.addLabel('command', shortcut.command);
|
|
|
|
} else if (shortcut.builtinWidget) {
|
|
|
|
note.addLabel('builtinWidget', shortcut.builtinWidget);
|
|
|
|
} else if (shortcut.targetNoteId) {
|
|
|
|
note.addRelation('targetNote', shortcut.targetNoteId);
|
|
|
|
} else {
|
|
|
|
throw new Error(`No action defined for shortcut ${JSON.stringify(shortcut)}`);
|
|
|
|
}
|
2022-08-04 23:00:32 +02:00
|
|
|
|
2022-08-06 13:47:27 +02:00
|
|
|
for (const label of shortcut.labels || []) {
|
|
|
|
note.addLabel('label:' + label.name, "promoted," + label.type);
|
|
|
|
note.addLabel(label.name, label.value);
|
2022-08-04 23:00:32 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-02 17:01:09 +02:00
|
|
|
|
2021-12-20 17:30:47 +01:00
|
|
|
// share root is not automatically created since it's visible in the tree and many won't need it/use it
|
2021-12-04 13:45:15 +01:00
|
|
|
|
|
|
|
const hidden = getHiddenRoot();
|
|
|
|
|
|
|
|
if (!hidden.hasOwnedLabel('excludeFromNoteMap')) {
|
|
|
|
hidden.addLabel('excludeFromNoteMap', "", true);
|
|
|
|
}
|
2021-09-16 22:20:59 +02:00
|
|
|
}
|
|
|
|
|
2022-08-07 13:23:03 +02:00
|
|
|
function createShortcut(parentNoteId, type) {
|
2022-08-07 15:34:59 +02:00
|
|
|
let note;
|
|
|
|
|
2022-08-07 13:23:03 +02:00
|
|
|
if (type === 'note') {
|
2022-08-07 15:34:59 +02:00
|
|
|
note = noteService.createNewNote({
|
|
|
|
title: "Note shortcut",
|
|
|
|
type: 'shortcut',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: parentNoteId
|
|
|
|
}).note;
|
|
|
|
|
|
|
|
note.addLabel('relation:targetNote', 'promoted');
|
2022-08-08 23:13:31 +02:00
|
|
|
note.addLabel('docName', 'launchbar_note_shortcut');
|
|
|
|
} else if (type === 'script') {
|
|
|
|
note = noteService.createNewNote({
|
|
|
|
title: "Script shortcut",
|
|
|
|
type: 'shortcut',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: parentNoteId
|
|
|
|
}).note;
|
|
|
|
|
|
|
|
note.addLabel('relation:script', 'promoted');
|
|
|
|
note.addLabel('docName', 'launchbar_script_shortcut');
|
2022-08-07 15:34:59 +02:00
|
|
|
} else if (type === 'widget') {
|
|
|
|
note = noteService.createNewNote({
|
|
|
|
title: "Widget shortcut",
|
|
|
|
type: 'shortcut',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: parentNoteId
|
|
|
|
}).note;
|
|
|
|
|
|
|
|
note.addLabel('relation:widget', 'promoted');
|
2022-08-08 23:13:31 +02:00
|
|
|
note.addLabel('docName', 'launchbar_widget_shortcut');
|
2022-08-07 15:34:59 +02:00
|
|
|
} else if (type === 'spacer') {
|
|
|
|
note = noteService.createNewNote({
|
|
|
|
title: "Spacer",
|
|
|
|
type: 'shortcut',
|
|
|
|
content: '',
|
|
|
|
parentNoteId: parentNoteId
|
|
|
|
}).note;
|
2022-08-07 13:23:03 +02:00
|
|
|
|
2022-08-07 15:34:59 +02:00
|
|
|
note.addLabel('builtinWidget', 'spacer');
|
|
|
|
note.addLabel('iconClass', 'bx bx-move-vertical');
|
|
|
|
note.addLabel('label:baseSize', 'promoted,number');
|
|
|
|
note.addLabel('baseSize', '40');
|
|
|
|
note.addLabel('label:growthFactor', 'promoted,number');
|
|
|
|
note.addLabel('growthFactor', '0');
|
2022-08-08 23:13:31 +02:00
|
|
|
note.addLabel('docName', 'launchbar_spacer');
|
2022-08-07 15:34:59 +02:00
|
|
|
} else {
|
|
|
|
throw new Error(`Unrecognized shortcut type ${type}`);
|
2022-08-07 13:23:03 +02:00
|
|
|
}
|
2022-08-07 15:34:59 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
success: true,
|
|
|
|
note
|
|
|
|
};
|
2022-08-07 13:23:03 +02:00
|
|
|
}
|
|
|
|
|
2021-09-16 22:09:39 +02:00
|
|
|
module.exports = {
|
|
|
|
getInboxNote,
|
|
|
|
createSqlConsole,
|
|
|
|
saveSqlConsole,
|
|
|
|
createSearchNote,
|
2021-09-16 22:20:59 +02:00
|
|
|
saveSearchNote,
|
2021-12-20 17:30:47 +01:00
|
|
|
createMissingSpecialNotes,
|
2022-06-03 17:29:08 +02:00
|
|
|
getShareRoot,
|
|
|
|
getBulkActionNote,
|
2022-08-07 13:23:03 +02:00
|
|
|
createShortcut
|
2021-09-16 22:09:39 +02:00
|
|
|
};
|