"use strict"; const noteTree = (function() { const treeEl = $("#tree"); const parentListEl = $("#parent-list"); let startNoteTreeId = null; let treeLoadTime = null; let notesMap = {}; let parentToChildren = {}; let childToParents = {}; let parentChildToNoteTreeId = {}; let noteIdToTitle = {}; function getTreeLoadTime() { return treeLoadTime; } function getNoteTreeId(parentNoteId, childNoteId) { const key = parentNoteId + "-" + childNoteId; const noteTreeId = parentChildToNoteTreeId[key]; if (!noteTreeId) { console.trace(); throw new Error("Can't find note tree id for parent=" + parentNoteId + ", child=" + childNoteId); } return noteTreeId; } function getNoteTitle(notePath) { const noteId = treeUtils.getNoteIdFromNotePath(notePath); const title = noteIdToTitle[noteId]; if (!title) { throw new Error("Can't find title for noteId='" + noteId + "'"); } return title; } function prepareNoteTree(notes) { parentToChildren = {}; childToParents = {}; notesMap = {}; for (const note of notes) { notesMap[note.note_tree_id] = note; noteIdToTitle[note.note_id] = note.note_title; delete note.note_title; // this should not be used. Use noteIdToTitle instead const key = note.note_pid + "-" + note.note_id; parentChildToNoteTreeId[key] = note.note_tree_id; if (!parentToChildren[note.note_pid]) { parentToChildren[note.note_pid] = []; } parentToChildren[note.note_pid].push(note.note_id); if (!childToParents[note.note_id]) { childToParents[note.note_id] = []; } childToParents[note.note_id].push(note.note_pid); } return prepareNoteTreeInner('root'); } function prepareNoteTreeInner(parentNoteId) { const childNoteIds = parentToChildren[parentNoteId]; if (!childNoteIds) { console.log("No children for " + noteId + ". This shouldn't happen."); return; } const noteList = []; for (const childNoteId of childNoteIds) { const noteTreeId = getNoteTreeId(parentNoteId, childNoteId); const note = notesMap[noteTreeId]; const node = {}; node.note_id = note.note_id; node.note_pid = note.note_pid; node.note_tree_id = note.note_tree_id; node.is_protected = note.is_protected; node.title = noteIdToTitle[note.note_id]; node.extraClasses = ""; if (node.is_protected) { node.extraClasses += ",protected"; } if (childToParents[childNoteId].length > 1) { node.extraClasses += ",multiple-parents"; } if (node.extraClasses.startsWith(",")) { node.extraClasses = node.extraClasses.substr(1); } node.refKey = note.note_id; node.expanded = note.is_expanded; if (parentToChildren[note.note_id] && parentToChildren[note.note_id].length > 0) { node.folder = true; if (node.expanded) { node.children = prepareNoteTreeInner(note.note_id); } else { node.lazy = true; } } noteList.push(node); } return noteList; } async function activateNode(notePath) { const path = notePath.split("/").reverse(); const effectivePath = []; let childNoteId = null; let i = 0; while (true) { const parentNoteId = i < path.length ? path[i] : null; i++; if (childNoteId !== null) { const parents = childToParents[childNoteId]; if (parentNoteId === null || !parents.includes(parentNoteId)) { console.log("Did not find parent " + parentNoteId + " for child " + childNoteId); if (parents.length > 0) { if (parents[0] === 'root') { console.log("Reached root."); break; } childNoteId = parents[0]; effectivePath.push(childNoteId); console.log("Choosing parent " + childNoteId + " instead."); continue; } else { console.log("No parents, can't activate node."); return; } } } effectivePath.push(parentNoteId); childNoteId = parentNoteId; } const noteId = treeUtils.getNoteIdFromNotePath(notePath); const runPath = effectivePath.reverse(); let parentNoteId = 'root'; for (const childNoteId of runPath) { const node = getNodes(childNoteId).find(node => node.data.note_pid === parentNoteId); if (childNoteId === noteId) { await node.setActive(); } else { await node.setExpanded(); } parentNoteId = childNoteId; } } function getNodes(noteId) { return getTree().getNodesByRef(noteId); } function showParentList(noteId, node) { const parents = childToParents[noteId]; if (!parents) { throw new Error("Can't find parents for noteId=" + noteId); } if (parents.length <= 1) { parentListEl.hide(); } else { parentListEl.show(); parentListEl.empty(); const list = $("