Notes/src/public/app/services/tab_context.js

129 lines
3.5 KiB
JavaScript
Raw Normal View History

2019-05-01 23:06:18 +02:00
import protectedSessionHolder from "./protected_session_holder.js";
import server from "./server.js";
import utils from "./utils.js";
2020-01-12 12:30:30 +01:00
import appContext from "./app_context.js";
2020-01-25 09:56:08 +01:00
import treeService from "./tree.js";
2020-01-15 21:36:01 +01:00
import Component from "../widgets/component.js";
import treeCache from "./tree_cache.js";
2020-02-02 22:04:28 +01:00
import hoistedNoteService from "./hoisted_note.js";
2019-05-01 23:06:18 +02:00
2020-01-15 21:36:01 +01:00
class TabContext extends Component {
2019-05-11 19:44:58 +02:00
/**
2020-02-09 21:13:05 +01:00
* @param {string|null} tabId
2019-05-11 19:44:58 +02:00
*/
2020-02-27 10:03:14 +01:00
constructor(tabId = null) {
super();
2020-01-15 21:36:01 +01:00
2020-02-09 21:13:05 +01:00
this.tabId = tabId || utils.randomString(4);
2019-05-02 22:24:43 +02:00
}
2020-02-28 11:46:35 +01:00
setEmpty() {
this.triggerEvent('tabNoteSwitched', {
2020-03-07 13:40:46 +01:00
tabContext: this,
2020-02-28 11:46:35 +01:00
notePath: this.notePath
});
}
2020-02-27 12:26:42 +01:00
async setNote(inputNotePath, triggerSwitchEvent = true) {
2020-03-23 16:39:03 +01:00
const noteId = treeService.getNoteIdFromNotePath(inputNotePath);
let notePath;
2020-01-24 17:54:47 +01:00
2020-03-23 16:39:03 +01:00
if ((await treeCache.getNote(noteId)).isDeleted) {
// no point in trying to resolve canonical notePath
notePath = inputNotePath;
2020-01-24 17:54:47 +01:00
}
2020-03-23 16:39:03 +01:00
else {
notePath = await treeService.resolveNotePath(inputNotePath);
2020-01-24 17:54:47 +01:00
2020-03-23 16:39:03 +01:00
if (!notePath) {
console.error(`Cannot resolve note path ${inputNotePath}`);
return;
}
2020-01-24 17:54:47 +01:00
2020-03-23 16:39:03 +01:00
if (notePath === this.notePath) {
return;
}
if (await hoistedNoteService.checkNoteAccess(notePath) === false) {
return; // note is outside of hoisted subtree and user chose not to unhoist
}
2020-02-02 22:04:28 +01:00
}
2020-03-18 10:08:16 +01:00
await this.triggerEvent('beforeNoteSwitch', {tabContext: this});
2020-02-03 21:56:45 +01:00
utils.closeActiveDialog();
this.notePath = notePath;
2020-03-23 16:39:03 +01:00
this.noteId = noteId;
2020-02-02 11:44:08 +01:00
this.autoBookDisabled = false;
2020-04-06 22:08:54 +02:00
this.textPreviewDisabled = false;
2020-02-02 11:44:08 +01:00
2019-05-14 22:29:47 +02:00
setTimeout(async () => {
// we include the note into recent list only if the user stayed on the note at least 5 seconds
if (notePath && notePath === this.notePath) {
await server.post('recent-notes', {
noteId: this.note.noteId,
notePath: this.notePath
});
2019-05-14 22:29:47 +02:00
}
}, 5000);
protectedSessionHolder.touchProtectedSessionIfNecessary(this.note);
2020-01-19 11:03:34 +01:00
2020-02-27 12:26:42 +01:00
if (triggerSwitchEvent) {
this.triggerEvent('tabNoteSwitched', {
2020-03-07 13:40:46 +01:00
tabContext: this,
2020-02-27 12:26:42 +01:00
notePath: this.notePath
});
}
}
/** @property {NoteShort} */
get note() {
return treeCache.notes[this.noteId];
2020-02-01 11:33:31 +01:00
}
/** @return {NoteComplement} */
async getNoteComplement() {
if (!this.noteId) {
return null;
}
return await treeCache.getNoteComplement(this.noteId);
2020-02-01 11:33:31 +01:00
}
2020-01-21 21:43:23 +01:00
isActive() {
return appContext.tabManager.activeTabId === this.tabId;
2020-01-21 21:43:23 +01:00
}
2019-08-15 10:04:03 +02:00
getTabState() {
if (!this.notePath) {
return null;
}
return {
tabId: this.tabId,
notePath: this.notePath,
2020-02-08 21:23:42 +01:00
active: this.isActive()
2019-08-15 10:04:03 +02:00
}
}
2020-02-16 19:23:49 +01:00
async entitiesReloadedEvent({loadResults}) {
2020-02-09 22:31:52 +01:00
if (loadResults.isNoteReloaded(this.noteId)) {
const note = await treeCache.getNote(this.noteId);
if (note.isDeleted) {
this.noteId = null;
this.notePath = null;
2020-02-16 19:21:17 +01:00
this.triggerEvent('tabNoteSwitched', {
2020-03-07 13:40:46 +01:00
tabContext: this,
2020-02-09 22:31:52 +01:00
notePath: this.notePath
});
}
2020-01-24 17:54:47 +01:00
}
2019-08-15 10:04:03 +02:00
}
2019-05-01 22:19:29 +02:00
}
2019-05-08 19:55:24 +02:00
export default TabContext;