2018-08-23 18:55:45 +08:00
|
|
|
/** Represents mapping between note and parent note */
|
2018-03-26 00:29:00 +08:00
|
|
|
class Branch {
|
|
|
|
constructor(treeCache, row) {
|
|
|
|
this.treeCache = treeCache;
|
2020-01-30 05:32:22 +08:00
|
|
|
|
|
|
|
this.update(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
update(row) {
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @param {string} primary key */
|
2018-03-26 00:29:00 +08:00
|
|
|
this.branchId = row.branchId;
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @param {string} */
|
2018-03-26 00:29:00 +08:00
|
|
|
this.noteId = row.noteId;
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @param {string} */
|
2018-03-26 00:29:00 +08:00
|
|
|
this.parentNoteId = row.parentNoteId;
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @param {int} */
|
2018-03-26 00:29:00 +08:00
|
|
|
this.notePosition = row.notePosition;
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @param {string} */
|
2018-03-26 00:29:00 +08:00
|
|
|
this.prefix = row.prefix;
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @param {boolean} */
|
2018-11-26 21:47:46 +08:00
|
|
|
this.isExpanded = !!row.isExpanded;
|
2020-02-11 03:57:56 +08:00
|
|
|
/** @param {boolean} */
|
|
|
|
this.isDeleted = !!row.isDeleted;
|
2018-03-26 00:29:00 +08:00
|
|
|
}
|
|
|
|
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @returns {NoteShort} */
|
2018-03-26 00:29:00 +08:00
|
|
|
async getNote() {
|
2019-12-11 04:31:24 +08:00
|
|
|
return this.treeCache.getNote(this.noteId);
|
2018-03-26 00:29:00 +08:00
|
|
|
}
|
|
|
|
|
2020-01-12 16:57:28 +08:00
|
|
|
/** @returns {NoteShort} */
|
|
|
|
async getParentNote() {
|
|
|
|
return this.treeCache.getNote(this.parentNoteId);
|
|
|
|
}
|
|
|
|
|
2018-08-23 18:55:45 +08:00
|
|
|
/** @returns {boolean} true if it's top level, meaning its parent is root note */
|
2018-04-09 10:38:52 +08:00
|
|
|
isTopLevel() {
|
|
|
|
return this.parentNoteId === 'root';
|
|
|
|
}
|
|
|
|
|
2018-03-26 00:29:00 +08:00
|
|
|
get toString() {
|
|
|
|
return `Branch(branchId=${this.branchId})`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Branch;
|