mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 21:55:26 +08:00
56 lines
No EOL
1.3 KiB
JavaScript
56 lines
No EOL
1.3 KiB
JavaScript
import optionsService from './options.js';
|
|
import server from "./server.js";
|
|
import tree from "./tree.js";
|
|
import noteDetailService from "./note_detail.js";
|
|
|
|
let hoistedNoteId;
|
|
|
|
optionsService.waitForOptions().then(options => {
|
|
hoistedNoteId = options.get('hoistedNoteId');
|
|
});
|
|
|
|
async function getHoistedNoteId() {
|
|
await optionsService.waitForOptions();
|
|
|
|
return hoistedNoteId;
|
|
}
|
|
|
|
async function setHoistedNoteId(noteId) {
|
|
if (noteId !== 'root') {
|
|
await noteDetailService.filterTabs(noteId);
|
|
}
|
|
|
|
hoistedNoteId = noteId;
|
|
|
|
await server.put('options/hoistedNoteId/' + noteId);
|
|
|
|
await tree.reload();
|
|
|
|
const activeTabContext = noteDetailService.getActiveTabContext();
|
|
|
|
if (activeTabContext) {
|
|
await tree.activateNote(activeTabContext.notePath);
|
|
}
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
export default {
|
|
getHoistedNoteId,
|
|
setHoistedNoteId,
|
|
unhoist,
|
|
isTopLevelNode,
|
|
isRootNode
|
|
} |