2018-03-26 01:02:39 +08:00
|
|
|
import Branch from "../entities/branch.js";
|
|
|
|
import NoteShort from "../entities/note_short.js";
|
2019-08-27 02:21:43 +08:00
|
|
|
import ws from "./ws.js";
|
2018-04-17 08:40:18 +08:00
|
|
|
import server from "./server.js";
|
2018-03-26 00:29:00 +08:00
|
|
|
|
2019-04-15 00:32:56 +08:00
|
|
|
/**
|
|
|
|
* TreeCache keeps a read only cache of note tree structure in frontend's memory.
|
2019-10-28 02:17:32 +08:00
|
|
|
* - notes are loaded lazily when unknown noteId is requested
|
|
|
|
* - when note is loaded, all its parent and child branches are loaded as well. For a branch to be used, it's not must be loaded before
|
|
|
|
* - deleted notes are present in the cache as well, but they don't have any branches. As a result check for deleted branch is done by presence check - if the branch is not there even though the corresponding note has been loaded, we can infer it is deleted.
|
|
|
|
*
|
|
|
|
* Note and branch deletions are corner cases and usually not needed.
|
2019-04-15 00:32:56 +08:00
|
|
|
*/
|
2018-03-26 00:29:00 +08:00
|
|
|
class TreeCache {
|
2018-08-17 05:00:04 +08:00
|
|
|
constructor() {
|
|
|
|
this.init();
|
|
|
|
}
|
|
|
|
|
|
|
|
init() {
|
2018-03-26 00:29:00 +08:00
|
|
|
/** @type {Object.<string, NoteShort>} */
|
|
|
|
this.notes = {};
|
2018-04-17 08:40:18 +08:00
|
|
|
|
|
|
|
/** @type {Object.<string, Branch>} */
|
|
|
|
this.branches = {};
|
|
|
|
}
|
|
|
|
|
2019-10-26 03:47:14 +08:00
|
|
|
load(noteRows, branchRows) {
|
|
|
|
this.init();
|
|
|
|
|
|
|
|
this.addResp(noteRows, branchRows);
|
|
|
|
}
|
|
|
|
|
|
|
|
addResp(noteRows, branchRows) {
|
2019-10-26 15:51:08 +08:00
|
|
|
const branchesByNotes = {};
|
2018-03-26 00:29:00 +08:00
|
|
|
|
|
|
|
for (const branchRow of branchRows) {
|
|
|
|
const branch = new Branch(this, branchRow);
|
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
branchesByNotes[branch.noteId] = branchesByNotes[branch.noteId] || [];
|
|
|
|
branchesByNotes[branch.noteId].push(branch);
|
|
|
|
|
|
|
|
branchesByNotes[branch.parentNoteId] = branchesByNotes[branch.parentNoteId] || [];
|
|
|
|
branchesByNotes[branch.parentNoteId].push(branch);
|
2018-03-26 00:29:00 +08:00
|
|
|
}
|
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
for (const noteRow of noteRows) {
|
|
|
|
const {noteId} = noteRow;
|
|
|
|
|
|
|
|
const oldNote = this.notes[noteId];
|
|
|
|
|
|
|
|
if (oldNote) {
|
|
|
|
for (const childNoteId of oldNote.children) {
|
|
|
|
const childNote = this.notes[childNoteId];
|
|
|
|
|
|
|
|
if (childNote) {
|
|
|
|
childNote.parents = childNote.parents.filter(p => p !== noteId);
|
|
|
|
|
2019-10-28 02:17:32 +08:00
|
|
|
delete this.branches[childNote.parentToBranch[noteId]];
|
2019-10-26 15:51:08 +08:00
|
|
|
delete childNote.parentToBranch[noteId];
|
|
|
|
}
|
|
|
|
}
|
2019-04-14 04:10:16 +08:00
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
for (const parentNoteId of oldNote.parents) {
|
|
|
|
const parentNote = this.notes[parentNoteId];
|
2019-04-14 04:10:16 +08:00
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
if (parentNote) {
|
|
|
|
parentNote.children = parentNote.children.filter(p => p !== noteId);
|
2019-04-14 04:10:16 +08:00
|
|
|
|
2019-10-28 02:17:32 +08:00
|
|
|
delete this.branches[parentNote.childToBranch[noteId]];
|
2019-10-26 15:51:08 +08:00
|
|
|
delete parentNote.childToBranch[noteId];
|
|
|
|
}
|
|
|
|
}
|
2019-10-20 18:29:34 +08:00
|
|
|
}
|
2019-04-14 04:10:16 +08:00
|
|
|
|
2019-10-27 04:50:46 +08:00
|
|
|
for (const branch of branchesByNotes[noteId] || []) { // can be empty for deleted notes
|
2019-10-28 02:17:32 +08:00
|
|
|
this.branches[branch.branchId] = branch;
|
2019-10-27 02:48:56 +08:00
|
|
|
}
|
|
|
|
|
2019-10-27 04:50:46 +08:00
|
|
|
const note = new NoteShort(this, noteRow, branchesByNotes[noteId] || []);
|
2019-04-14 04:10:16 +08:00
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
this.notes[note.noteId] = note;
|
2019-04-14 04:10:16 +08:00
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
for (const childNoteId of note.children) {
|
|
|
|
const childNote = this.notes[childNoteId];
|
2019-04-14 04:10:16 +08:00
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
if (childNote) {
|
|
|
|
childNote.addParent(noteId, note.childToBranch[childNoteId]);
|
|
|
|
}
|
|
|
|
}
|
2019-04-14 04:56:45 +08:00
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
for (const parentNoteId of note.parents) {
|
|
|
|
const parentNote = this.notes[parentNoteId];
|
2019-04-14 04:56:45 +08:00
|
|
|
|
2019-10-26 15:51:08 +08:00
|
|
|
if (parentNote) {
|
|
|
|
parentNote.addChild(noteId, note.parentToBranch[parentNoteId]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async reloadNotes(noteIds) {
|
|
|
|
const resp = await server.post('tree/load', { noteIds });
|
|
|
|
|
|
|
|
this.addResp(resp.notes, resp.branches);
|
2019-04-14 04:56:45 +08:00
|
|
|
}
|
|
|
|
|
2019-04-14 04:10:16 +08:00
|
|
|
/** @return {Promise<NoteShort[]>} */
|
2018-08-17 05:00:04 +08:00
|
|
|
async getNotes(noteIds, silentNotFoundError = false) {
|
2018-04-17 11:13:33 +08:00
|
|
|
const missingNoteIds = noteIds.filter(noteId => this.notes[noteId] === undefined);
|
2018-04-17 08:40:18 +08:00
|
|
|
|
2018-04-17 11:13:33 +08:00
|
|
|
if (missingNoteIds.length > 0) {
|
|
|
|
const resp = await server.post('tree/load', { noteIds: missingNoteIds });
|
2018-04-17 08:40:18 +08:00
|
|
|
|
2019-10-26 03:47:14 +08:00
|
|
|
this.addResp(resp.notes, resp.branches);
|
2018-04-17 08:40:18 +08:00
|
|
|
}
|
|
|
|
|
2018-04-17 11:13:33 +08:00
|
|
|
return noteIds.map(noteId => {
|
2018-08-17 05:00:04 +08:00
|
|
|
if (!this.notes[noteId] && !silentNotFoundError) {
|
2019-08-27 02:21:43 +08:00
|
|
|
ws.logError(`Can't find note "${noteId}"`);
|
2018-08-06 17:30:37 +08:00
|
|
|
|
2018-08-12 18:59:38 +08:00
|
|
|
return null;
|
2018-04-17 11:13:33 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
return this.notes[noteId];
|
|
|
|
}
|
2018-08-12 18:59:38 +08:00
|
|
|
}).filter(note => note !== null);
|
2018-04-17 11:13:33 +08:00
|
|
|
}
|
|
|
|
|
2019-04-14 04:10:16 +08:00
|
|
|
/** @return {Promise<boolean>} */
|
|
|
|
async noteExists(noteId) {
|
|
|
|
const notes = await this.getNotes([noteId], true);
|
|
|
|
|
|
|
|
return notes.length === 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return {Promise<NoteShort>} */
|
2019-09-08 17:25:57 +08:00
|
|
|
async getNote(noteId, silentNotFoundError = false) {
|
2018-05-27 04:16:34 +08:00
|
|
|
if (noteId === 'none') {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-09-08 17:25:57 +08:00
|
|
|
return (await this.getNotes([noteId], silentNotFoundError))[0];
|
2018-03-26 00:29:00 +08:00
|
|
|
}
|
|
|
|
|
2019-10-26 15:58:00 +08:00
|
|
|
getBranches(branchIds) {
|
|
|
|
return branchIds
|
|
|
|
.map(branchId => this.getBranch(branchId))
|
|
|
|
.filter(b => b !== null);
|
|
|
|
}
|
2018-04-17 08:40:18 +08:00
|
|
|
|
2019-10-26 15:58:00 +08:00
|
|
|
/** @return {Branch} */
|
2019-10-27 04:50:46 +08:00
|
|
|
getBranch(branchId, silentNotFoundError = false) {
|
2019-10-26 15:58:00 +08:00
|
|
|
if (!(branchId in this.branches)) {
|
2019-10-27 04:50:46 +08:00
|
|
|
if (!silentNotFoundError) {
|
|
|
|
console.error(`Not existing branch ${branchId}`);
|
|
|
|
}
|
2018-04-17 08:40:18 +08:00
|
|
|
}
|
2019-10-27 02:48:56 +08:00
|
|
|
else {
|
|
|
|
return this.branches[branchId];
|
|
|
|
}
|
2018-03-26 00:29:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const treeCache = new TreeCache();
|
|
|
|
|
|
|
|
export default treeCache;
|