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

907 lines
25 KiB
JavaScript
Raw Normal View History

import contextMenuService from './context_menu.js';
import dragAndDropSetup from './drag_and_drop.js';
import linkService from './link.js';
import messagingService from './messaging.js';
import noteDetailService from './note_detail.js';
import protectedSessionHolder from './protected_session_holder.js';
import treeChangesService from './tree_changes.js';
import treeUtils from './tree_utils.js';
import utils from './utils.js';
import server from './server.js';
import recentNotesDialog from '../dialogs/recent_notes.js';
import editTreePrefixDialog from '../dialogs/edit_tree_prefix.js';
import treeCache from './tree_cache.js';
2018-03-26 09:29:35 +08:00
import infoService from "./info.js";
const $tree = $("#tree");
const $parentList = $("#parent-list");
const $parentListList = $("#parent-list-inner");
const $createTopLevelNoteButton = $("#create-top-level-note-button");
const $collapseTreeButton = $("#collapse-tree-button");
const $scrollToCurrentNoteButton = $("#scroll-to-current-note-button");
let startNotePath = null;
2018-03-13 08:00:19 +08:00
async function getNoteTitle(noteId, parentNoteId = null) {
utils.assertArguments(noteId);
let {title} = await treeCache.getNote(noteId);
if (parentNoteId !== null) {
const branch = await treeCache.getBranchByChildParent(noteId, parentNoteId);
2017-11-20 01:06:48 +08:00
if (branch && branch.prefix) {
title = branch.prefix + ' - ' + title;
}
2017-11-24 09:12:39 +08:00
}
return title;
}
2017-11-24 09:12:39 +08:00
// note that if you want to access data like noteId or isProtected, you need to go into "data" property
function getCurrentNode() {
return $tree.fancytree("getActiveNode");
}
2017-11-24 09:12:39 +08:00
function getCurrentNotePath() {
const node = getCurrentNode();
return treeUtils.getNotePath(node);
}
2017-11-28 23:17:30 +08:00
async function getNodesByBranchId(branchId) {
utils.assertArguments(branchId);
2017-11-28 23:17:30 +08:00
const branch = await treeCache.getBranch(branchId);
return getNodesByNoteId(branch.noteId).filter(node => node.data.branchId === branchId);
}
2017-11-24 09:12:39 +08:00
function getNodesByNoteId(noteId) {
utils.assertArguments(noteId);
const list = getTree().getNodesByRef(noteId);
return list ? list : []; // if no nodes with this refKey are found, fancy tree returns null
}
2017-11-28 23:17:30 +08:00
async function setPrefix(branchId, prefix) {
utils.assertArguments(branchId);
2017-11-28 23:17:30 +08:00
const branch = await treeCache.getBranch(branchId);
2018-03-13 11:14:09 +08:00
branch.prefix = prefix;
for (const node of await getNodesByBranchId(branchId)) {
await setNodeTitleWithPrefix(node);
}
}
2018-03-13 11:14:09 +08:00
async function setNodeTitleWithPrefix(node) {
const noteTitle = await getNoteTitle(node.data.noteId);
const branch = await treeCache.getBranch(node.data.branchId);
2018-03-13 11:14:09 +08:00
const prefix = branch.prefix;
2017-11-28 23:17:30 +08:00
const title = (prefix ? (prefix + " - ") : "") + noteTitle;
node.setTitle(utils.escapeHtml(title));
}
2018-03-25 22:06:14 +08:00
function removeParentChildRelation(parentNoteId, childNoteId) {
utils.assertArguments(parentNoteId, childNoteId);
2018-03-25 22:06:14 +08:00
treeCache.parents[childNoteId] = treeCache.parents[childNoteId].filter(p => p.noteId !== parentNoteId);
treeCache.children[parentNoteId] = treeCache.children[parentNoteId].filter(ch => ch.noteId !== childNoteId);
2018-03-25 22:06:14 +08:00
delete treeCache.childParentToBranch[childNoteId + '-' + parentNoteId];
}
async function setParentChildRelation(branchId, parentNoteId, childNoteId) {
treeCache.parents[childNoteId] = treeCache.parents[childNoteId] || [];
treeCache.parents[childNoteId].push(await treeCache.getNote(parentNoteId));
treeCache.children[parentNoteId] = treeCache.children[parentNoteId] || [];
treeCache.children[parentNoteId].push(await treeCache.getNote(childNoteId));
treeCache.childParentToBranch[childNoteId + '-' + parentNoteId] = await treeCache.getBranch(branchId);
}
async function prepareBranch(noteRows, branchRows) {
utils.assertArguments(noteRows);
2017-11-18 10:31:54 +08:00
treeCache.load(noteRows, branchRows);
return await prepareBranchInner(await treeCache.getNote('root'));
}
2017-11-24 09:12:39 +08:00
async function getExtraClasses(note) {
utils.assertArguments(note);
2017-11-24 09:12:39 +08:00
const extraClasses = [];
2017-11-24 09:12:39 +08:00
if (note.isProtected) {
extraClasses.push("protected");
}
if ((await note.getParentNotes()).length > 1) {
extraClasses.push("multiple-parents");
2017-11-24 09:12:39 +08:00
}
extraClasses.push(note.type);
return extraClasses.join(" ");
}
async function prepareBranchInner(parentNote) {
utils.assertArguments(parentNote);
2017-11-20 05:43:49 +08:00
const childBranches = await parentNote.getChildBranches();
2017-11-18 10:31:54 +08:00
if (!childBranches) {
messagingService.logError(`No children for ${parentNote}. This shouldn't happen.`);
return;
}
const noteList = [];
for (const branch of childBranches) {
const note = await branch.getNote();
const title = (branch.prefix ? (branch.prefix + " - ") : "") + note.title;
const node = {
noteId: note.noteId,
parentNoteId: branch.parentNoteId,
branchId: branch.branchId,
isProtected: note.isProtected,
title: utils.escapeHtml(title),
extraClasses: await getExtraClasses(note),
refKey: note.noteId,
expanded: note.type !== 'search' && branch.isExpanded
};
2017-11-24 09:12:39 +08:00
const hasChildren = (await note.getChildNotes()).length > 0;
2018-03-13 11:14:09 +08:00
if (hasChildren || note.type === 'search') {
node.folder = true;
2017-11-18 10:31:54 +08:00
if (node.expanded && note.type !== 'search') {
node.children = await prepareBranchInner(note);
}
else {
node.lazy = true;
2017-11-05 07:28:49 +08:00
}
}
2017-11-18 10:31:54 +08:00
noteList.push(node);
2017-11-05 07:28:49 +08:00
}
return noteList;
}
async function expandToNote(notePath, expandOpts) {
utils.assertArguments(notePath);
const runPath = await getRunPath(notePath);
2017-12-04 06:46:56 +08:00
const noteId = treeUtils.getNoteIdFromNotePath(notePath);
2017-12-04 06:46:56 +08:00
let parentNoteId = 'root';
2017-12-04 06:46:56 +08:00
for (const childNoteId of runPath) {
const node = getNodesByNoteId(childNoteId).find(node => node.data.parentNoteId === parentNoteId);
2017-12-04 06:46:56 +08:00
if (childNoteId === noteId) {
return node;
2017-12-04 06:46:56 +08:00
}
else {
await node.setExpanded(true, expandOpts);
}
parentNoteId = childNoteId;
}
}
async function activateNode(notePath) {
utils.assertArguments(notePath);
const node = await expandToNote(notePath);
await node.setActive();
clearSelectedNodes();
}
2017-12-04 06:46:56 +08:00
/**
* Accepts notePath and tries to resolve it. Part of the path might not be valid because of note moving (which causes
* path change) or other corruption, in that case this will try to get some other valid path to the correct note.
*/
async function getRunPath(notePath) {
utils.assertArguments(notePath);
const path = notePath.split("/").reverse();
path.push('root');
2017-11-19 21:47:22 +08:00
const effectivePath = [];
let childNoteId = null;
let i = 0;
while (true) {
if (i >= path.length) {
break;
}
const parentNoteId = path[i++];
if (childNoteId !== null) {
const child = await treeCache.getNote(childNoteId);
const parents = await child.getParentNotes();
if (!parents) {
messagingService.logError("No parents found for " + childNoteId);
return;
}
2017-11-27 10:00:42 +08:00
if (!parents.some(p => p.noteId === parentNoteId)) {
console.log(utils.now(), "Did not find parent " + parentNoteId + " for child " + childNoteId);
if (parents.length > 0) {
console.log(utils.now(), "Available parents:", parents);
const someNotePath = await getSomeNotePath(parents[0]);
if (someNotePath) { // in case it's root the path may be empty
const pathToRoot = someNotePath.split("/").reverse();
for (const noteId of pathToRoot) {
effectivePath.push(noteId);
}
}
2017-11-19 21:47:22 +08:00
break;
}
else {
messagingService.logError("No parents, can't activate node.");
return;
}
2017-11-19 21:47:22 +08:00
}
}
2017-12-04 06:46:56 +08:00
if (parentNoteId === 'root') {
break;
}
else {
effectivePath.push(parentNoteId);
childNoteId = parentNoteId;
}
2017-11-19 21:47:22 +08:00
}
return effectivePath.reverse();
}
async function showParentList(noteId, node) {
utils.assertArguments(noteId, node);
const note = await treeCache.getNote(noteId);
const parents = await note.getParentNotes();
if (!parents.length) {
2018-03-26 09:29:35 +08:00
infoService.throwError("Can't find parents for noteId=" + noteId);
}
if (parents.length <= 1) {
$parentList.hide();
}
else {
$parentList.show();
$parentListList.empty();
for (const parentNote of parents) {
const parentNotePath = await getSomeNotePath(parentNote);
// this is to avoid having root notes leading '/'
const notePath = parentNotePath ? (parentNotePath + '/' + noteId) : noteId;
const title = await getNotePathTitle(notePath);
let item;
if (node.getParent().data.noteId === parentNote.noteId) {
item = $("<span/>").attr("title", "Current note").append(title);
}
else {
item = linkService.createNoteLink(notePath, title);
}
$parentListList.append($("<li/>").append(item));
}
}
}
async function getNotePathTitle(notePath) {
utils.assertArguments(notePath);
const titlePath = [];
let parentNoteId = 'root';
for (const noteId of notePath.split('/')) {
titlePath.push(await getNoteTitle(noteId, parentNoteId));
parentNoteId = noteId;
}
return titlePath.join(' / ');
}
async function getSomeNotePath(note) {
utils.assertArguments(note);
const path = [];
let cur = note;
while (cur.noteId !== 'root') {
path.push(cur.noteId);
const parents = await cur.getParentNotes();
if (!parents.length) {
2018-03-26 09:29:35 +08:00
infoService.throwError("Can't find parents for " + cur);
}
cur = parents[0];
}
return path.reverse().join('/');
}
2017-11-05 07:28:49 +08:00
async function setExpandedToServer(branchId, isExpanded) {
utils.assertArguments(branchId);
2017-11-05 07:28:49 +08:00
const expandedNum = isExpanded ? 1 : 0;
await server.put('tree/' + branchId + '/expanded/' + expandedNum);
}
function setCurrentNotePathToHash(node) {
utils.assertArguments(node);
const currentNotePath = treeUtils.getNotePath(node);
const currentBranchId = node.data.branchId;
document.location.hash = currentNotePath;
recentNotesDialog.addRecentNote(currentBranchId, currentNotePath);
}
function getSelectedNodes(stopOnParents = false) {
return getTree().getSelectedNodes(stopOnParents);
}
function clearSelectedNodes() {
for (const selectedNode of getSelectedNodes()) {
selectedNode.setSelected(false);
}
const currentNode = getCurrentNode();
if (currentNode) {
currentNode.setSelected(true);
}
}
2017-11-05 07:28:49 +08:00
async function treeInitialized() {
const noteId = treeUtils.getNoteIdFromNotePath(startNotePath);
2018-03-26 10:37:02 +08:00
if (!await treeCache.getNote(noteId)) {
// note doesn't exist so don't try to activate it
startNotePath = null;
}
if (startNotePath) {
activateNode(startNotePath);
// looks like this this doesn't work when triggered immediatelly after activating node
// so waiting a second helps
setTimeout(scrollToCurrentNote, 1000);
}
}
function initFancyTree(branch) {
utils.assertArguments(branch);
const keybindings = {
"del": node => {
treeChangesService.deleteNodes(getSelectedNodes(true));
},
"ctrl+up": node => {
const beforeNode = node.getPrevSibling();
if (beforeNode !== null) {
treeChangesService.moveBeforeNode([node], beforeNode);
}
2017-11-05 07:28:49 +08:00
return false;
},
"ctrl+down": node => {
let afterNode = node.getNextSibling();
if (afterNode !== null) {
treeChangesService.moveAfterNode([node], afterNode);
}
return false;
},
"ctrl+left": node => {
treeChangesService.moveNodeUpInHierarchy(node);
return false;
},
"ctrl+right": node => {
let toNode = node.getPrevSibling();
if (toNode !== null) {
treeChangesService.moveToNode([node], toNode);
}
return false;
},
"shift+up": node => {
node.navigate($.ui.keyCode.UP, true).then(() => {
const currentNode = getCurrentNode();
if (currentNode.isSelected()) {
node.setSelected(false);
}
currentNode.setSelected(true);
});
return false;
},
"shift+down": node => {
node.navigate($.ui.keyCode.DOWN, true).then(() => {
const currentNode = getCurrentNode();
if (currentNode.isSelected()) {
node.setSelected(false);
}
currentNode.setSelected(true);
});
2017-12-28 10:12:54 +08:00
return false;
},
"f2": node => {
editTreePrefixDialog.showDialog(node);
},
"alt+-": node => {
collapseTree(node);
},
"alt+s": node => {
sortAlphabetically(node.data.noteId);
return false;
},
"ctrl+a": node => {
for (const child of node.getParent().getChildren()) {
child.setSelected(true);
}
2017-12-28 10:12:54 +08:00
return false;
},
"ctrl+c": () => {
contextMenuService.copy(getSelectedNodes());
return false;
},
"ctrl+x": () => {
contextMenuService.cut(getSelectedNodes());
return false;
},
"ctrl+v": node => {
contextMenuService.pasteInto(node);
return false;
},
"return": node => {
noteDetailService.focus();
return false;
},
"backspace": node => {
if (!utils.isTopLevelNode(node)) {
2018-03-26 08:18:08 +08:00
node.getParent().setActive().then(clearSelectedNodes);
}
},
// code below shouldn't be necessary normally, however there's some problem with interaction with context menu plugin
// after opening context menu, standard shortcuts don't work, but they are detected here
// so we essentially takeover the standard handling with our implementation.
"left": node => {
2018-03-26 08:18:08 +08:00
node.navigate($.ui.keyCode.LEFT, true).then(clearSelectedNodes);
return false;
},
"right": node => {
2018-03-26 08:18:08 +08:00
node.navigate($.ui.keyCode.RIGHT, true).then(clearSelectedNodes);
return false;
},
"up": node => {
2018-03-26 08:18:08 +08:00
node.navigate($.ui.keyCode.UP, true).then(clearSelectedNodes);
return false;
},
"down": node => {
2018-03-26 08:18:08 +08:00
node.navigate($.ui.keyCode.DOWN, true).then(clearSelectedNodes);
return false;
}
};
$tree.fancytree({
autoScroll: true,
keyboard: false, // we takover keyboard handling in the hotkeys plugin
extensions: ["hotkeys", "filter", "dnd", "clones"],
source: branch,
scrollParent: $("#tree"),
click: (event, data) => {
const targetType = data.targetType;
const node = data.node;
if (targetType === 'title' || targetType === 'icon') {
if (!event.ctrlKey) {
node.setActive();
node.setSelected(true);
clearSelectedNodes();
}
else {
node.setSelected(!node.isSelected());
2018-01-04 11:49:53 +08:00
}
return false;
}
},
activate: (event, data) => {
const node = data.node.data;
setCurrentNotePathToHash(data.node);
noteDetailService.switchToNote(node.noteId);
showParentList(node.noteId, data.node);
},
expand: (event, data) => {
setExpandedToServer(data.node.data.branchId, true);
},
collapse: (event, data) => {
setExpandedToServer(data.node.data.branchId, false);
},
init: (event, data) => {
treeInitialized();
},
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,
lazyLoad: function(event, data) {
const noteId = data.node.data.noteId;
2018-03-26 10:37:02 +08:00
data.result = treeCache.getNote(noteId).then(note => {
if (note.type === 'search') {
return loadSearchNote(noteId);
}
else {
return prepareBranchInner(note);
}
});
},
clones: {
highlightActiveClones: true
}
});
2017-11-05 07:28:49 +08:00
$tree.contextmenu(contextMenuService.contextMenuSettings);
}
async function loadSearchNote(searchNoteId) {
const note = await server.get('notes/' + searchNoteId);
const json = JSON.parse(note.detail.content);
const noteIds = await server.get('search/' + encodeURIComponent(json.searchString));
2017-11-05 07:28:49 +08:00
for (const noteId of noteIds) {
const branchId = "virt" + utils.randomString(10);
treeCache.addBranch({
branchId: branchId,
noteId: noteId,
parentNoteId: searchNoteId,
prefix: '',
virtual: true
});
2017-11-05 07:28:49 +08:00
}
return await prepareBranchInner(await treeCache.getNote(searchNoteId));
}
2018-03-13 11:14:09 +08:00
function getTree() {
return $tree.fancytree('getTree');
}
2018-03-13 11:14:09 +08:00
async function reload() {
const notes = await loadTree();
2018-03-13 11:14:09 +08:00
// this will also reload the note content
await getTree().reload(notes);
}
function getNotePathFromAddress() {
return document.location.hash.substr(1); // strip initial #
}
async function loadTree() {
const resp = await server.get('tree');
startNotePath = resp.start_note_path;
window.glob.instanceName = resp.instanceName;
2018-03-13 11:14:09 +08:00
if (document.location.hash) {
startNotePath = getNotePathFromAddress();
}
return await prepareBranch(resp.notes, resp.branches);
}
$(() => loadTree().then(branch => initFancyTree(branch)));
function collapseTree(node = null) {
if (!node) {
node = $tree.fancytree("getRootNode");
}
node.setExpanded(false);
2017-11-05 07:28:49 +08:00
node.visit(node => node.setExpanded(false));
}
2017-11-05 07:28:49 +08:00
$(document).bind('keydown', 'alt+c', () => collapseTree()); // don't use shortened form since collapseTree() accepts argument
2017-11-05 07:28:49 +08:00
function scrollToCurrentNote() {
const node = getCurrentNode();
if (node) {
node.makeVisible({scrollIntoView: true});
node.setFocus();
2017-11-05 07:28:49 +08:00
}
}
2017-11-05 07:28:49 +08:00
function setBranchBackgroundBasedOnProtectedStatus(noteId) {
getNodesByNoteId(noteId).map(node => node.toggleClass("protected", !!node.data.isProtected));
}
2017-11-05 07:28:49 +08:00
function setProtected(noteId, isProtected) {
getNodesByNoteId(noteId).map(node => node.data.isProtected = isProtected);
2017-11-05 07:28:49 +08:00
setBranchBackgroundBasedOnProtectedStatus(noteId);
}
2017-11-05 07:28:49 +08:00
async function getAutocompleteItems(parentNoteId, notePath, titlePath) {
if (!parentNoteId) {
parentNoteId = 'root';
2017-11-05 07:28:49 +08:00
}
const parentNote = await treeCache.getNote(parentNoteId);
const childNotes = await parentNote.getChildNotes();
if (!childNotes.length) {
return [];
}
if (!notePath) {
notePath = '';
}
if (!titlePath) {
titlePath = '';
}
2017-11-20 08:39:39 +08:00
// https://github.com/zadam/trilium/issues/46
// unfortunately not easy to implement because we don't have an easy access to note's isProtected property
const autocompleteItems = [];
2017-11-20 08:39:39 +08:00
for (const childNote of childNotes) {
if (childNote.hideInAutocomplete) {
continue;
2017-11-20 08:39:39 +08:00
}
const childNotePath = (notePath ? (notePath + '/') : '') + childNote.noteId;
const childTitlePath = (titlePath ? (titlePath + ' / ') : '') + await getNoteTitle(childNote.noteId, parentNoteId);
2017-11-20 08:39:39 +08:00
autocompleteItems.push({
value: childTitlePath + ' (' + childNotePath + ')',
label: childTitlePath
});
2017-11-20 08:39:39 +08:00
const childItems = await getAutocompleteItems(childNote.noteId, childNotePath, childTitlePath);
2017-11-20 08:39:39 +08:00
for (const childItem of childItems) {
autocompleteItems.push(childItem);
2017-11-20 08:39:39 +08:00
}
}
return autocompleteItems;
}
async function setNoteTitle(noteId, title) {
utils.assertArguments(noteId);
2018-03-26 10:37:02 +08:00
const note = await treeCache.getNote(noteId);
note.title = title;
for (const clone of getNodesByNoteId(noteId)) {
await setNodeTitleWithPrefix(clone);
}
}
async function createNewTopLevelNote() {
const rootNode = $tree.fancytree("getRootNode");
await createNote(rootNode, "root", "into");
}
async function createNote(node, parentNoteId, target, isProtected) {
utils.assertArguments(node, parentNoteId, target);
// if isProtected isn't available (user didn't enter password yet), then note is created as unencrypted
// but this is quite weird since user doesn't see WHERE the note is being created so it shouldn't occur often
if (!isProtected || !protectedSessionHolder.isProtectedSessionAvailable()) {
isProtected = false;
}
const newNoteName = "new note";
2018-03-25 12:20:55 +08:00
const result = await server.post('notes/' + parentNoteId + '/children', {
title: newNoteName,
target: target,
target_branchId: node.data.branchId,
isProtected: isProtected
});
2018-03-25 12:20:55 +08:00
const note = new NoteShort(treeCache, {
noteId: result.noteId,
title: result.title,
isProtected: result.isProtected,
type: result.type,
mime: result.mime
});
const branch = new Branch(treeCache, result);
treeCache.add(note, branch);
noteDetailService.newNoteCreated();
2018-01-17 12:22:13 +08:00
const newNode = {
title: newNoteName,
noteId: result.noteId,
parentNoteId: parentNoteId,
refKey: result.noteId,
branchId: result.branchId,
isProtected: isProtected,
extraClasses: await getExtraClasses(note)
};
if (target === 'after') {
await node.appendSibling(newNode).setActive(true);
}
else if (target === 'into') {
if (!node.getChildren() && node.isFolder()) {
await node.setExpanded();
}
2018-01-17 12:22:13 +08:00
else {
node.addChildren(newNode);
2018-01-17 12:22:13 +08:00
}
await node.getLastChild().setActive(true);
node.folder = true;
node.renderTitle();
}
else {
2018-03-26 09:29:35 +08:00
infoService.throwError("Unrecognized target: " + target);
}
clearSelectedNodes(); // to unmark previously active node
2018-03-26 09:29:35 +08:00
infoService.showMessage("Created!");
}
async function sortAlphabetically(noteId) {
await server.put('notes/' + noteId + '/sort');
await reload();
}
2017-12-19 12:41:13 +08:00
messagingService.subscribeToMessages(syncData => {
if (syncData.some(sync => sync.entityName === 'branches')
|| syncData.some(sync => sync.entityName === 'notes')) {
console.log(utils.now(), "Reloading tree because of background changes");
reload();
}
});
2018-03-26 10:37:02 +08:00
utils.bindShortcut('ctrl+o', () => {
const node = getCurrentNode();
const parentNoteId = node.data.parentNoteId;
const isProtected = treeUtils.getParentProtectedStatus(node);
2017-12-19 12:41:13 +08:00
createNote(node, parentNoteId, 'after', isProtected);
});
2017-12-19 12:41:13 +08:00
2018-03-26 10:37:02 +08:00
utils.bindShortcut('ctrl+p', () => {
const node = getCurrentNode();
2017-12-19 12:41:13 +08:00
createNote(node, node.data.noteId, 'into', node.data.isProtected);
});
2018-03-26 10:37:02 +08:00
utils.bindShortcut('ctrl+del', () => {
const node = getCurrentNode();
treeChangesService.deleteNodes([node]);
});
2018-03-26 10:37:02 +08:00
utils.bindShortcut('ctrl+.', scrollToCurrentNote);
$(window).bind('hashchange', function() {
const notePath = getNotePathFromAddress();
if (getCurrentNotePath() !== notePath) {
console.log("Switching to " + notePath + " because of hash change");
activateNode(notePath);
}
});
$createTopLevelNoteButton.click(createNewTopLevelNote);
$collapseTreeButton.click(collapseTree);
$scrollToCurrentNoteButton.click(scrollToCurrentNote);
export default {
reload,
collapseTree,
scrollToCurrentNote,
setBranchBackgroundBasedOnProtectedStatus,
setProtected,
getCurrentNode,
expandToNote,
activateNode,
getCurrentNotePath,
getNoteTitle,
setCurrentNotePathToHash,
getAutocompleteItems,
setNoteTitle,
createNewTopLevelNote,
createNote,
setPrefix,
getNotePathTitle,
removeParentChildRelation,
setParentChildRelation,
getSelectedNodes,
sortAlphabetically
};