Notes/src/services/cloning.js

118 lines
3.6 KiB
JavaScript
Raw Normal View History

"use strict";
const sql = require('./sql');
const eventChangesService = require('./entity_changes.js');
2018-08-11 19:45:55 +02:00
const treeService = require('./tree');
const noteService = require('./notes');
const repository = require('./repository');
const Branch = require('../entities/branch');
const TaskContext = require("./task_context.js");
const utils = require('./utils');
2020-06-20 12:31:38 +02:00
function cloneNoteToParent(noteId, parentBranchId, prefix) {
const parentBranch = repository.getBranch(parentBranchId);
2020-06-20 12:31:38 +02:00
if (isNoteDeleted(noteId) || isNoteDeleted(parentBranch.noteId)) {
return { success: false, message: 'Note is deleted.' };
}
2020-06-20 12:31:38 +02:00
const validationResult = treeService.validateParentChild(parentBranch.noteId, noteId);
if (!validationResult.success) {
return validationResult;
}
2020-06-20 12:31:38 +02:00
const branch = new Branch({
noteId: noteId,
parentNoteId: parentBranch.noteId,
prefix: prefix,
isExpanded: 0
}).save();
parentBranch.isExpanded = true; // the new target should be expanded so it immediately shows up to the user
2020-06-20 12:31:38 +02:00
parentBranch.save();
return { success: true, branchId: branch.branchId };
}
2020-06-20 12:31:38 +02:00
function ensureNoteIsPresentInParent(noteId, parentNoteId, prefix) {
if (isNoteDeleted(noteId) || isNoteDeleted(parentNoteId)) {
return { success: false, message: 'Note is deleted.' };
}
2020-06-20 12:31:38 +02:00
const validationResult = treeService.validateParentChild(parentNoteId, noteId);
2018-08-13 10:59:31 +02:00
if (!validationResult.success) {
return validationResult;
}
2020-06-20 12:31:38 +02:00
new Branch({
2018-08-13 10:59:31 +02:00
noteId: noteId,
parentNoteId: parentNoteId,
prefix: prefix,
isExpanded: 0
}).save();
2018-08-11 19:45:55 +02:00
}
2020-06-20 12:31:38 +02:00
function ensureNoteIsAbsentFromParent(noteId, parentNoteId) {
const branch = repository.getEntity(`SELECT * FROM branches WHERE noteId = ? AND parentNoteId = ? AND isDeleted = 0`, [noteId, parentNoteId]);
2018-08-11 19:45:55 +02:00
if (branch) {
const deleteId = utils.randomString(10);
2020-06-20 12:31:38 +02:00
noteService.deleteBranch(branch, deleteId, new TaskContext());
2018-08-11 19:45:55 +02:00
}
}
2020-06-20 12:31:38 +02:00
function toggleNoteInParent(present, noteId, parentNoteId, prefix) {
if (present) {
2020-06-20 12:31:38 +02:00
ensureNoteIsPresentInParent(noteId, parentNoteId, prefix);
}
else {
2020-06-20 12:31:38 +02:00
ensureNoteIsAbsentFromParent(noteId, parentNoteId);
}
}
2020-06-20 12:31:38 +02:00
function cloneNoteAfter(noteId, afterBranchId) {
const afterNote = repository.getBranch(afterBranchId);
2020-06-20 12:31:38 +02:00
if (isNoteDeleted(noteId) || isNoteDeleted(afterNote.parentNoteId)) {
return { success: false, message: 'Note is deleted.' };
}
2020-06-20 12:31:38 +02:00
const validationResult = treeService.validateParentChild(afterNote.parentNoteId, noteId);
2019-10-26 21:14:06 +02:00
if (!validationResult.success) {
return validationResult;
}
2019-03-12 20:58:31 +01:00
// we don't change utcDateModified so other changes are prioritized in case of conflict
// also we would have to sync all those modified branches otherwise hash checks would fail
2020-06-20 12:31:38 +02:00
sql.execute("UPDATE branches SET notePosition = notePosition + 10 WHERE parentNoteId = ? AND notePosition > ? AND isDeleted = 0",
[afterNote.parentNoteId, afterNote.notePosition]);
eventChangesService.addNoteReorderingEntityChange(afterNote.parentNoteId);
2020-06-20 12:31:38 +02:00
const branch = new Branch({
noteId: noteId,
parentNoteId: afterNote.parentNoteId,
2019-10-19 12:36:16 +02:00
notePosition: afterNote.notePosition + 10,
isExpanded: 0
}).save();
return { success: true, branchId: branch.branchId };
}
2020-06-20 12:31:38 +02:00
function isNoteDeleted(noteId) {
const note = repository.getNote(noteId);
return note.isDeleted;
}
module.exports = {
cloneNoteToParent,
2018-08-11 19:45:55 +02:00
ensureNoteIsPresentInParent,
ensureNoteIsAbsentFromParent,
toggleNoteInParent,
cloneNoteAfter
};