Source: entities/branch.js

/**
 * Branch represents a relationship between a child note and its parent note. Trilium allows a note to have multiple
 * parents.
 */
class Branch {
    constructor(froca, row) {
        this.froca = froca;

        this.update(row);
    }

    update(row) {
        /**
         * primary key
         * @type {string}
         */
        this.branchId = row.branchId;
        /** @type {string} */
        this.noteId = row.noteId;
        /** @type {string} */
        this.parentNoteId = row.parentNoteId;
        /** @type {int} */
        this.notePosition = row.notePosition;
        /** @type {string} */
        this.prefix = row.prefix;
        /** @type {boolean} */
        this.isExpanded = !!row.isExpanded;
        /** @type {boolean} */
        this.fromSearchNote = !!row.fromSearchNote;
    }

    /** @returns {NoteShort} */
    async getNote() {
        return this.froca.getNote(this.noteId);
    }

    /** @returns {NoteShort} */
    getNoteFromCache() {
        return this.froca.getNoteFromCache(this.noteId);
    }

    /** @returns {NoteShort} */
    async getParentNote() {
        return this.froca.getNote(this.parentNoteId);
    }

    /** @returns {boolean} true if it's top level, meaning its parent is root note */
    isTopLevel() {
        return this.parentNoteId === 'root';
    }

    get toString() {
        return `Branch(branchId=${this.branchId})`;
    }
}

export default Branch;