mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-05 07:08:14 +08:00
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import type { Request } from "express";
|
|
import becca from "../../becca/becca.js";
|
|
import bulkActionService from "../../services/bulk_actions.js";
|
|
|
|
function execute(req: Request) {
|
|
const { noteIds, includeDescendants } = req.body;
|
|
|
|
const affectedNoteIds = getAffectedNoteIds(noteIds, includeDescendants);
|
|
|
|
const bulkActionNote = becca.getNoteOrThrow("_bulkAction");
|
|
|
|
bulkActionService.executeActions(bulkActionNote, affectedNoteIds);
|
|
}
|
|
|
|
function getAffectedNoteCount(req: Request) {
|
|
const { noteIds, includeDescendants } = req.body;
|
|
|
|
const affectedNoteIds = getAffectedNoteIds(noteIds, includeDescendants);
|
|
|
|
return {
|
|
affectedNoteCount: affectedNoteIds.size
|
|
};
|
|
}
|
|
|
|
function getAffectedNoteIds(noteIds: string[], includeDescendants: boolean) {
|
|
const affectedNoteIds = new Set<string>();
|
|
|
|
for (const noteId of noteIds) {
|
|
const note = becca.getNote(noteId);
|
|
|
|
if (!note) {
|
|
continue;
|
|
}
|
|
|
|
affectedNoteIds.add(noteId);
|
|
|
|
if (includeDescendants) {
|
|
for (const descendantNoteId of note.getDescendantNoteIds()) {
|
|
affectedNoteIds.add(descendantNoteId);
|
|
}
|
|
}
|
|
}
|
|
return affectedNoteIds;
|
|
}
|
|
|
|
export default {
|
|
execute,
|
|
getAffectedNoteCount
|
|
};
|