mirror of
https://github.com/zadam/trilium.git
synced 2025-10-31 19:49:01 +01:00
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import server from "./server.js";
|
|
import froca from "./froca.js";
|
|
import type FNote from "../entities/fnote.js";
|
|
import type { AttributeRow } from "./load_results.js";
|
|
|
|
async function addLabel(noteId: string, name: string, value: string = "") {
|
|
await server.put(`notes/${noteId}/attribute`, {
|
|
type: "label",
|
|
name: name,
|
|
value: value
|
|
});
|
|
}
|
|
|
|
async function setLabel(noteId: string, name: string, value: string = "") {
|
|
await server.put(`notes/${noteId}/set-attribute`, {
|
|
type: "label",
|
|
name: name,
|
|
value: value
|
|
});
|
|
}
|
|
|
|
async function removeAttributeById(noteId: string, attributeId: string) {
|
|
await server.remove(`notes/${noteId}/attributes/${attributeId}`);
|
|
}
|
|
|
|
/**
|
|
* @returns - returns true if this attribute has the potential to influence the note in the argument.
|
|
* That can happen in multiple ways:
|
|
* 1. attribute is owned by the note
|
|
* 2. attribute is owned by the template of the note
|
|
* 3. attribute is owned by some note's ancestor and is inheritable
|
|
*/
|
|
function isAffecting(attrRow: AttributeRow, affectedNote: FNote | null | undefined) {
|
|
if (!affectedNote || !attrRow) {
|
|
return false;
|
|
}
|
|
|
|
const attrNote = attrRow.noteId && froca.notes[attrRow.noteId];
|
|
|
|
if (!attrNote) {
|
|
// the note (owner of the attribute) is not even loaded into the cache, so it should not affect anything else
|
|
return false;
|
|
}
|
|
|
|
const owningNotes = [affectedNote, ...affectedNote.getNotesToInheritAttributesFrom()];
|
|
|
|
for (const owningNote of owningNotes) {
|
|
if (owningNote.noteId === attrNote.noteId) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
// TODO: This doesn't seem right.
|
|
//@ts-ignore
|
|
if (this.isInheritable) {
|
|
for (const owningNote of owningNotes) {
|
|
if (owningNote.hasAncestor(attrNote.noteId, true)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
export default {
|
|
addLabel,
|
|
setLabel,
|
|
removeAttributeById,
|
|
isAffecting
|
|
};
|