mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
"use strict";
|
|
|
|
class Attribute {
|
|
constructor(noteCache, row) {
|
|
/** @param {NoteCache} */
|
|
this.noteCache = noteCache;
|
|
/** @param {string} */
|
|
this.attributeId = row.attributeId;
|
|
/** @param {string} */
|
|
this.noteId = row.noteId;
|
|
/** @param {string} */
|
|
this.type = row.type;
|
|
/** @param {string} */
|
|
this.name = row.name.toLowerCase();
|
|
|
|
if (typeof row.value !== 'string') {
|
|
row.value = JSON.stringify(row.value);
|
|
}
|
|
|
|
/** @param {string} */
|
|
this.value = row.type === 'label' ? row.value.toLowerCase() : row.value;
|
|
/** @param {boolean} */
|
|
this.isInheritable = !!row.isInheritable;
|
|
|
|
this.noteCache.attributes[this.attributeId] = this;
|
|
this.noteCache.notes[this.noteId].ownedAttributes.push(this);
|
|
|
|
const key = `${this.type}-${this.name}`;
|
|
this.noteCache.attributeIndex[key] = this.noteCache.attributeIndex[key] || [];
|
|
this.noteCache.attributeIndex[key].push(this);
|
|
|
|
const targetNote = this.targetNote;
|
|
|
|
if (targetNote) {
|
|
targetNote.targetRelations.push(this);
|
|
}
|
|
}
|
|
|
|
get isAffectingSubtree() {
|
|
return this.isInheritable
|
|
|| (this.type === 'relation' && this.name === 'template');
|
|
}
|
|
|
|
get note() {
|
|
return this.noteCache.notes[this.noteId];
|
|
}
|
|
|
|
get targetNote() {
|
|
if (this.type === 'relation') {
|
|
return this.noteCache.notes[this.value];
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Attribute;
|