trilium/src/public/javascripts/services/hoisted_note.js

54 lines
1.2 KiB
JavaScript
Raw Normal View History

import optionsService from './options.js';
2018-12-12 04:53:56 +08:00
import server from "./server.js";
2020-01-24 22:44:24 +08:00
import appContext from "./app_context.js";
2018-12-12 04:53:56 +08:00
let hoistedNoteId = 'root';
2018-12-12 04:53:56 +08:00
optionsService.waitForOptions().then(options => {
hoistedNoteId = options.get('hoistedNoteId');
2018-12-12 04:53:56 +08:00
});
function getHoistedNoteNoPromise() {
return hoistedNoteId;
}
2018-12-12 04:53:56 +08:00
async function getHoistedNoteId() {
await optionsService.waitForOptions();
2018-12-12 04:53:56 +08:00
return hoistedNoteId;
}
async function setHoistedNoteId(noteId) {
2019-05-12 01:27:33 +08:00
if (noteId !== 'root') {
await appContext.filterTabs(noteId);
2019-05-12 01:27:33 +08:00
}
hoistedNoteId = noteId;
2018-12-12 04:53:56 +08:00
await server.put('options/hoistedNoteId/' + noteId);
2018-12-13 03:39:56 +08:00
2020-01-24 22:44:24 +08:00
appContext.trigger('hoistedNoteChanged');
2018-12-12 04:53:56 +08:00
}
2018-12-16 03:29:08 +08:00
async function unhoist() {
await setHoistedNoteId('root');
}
async function isTopLevelNode(node) {
return await isRootNode(node.getParent());
}
async function isRootNode(node) {
// even though check for 'root' should not be necessary, we keep it just in case
return node.data.noteId === "root"
|| node.data.noteId === await getHoistedNoteId();
}
2018-12-12 04:53:56 +08:00
export default {
getHoistedNoteId,
getHoistedNoteNoPromise,
2018-12-16 03:29:08 +08:00
setHoistedNoteId,
unhoist,
isTopLevelNode,
isRootNode
2018-12-12 04:53:56 +08:00
}