mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
"use strict";
|
|
|
|
const Expression = require('./expression');
|
|
const NoteSet = require('../note_set');
|
|
const becca = require('../../../becca/becca');
|
|
|
|
class RelationWhereExp extends Expression {
|
|
constructor(relationName, subExpression) {
|
|
super();
|
|
|
|
this.relationName = relationName;
|
|
this.subExpression = subExpression;
|
|
}
|
|
|
|
execute(inputNoteSet, executionContext) {
|
|
const candidateNoteSet = new NoteSet();
|
|
|
|
for (const attr of becca.findAttributes('relation', this.relationName)) {
|
|
const note = attr.note;
|
|
|
|
if (inputNoteSet.hasNoteId(note.noteId) && attr.targetNote) {
|
|
const subInputNoteSet = new NoteSet([attr.targetNote]);
|
|
const subResNoteSet = this.subExpression.execute(subInputNoteSet, executionContext);
|
|
|
|
if (subResNoteSet.hasNote(attr.targetNote)) {
|
|
if (attr.isInheritable) {
|
|
candidateNoteSet.addAll(note.getSubtreeNotesIncludingTemplated());
|
|
} else if (note.isTemplate()) {
|
|
candidateNoteSet.addAll(note.getTemplatedNotes());
|
|
} else {
|
|
candidateNoteSet.add(note);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return candidateNoteSet.intersection(inputNoteSet);
|
|
}
|
|
}
|
|
|
|
module.exports = RelationWhereExp;
|