mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-08-11 02:42:27 +08:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import treeService from "./tree.js";
|
|
import sql from "./sql.js";
|
|
import BBranch from "../becca/entities/bbranch.js";
|
|
|
|
function moveBranchToNote(branchToMove: BBranch, targetParentNoteId: string) {
|
|
if (branchToMove.parentNoteId === targetParentNoteId) {
|
|
return {success: true}; // no-op
|
|
}
|
|
|
|
const validationResult = treeService.validateParentChild(targetParentNoteId, branchToMove.noteId, branchToMove.branchId);
|
|
|
|
if (!validationResult.success) {
|
|
return [200, validationResult];
|
|
}
|
|
|
|
const maxNotePos = sql.getValue<number | null>('SELECT MAX(notePosition) FROM branches WHERE parentNoteId = ? AND isDeleted = 0', [targetParentNoteId]);
|
|
const newNotePos = !maxNotePos ? 0 : maxNotePos + 10;
|
|
|
|
const newBranch = branchToMove.createClone(targetParentNoteId, newNotePos);
|
|
newBranch.save();
|
|
|
|
branchToMove.markAsDeleted();
|
|
|
|
return {
|
|
success: true,
|
|
branch: newBranch
|
|
};
|
|
}
|
|
|
|
function moveBranchToBranch(branchToMove: BBranch, targetParentBranch: BBranch, branchId: string) {
|
|
// TODO: Unused branch ID argument.
|
|
const res = moveBranchToNote(branchToMove, targetParentBranch.noteId);
|
|
|
|
if (!("success" in res) || !res.success) {
|
|
return res;
|
|
}
|
|
|
|
// expanding so that the new placement of the branch is immediately visible
|
|
if (!targetParentBranch.isExpanded) {
|
|
targetParentBranch.isExpanded = true;
|
|
targetParentBranch.save();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
export default {
|
|
moveBranchToBranch,
|
|
moveBranchToNote
|
|
};
|