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

234 lines
7.3 KiB
JavaScript
Raw Normal View History

import treeService from './tree.js';
import utils from './utils.js';
import server from './server.js';
2018-03-26 09:29:35 +08:00
import infoService from "./info.js";
2018-03-27 10:11:45 +08:00
import treeCache from "./tree_cache.js";
import treeUtils from "./tree_utils.js";
import hoistedNoteService from "./hoisted_note.js";
import noteDetailService from "./note_detail.js";
import confirmDialog from "../dialogs/confirm.js";
2018-01-02 11:28:19 +08:00
async function moveBeforeNode(nodesToMove, beforeNode) {
nodesToMove = await filterRootNote(nodesToMove);
if (beforeNode.data.noteId === 'root') {
alert('Cannot move notes before root note.');
return;
}
for (const nodeToMove of nodesToMove) {
2018-04-02 08:33:10 +08:00
const resp = await server.put('branches/' + nodeToMove.data.branchId + '/move-before/' + beforeNode.data.branchId);
2017-11-20 12:12:39 +08:00
if (!resp.success) {
alert(resp.message);
return;
}
2017-11-05 10:10:41 +08:00
await changeNode(
node => node.moveTo(beforeNode, 'before'),
nodeToMove,
beforeNode.data.noteId,
null);
}
}
async function moveAfterNode(nodesToMove, afterNode) {
nodesToMove = await filterRootNote(nodesToMove);
if (afterNode.data.noteId === 'root' || afterNode.data.noteId === await hoistedNoteService.getHoistedNoteId()) {
alert('Cannot move notes after root note.');
return;
}
nodesToMove.reverse(); // need to reverse to keep the note order
2018-01-02 11:28:19 +08:00
for (const nodeToMove of nodesToMove) {
2018-04-02 08:33:10 +08:00
const resp = await server.put('branches/' + nodeToMove.data.branchId + '/move-after/' + afterNode.data.branchId);
2017-11-20 12:12:39 +08:00
if (!resp.success) {
alert(resp.message);
return;
}
await changeNode(
node => node.moveTo(afterNode, 'after'),
nodeToMove,
null,
afterNode.data.noteId);
2017-11-05 10:10:41 +08:00
}
}
2017-11-05 10:10:41 +08:00
async function moveToNode(nodesToMove, toNode) {
nodesToMove = await filterRootNote(nodesToMove);
for (const nodeToMove of nodesToMove) {
2018-04-02 08:33:10 +08:00
const resp = await server.put('branches/' + nodeToMove.data.branchId + '/move-to/' + toNode.data.noteId);
2018-01-02 11:28:19 +08:00
if (!resp.success) {
alert(resp.message);
return;
}
2017-11-05 10:10:41 +08:00
await changeNode(async node => {
// first expand which will force lazy load and only then move the node
// if this is not expanded before moving, then lazy load won't happen because it already contains node
// this doesn't work if this isn't a folder yet, that's why we expand second time below
await toNode.setExpanded(true);
2017-11-05 10:10:41 +08:00
node.moveTo(toNode);
}, nodeToMove);
2017-11-20 12:12:39 +08:00
}
}
2017-11-05 10:10:41 +08:00
async function deleteNodes(nodes) {
nodes = await filterRootNote(nodes);
2018-08-31 04:38:34 +08:00
if (nodes.length === 0) {
return false;
}
const nodeTitles = $("<ul>").append(...nodes.map(node => $("<li>").text(node.title)));
const confirmText = $("<div>").text('This will delete the following notes and their sub-notes: ').append(nodeTitles);
if (!await confirmDialog.confirm(confirmText)) {
2019-05-23 02:53:59 +08:00
return false;
}
for (const node of nodes) {
const {noteDeleted} = await server.remove('branches/' + node.data.branchId);
if (noteDeleted) {
noteDetailService.noteDeleted(node.data.noteId);
}
}
// following code assumes that nodes contain only top-most selected nodes - getSelectedNodes has been
// called with stopOnParent=true
let next = nodes[nodes.length - 1].getNextSibling();
2017-11-20 12:12:39 +08:00
if (!next) {
next = nodes[0].getPrevSibling();
}
if (!next && !await hoistedNoteService.isTopLevelNode(nodes[0])) {
next = nodes[0].getParent();
}
2017-11-20 12:12:39 +08:00
let activeNotePath = null;
if (next) {
activeNotePath = await treeUtils.getNotePath(next);
2017-11-05 10:10:41 +08:00
}
await treeService.loadTreeCache();
const parentNoteIds = Array.from(new Set(nodes.map(node => node.getParent().data.noteId)));
for (const node of nodes) {
node.remove();
}
for (const parentNoteId of parentNoteIds) {
await treeService.reloadNote(parentNoteId);
}
// activate after all the reloading
if (activeNotePath) {
treeService.focusTree();
const node = await treeService.activateNote(activeNotePath);
node.setFocus(true);
}
infoService.showMessage("Note(s) has been deleted.");
2019-05-23 02:53:59 +08:00
return true;
}
2018-01-02 11:28:19 +08:00
async function moveNodeUpInHierarchy(node) {
if (await hoistedNoteService.isRootNode(node) || await hoistedNoteService.isTopLevelNode(node)) {
return;
}
2017-11-29 04:17:11 +08:00
2018-04-02 08:33:10 +08:00
const resp = await server.put('branches/' + node.data.branchId + '/move-after/' + node.getParent().data.branchId);
2017-11-29 04:17:11 +08:00
if (!resp.success) {
alert(resp.message);
return;
}
if (!hoistedNoteService.isTopLevelNode(node) && node.getParent().getChildren().length <= 1) {
node.getParent().folder = false;
node.getParent().renderTitle();
}
await changeNode(
node => node.moveTo(node.getParent(), 'after'),
node);
}
async function changeNode(func, node, beforeNoteId = null, afterNoteId = null) {
utils.assertArguments(func, node);
2018-03-27 10:11:45 +08:00
const childNoteId = node.data.noteId;
const thisOldParentNode = node.getParent();
// this will move the node the user is directly operating on to the desired location
// note that there might be other instances of this note in the tree and those are updated through
// force reloading. We could simplify our lives by just reloading this one as well, but that leads
// to flickering and not good user experience. Current solution leads to no-flicker experience in most
// cases (since cloning is not used that often) and correct for multi-clone use cases
2018-04-02 00:03:21 +08:00
await func(node);
2017-11-29 04:17:11 +08:00
const thisNewParentNode = node.getParent();
node.data.parentNoteId = thisNewParentNode.data.noteId;
await treeCache.moveNote(childNoteId, thisOldParentNode.data.noteId, thisNewParentNode.data.noteId, beforeNoteId, afterNoteId);
await treeService.checkFolderStatus(thisOldParentNode);
await treeService.checkFolderStatus(thisNewParentNode);
if (!thisNewParentNode.isExpanded()) {
// this expands the note in case it become the folder only after the move
await thisNewParentNode.setExpanded(true);
}
for (const newParentNode of treeService.getNodesByNoteId(thisNewParentNode.data.noteId)) {
if (newParentNode.key === thisNewParentNode.key) {
// this one has been handled above specifically
continue;
}
newParentNode.load(true); // force reload to show up new note
2019-03-19 05:10:10 +08:00
await treeService.checkFolderStatus(newParentNode);
}
for (const oldParentNode of treeService.getNodesByNoteId(thisOldParentNode.data.noteId)) {
if (oldParentNode.key === thisOldParentNode.key) {
// this one has been handled above specifically
continue;
}
await oldParentNode.load(true); // force reload to show up new note
await treeService.checkFolderStatus(oldParentNode);
}
}
2017-11-05 10:10:41 +08:00
async function filterRootNote(nodes) {
const hoistedNoteId = await hoistedNoteService.getHoistedNoteId();
return nodes.filter(node =>
node.data.noteId !== 'root'
&& node.data.noteId !== hoistedNoteId);
}
export default {
moveBeforeNode,
moveAfterNode,
moveToNode,
deleteNodes,
moveNodeUpInHierarchy
};