mirror of
https://github.com/zadam/trilium.git
synced 2025-01-14 19:19:28 +08:00
528 lines
No EOL
16 KiB
JavaScript
528 lines
No EOL
16 KiB
JavaScript
"use strict";
|
|
|
|
const noteTree = (function() {
|
|
const noteDetailEl = $('#note-detail');
|
|
const treeEl = $("#tree");
|
|
let startNoteTreeId = null;
|
|
let treeLoadTime = null;
|
|
let clipboardNoteTreeId = null;
|
|
let notesMap = {};
|
|
let parentToChildren = {};
|
|
let childToParents = {};
|
|
let counter = 1;
|
|
let noteTreeIdToKey = {};
|
|
let parentChildToNoteTreeId = {};
|
|
let noteIdToTitle = {};
|
|
|
|
function getNoteTreeIdFromKey(key) {
|
|
const node = treeUtils.getNodeByKey(key);
|
|
|
|
return node.note_tree_id;
|
|
}
|
|
|
|
function getKeyFromNoteTreeId(noteTreeId) {
|
|
return noteTreeIdToKey[noteTreeId];
|
|
}
|
|
|
|
function getTreeLoadTime() {
|
|
return treeLoadTime;
|
|
}
|
|
|
|
function getClipboardNoteTreeId() {
|
|
return clipboardNoteTreeId;
|
|
}
|
|
|
|
function setClipboardNoteTreeId(cbNoteId) {
|
|
clipboardNoteTreeId = cbNoteId;
|
|
}
|
|
|
|
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;
|
|
|
|
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];
|
|
|
|
note.title = note.note_title;
|
|
|
|
if (note.is_protected) {
|
|
note.extraClasses = "protected";
|
|
}
|
|
|
|
note.key = counter++ + ""; // key needs to be string
|
|
note.expanded = note.is_expanded;
|
|
|
|
noteTreeIdToKey[noteTreeId] = note.key;
|
|
|
|
if (parentToChildren[note.note_id] && parentToChildren[note.note_id].length > 0) {
|
|
note.folder = true;
|
|
|
|
if (note.expanded) {
|
|
note.children = prepareNoteTreeInner(note.note_id);
|
|
}
|
|
else {
|
|
note.lazy = true;
|
|
}
|
|
}
|
|
|
|
noteList.push(note);
|
|
}
|
|
|
|
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 runPath = effectivePath.reverse();
|
|
let parentNoteId = 'root';
|
|
|
|
for (let i = 0; i < runPath.length; i++) {
|
|
const childNoteId = runPath[i];
|
|
const noteTreeId = getNoteTreeId(parentNoteId, childNoteId);
|
|
|
|
const node = treeUtils.getNodeByNoteTreeId(noteTreeId);
|
|
|
|
if (i < runPath.length - 1) {
|
|
await node.setExpanded();
|
|
}
|
|
else {
|
|
await node.setActive();
|
|
}
|
|
|
|
parentNoteId = childNoteId;
|
|
}
|
|
}
|
|
|
|
function setExpandedToServer(noteTreeId, isExpanded) {
|
|
const expandedNum = isExpanded ? 1 : 0;
|
|
|
|
$.ajax({
|
|
url: baseApiUrl + 'notes/' + noteTreeId + '/expanded/' + expandedNum,
|
|
type: 'PUT',
|
|
contentType: "application/json",
|
|
success: result => {}
|
|
});
|
|
}
|
|
|
|
function setCurrentNotePathToHash(node) {
|
|
const currentNotePath = treeUtils.getNotePath(node);
|
|
|
|
document.location.hash = currentNotePath;
|
|
|
|
recentNotes.addRecentNote(currentNotePath);
|
|
}
|
|
|
|
function initFancyTree(noteTree) {
|
|
const keybindings = {
|
|
"insert": node => {
|
|
const parentNoteTreeId = treeUtils.getParentNoteTreeId(node);
|
|
const isProtected = treeUtils.getParentProtectedStatus(node);
|
|
|
|
noteEditor.createNote(node, parentNoteTreeId, 'after', isProtected);
|
|
},
|
|
"ctrl+insert": node => {
|
|
noteEditor.createNote(node, node.note_id, 'into', node.data.is_protected);
|
|
},
|
|
"del": node => {
|
|
treeChanges.deleteNode(node);
|
|
},
|
|
"shift+up": node => {
|
|
const beforeNode = node.getPrevSibling();
|
|
|
|
if (beforeNode !== null) {
|
|
treeChanges.moveBeforeNode(node, beforeNode);
|
|
}
|
|
},
|
|
"shift+down": node => {
|
|
let afterNode = node.getNextSibling();
|
|
if (afterNode !== null) {
|
|
treeChanges.moveAfterNode(node, afterNode);
|
|
}
|
|
},
|
|
"shift+left": node => {
|
|
treeChanges.moveNodeUp(node);
|
|
},
|
|
"shift+right": node => {
|
|
let toNode = node.getPrevSibling();
|
|
|
|
if (toNode !== null) {
|
|
treeChanges.moveToNode(node, toNode);
|
|
}
|
|
},
|
|
"return": node => {
|
|
// doesn't work :-/
|
|
noteDetailEl.summernote('focus');
|
|
}
|
|
};
|
|
|
|
treeEl.fancytree({
|
|
autoScroll: true,
|
|
extensions: ["hotkeys", "filter", "dnd"],
|
|
source: noteTree,
|
|
scrollParent: $("#tree"),
|
|
activate: (event, data) => {
|
|
const node = data.node.data;
|
|
|
|
setCurrentNotePathToHash(data.node);
|
|
|
|
noteEditor.switchToNote(node.note_id);
|
|
},
|
|
expand: (event, data) => {
|
|
setExpandedToServer(getNoteTreeIdFromKey(data.node.key), true);
|
|
},
|
|
collapse: (event, data) => {
|
|
setExpandedToServer(getNoteTreeIdFromKey(data.node.key), false);
|
|
},
|
|
init: (event, data) => {
|
|
if (startNoteTreeId) {
|
|
activateNode(startNoteTreeId);
|
|
}
|
|
else {
|
|
showAppIfHidden();
|
|
}
|
|
},
|
|
hotkeys: {
|
|
keydown: keybindings
|
|
},
|
|
filter: {
|
|
autoApply: true, // Re-apply last filter if lazy data is loaded
|
|
autoExpand: true, // Expand all branches that contain matches while filtered
|
|
counter: false, // Show a badge with number of matching child nodes near parent icons
|
|
fuzzy: false, // Match single characters in order, e.g. 'fb' will match 'FooBar'
|
|
hideExpandedCounter: true, // Hide counter badge if parent is expanded
|
|
hideExpanders: false, // Hide expanders if all child nodes are hidden by filter
|
|
highlight: true, // Highlight matches by wrapping inside <mark> tags
|
|
leavesOnly: false, // Match end nodes only
|
|
nodata: true, // Display a 'no data' status node if result is empty
|
|
mode: "hide" // Grayout unmatched nodes (pass "hide" to remove unmatched node instead)
|
|
},
|
|
dnd: dragAndDropSetup,
|
|
keydown: (event, data) => {
|
|
const node = data.node;
|
|
// Eat keyboard events, when a menu is open
|
|
if ($(".contextMenu:visible").length > 0)
|
|
return false;
|
|
|
|
switch (event.which) {
|
|
// Open context menu on [Space] key (simulate right click)
|
|
case 32: // [Space]
|
|
$(node.span).trigger("mousedown", {
|
|
preventDefault: true,
|
|
button: 2
|
|
})
|
|
.trigger("mouseup", {
|
|
preventDefault: true,
|
|
pageX: node.span.offsetLeft,
|
|
pageY: node.span.offsetTop,
|
|
button: 2
|
|
});
|
|
return false;
|
|
|
|
// Handle Ctrl-C, -X and -V
|
|
// case 67:
|
|
// if (event.ctrlKey) { // Ctrl-C
|
|
// copyPaste("copy", node);
|
|
// return false;
|
|
// }
|
|
// break;
|
|
case 86:
|
|
console.log("CTRL-V");
|
|
|
|
if (event.ctrlKey) { // Ctrl-V
|
|
contextMenu.pasteAfter(node);
|
|
return false;
|
|
}
|
|
break;
|
|
case 88:
|
|
console.log("CTRL-X");
|
|
|
|
if (event.ctrlKey) { // Ctrl-X
|
|
contextMenu.cut(node);
|
|
return false;
|
|
}
|
|
break;
|
|
}
|
|
},
|
|
lazyLoad: function(event, data){
|
|
const node = data.node.data;
|
|
|
|
data.result = prepareNoteTreeInner(node.note_id);
|
|
}
|
|
});
|
|
|
|
treeEl.contextmenu(contextMenu.contextMenuSettings);
|
|
}
|
|
|
|
async function reload() {
|
|
const notes = await loadTree();
|
|
|
|
// this will also reload the note content
|
|
await treeEl.fancytree('getTree').reload(notes);
|
|
}
|
|
|
|
function loadTree() {
|
|
return $.get(baseApiUrl + 'tree').then(resp => {
|
|
startNoteTreeId = resp.start_note_tree_id;
|
|
treeLoadTime = resp.tree_load_time;
|
|
|
|
if (document.location.hash) {
|
|
startNoteTreeId = document.location.hash.substr(1); // strip initial #
|
|
}
|
|
|
|
return prepareNoteTree(resp.notes, resp.notes_parent);
|
|
});
|
|
}
|
|
|
|
$(() => loadTree().then(noteTree => initFancyTree(noteTree)));
|
|
|
|
function collapseTree() {
|
|
treeEl.fancytree("getRootNode").visit(node => {
|
|
node.setExpanded(false);
|
|
});
|
|
}
|
|
|
|
$(document).bind('keydown', 'alt+c', collapseTree);
|
|
|
|
function scrollToCurrentNote() {
|
|
const node = treeUtils.getNodeByNoteTreeId(noteEditor.getCurrentNoteId());
|
|
|
|
if (node) {
|
|
node.makeVisible({scrollIntoView: true});
|
|
|
|
node.setFocus();
|
|
}
|
|
}
|
|
|
|
function showSearch() {
|
|
$("#search-box").show();
|
|
|
|
$("input[name=search]").focus();
|
|
}
|
|
|
|
function toggleSearch() {
|
|
if ($("#search-box:hidden").length) {
|
|
showSearch();
|
|
}
|
|
else {
|
|
resetSearch();
|
|
|
|
$("#search-box").hide();
|
|
}
|
|
}
|
|
|
|
function resetSearch() {
|
|
$("input[name=search]").val("");
|
|
|
|
const tree = treeEl.fancytree("getTree");
|
|
tree.clearFilter();
|
|
}
|
|
|
|
function getByNoteTreeId(noteTreeId) {
|
|
return notesMap[noteTreeId];
|
|
}
|
|
|
|
// note that if you want to access data like note_id or is_protected, you need to go into "data" property
|
|
function getCurrentNode() {
|
|
return treeEl.fancytree("getActiveNode");
|
|
}
|
|
|
|
function getCurrentNoteTreeId() {
|
|
const node = getCurrentNode();
|
|
return node.data.note_tree_id;
|
|
}
|
|
|
|
function getCurrentNotePath() {
|
|
const node = getCurrentNode();
|
|
|
|
return treeUtils.getNotePath(node);
|
|
}
|
|
|
|
function setCurrentNoteTreeBasedOnProtectedStatus() {
|
|
const node = getCurrentNode();
|
|
|
|
node.toggleClass("protected", !!node.data.is_protected);
|
|
}
|
|
|
|
function getAutocompleteItems(parentNoteId, notePath, titlePath) {
|
|
if (!parentNoteId) {
|
|
parentNoteId = 'root';
|
|
}
|
|
|
|
if (!parentToChildren[parentNoteId]) {
|
|
return [];
|
|
}
|
|
|
|
if (!notePath) {
|
|
notePath = '';
|
|
}
|
|
|
|
if (!titlePath) {
|
|
titlePath = '';
|
|
}
|
|
|
|
const autocompleteItems = [];
|
|
|
|
for (const childNoteId of parentToChildren[parentNoteId]) {
|
|
const childNotePath = (notePath ? (notePath + '/') : '') + childNoteId;
|
|
const childTitlePath = (titlePath ? (titlePath + ' / ') : '') + getNoteTitle(childNoteId);
|
|
|
|
autocompleteItems.push({
|
|
value: childTitlePath + ' (' + childNotePath + ')',
|
|
label: childTitlePath
|
|
});
|
|
|
|
const childItems = getAutocompleteItems(childNoteId, childNotePath, childTitlePath);
|
|
|
|
for (const childItem of childItems) {
|
|
autocompleteItems.push(childItem);
|
|
}
|
|
}
|
|
|
|
return autocompleteItems;
|
|
}
|
|
|
|
$("button#reset-search-button").click(resetSearch);
|
|
|
|
$("input[name=search]").keyup(e => {
|
|
const searchString = $("input[name=search]").val();
|
|
|
|
if (e && e.which === $.ui.keyCode.ESCAPE || $.trim(searchString) === "") {
|
|
$("button#reset-search-button").click();
|
|
return;
|
|
}
|
|
|
|
if (e && e.which === $.ui.keyCode.ENTER) {
|
|
$.get(baseApiUrl + 'notes?search=' + searchString).then(resp => {
|
|
console.log("search: ", resp);
|
|
|
|
// Pass a string to perform case insensitive matching
|
|
const tree = treeEl.fancytree("getTree");
|
|
tree.filterBranches(node => {
|
|
return resp.includes(node.data.note_id);
|
|
});
|
|
});
|
|
}
|
|
}).focus();
|
|
|
|
$(document).bind('keydown', 'alt+s', showSearch);
|
|
|
|
return {
|
|
getTreeLoadTime,
|
|
getClipboardNoteTreeId,
|
|
setClipboardNoteTreeId,
|
|
reload,
|
|
collapseTree,
|
|
scrollToCurrentNote,
|
|
toggleSearch,
|
|
getByNoteTreeId,
|
|
getKeyFromNoteTreeId,
|
|
getNoteTreeIdFromKey,
|
|
setCurrentNoteTreeBasedOnProtectedStatus,
|
|
getCurrentNode,
|
|
getCurrentNoteTreeId,
|
|
activateNode,
|
|
getCurrentNotePath,
|
|
getNoteTitle,
|
|
setCurrentNotePathToHash,
|
|
getAutocompleteItems
|
|
};
|
|
})(); |