trilium/src/public/javascripts/services/tab_context.js

275 lines
7.3 KiB
JavaScript
Raw Normal View History

2019-05-02 05:06:18 +08:00
import treeService from "./tree.js";
import protectedSessionHolder from "./protected_session_holder.js";
import server from "./server.js";
import bundleService from "./bundle.js";
import Attributes from "./attributes.js";
2019-05-02 05:06:18 +08:00
import utils from "./utils.js";
import optionsService from "./options.js";
2020-01-12 19:30:30 +08:00
import appContext from "./app_context.js";
2019-05-02 05:06:18 +08:00
let showSidebarInNewTab = true;
optionsService.addLoadListener(options => {
showSidebarInNewTab = options.is('showSidebarInNewTab');
});
2019-05-09 01:55:24 +08:00
class TabContext {
2019-05-12 01:44:58 +08:00
/**
2020-01-13 02:05:09 +08:00
* @param {TabRowWidget} tabRow
* @param {object} state
2019-05-12 01:44:58 +08:00
*/
constructor(tabRow, state = {}) {
2019-05-12 01:44:58 +08:00
this.tabRow = tabRow;
this.tabId = state.tabId || utils.randomString(4);
2019-05-15 04:29:47 +08:00
this.$tab = $(this.tabRow.addTab(this.tabId));
this.initialized = false;
this.state = state;
}
2019-09-05 04:13:22 +08:00
async initTabContent() {
if (this.initialized) {
return;
}
2019-05-05 16:59:34 +08:00
2019-09-05 04:13:22 +08:00
this.initialized = true;
2020-01-14 04:48:44 +08:00
this.$tabContent = $("<div>"); // FIXME
2019-05-05 16:59:34 +08:00
2019-05-04 20:34:03 +08:00
this.noteChangeDisabled = false;
2019-05-02 04:19:29 +08:00
this.isNoteChanged = false;
this.attributes = new Attributes(this);
2019-05-03 04:24:43 +08:00
}
2019-08-27 01:49:19 +08:00
async setNote(note, notePath) {
2019-08-17 17:28:36 +08:00
/** @property {NoteFull} */
2019-05-03 04:24:43 +08:00
this.note = note;
this.notePath = notePath;
this.tabRow.updateTab(this.$tab[0], {title: this.note.title});
if (!this.initialized) {
return;
}
2019-05-05 16:59:34 +08:00
if (utils.isDesktop()) {
this.attributes.refreshAttributes();
} else {
// mobile usually doesn't need attributes so we just invalidate
this.attributes.invalidateAttributes();
}
this.setupClasses();
2019-05-15 04:29:47 +08:00
this.setCurrentNotePathToHash();
this.noteChangeDisabled = true;
try {
2020-01-14 04:48:44 +08:00
} finally {
this.noteChangeDisabled = false;
}
this.setTitleBar();
this.cleanup(); // esp. on windows autocomplete is not getting closed automatically
2019-05-15 04:29:47 +08: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-15 04:29:47 +08:00
}
}, 5000);
2019-09-05 04:13:22 +08:00
bundleService.executeRelationBundles(this.note, 'runOnNoteView', this);
// after loading new note make sure editor is scrolled to the top
2020-01-14 04:48:44 +08:00
// FIXME
//this.getComponent().scrollToTop();
2020-01-13 06:03:55 +08:00
appContext.trigger('activeNoteChanged');
}
async show() {
if (!this.initialized) {
2019-09-05 04:13:22 +08:00
await this.initTabContent();
if (this.note) {
await this.setNote(this.note, this.notePath);
}
else {
2020-01-14 04:48:44 +08:00
// FIXME
await this.renderComponent(); // render empty page
}
}
2019-05-15 04:29:47 +08:00
this.setCurrentNotePathToHash();
this.setTitleBar();
}
async renderComponent(disableAutoBook = false) {
2020-01-14 04:48:44 +08:00
// FIXME
}
setTitleBar() {
if (!this.$tabContent.is(":visible")) {
return;
}
2019-05-15 04:29:47 +08:00
document.title = "Trilium Notes";
if (this.note) {
// it helps navigating in history if note title is included in the title
document.title += " - " + this.note.title;
}
}
hide() {
if (this.initialized) {
this.$tabContent.hide();
}
2019-05-15 04:29:47 +08:00
}
setCurrentNotePathToHash() {
if (this.isActive()) {
2019-05-15 04:29:47 +08:00
document.location.hash = (this.notePath || "") + "-" + this.tabId;
}
}
isActive() {
return this.$tab[0] === this.tabRow.activeTabEl;
}
setupClasses() {
for (const clazz of Array.from(this.$tab[0].classList)) { // create copy to safely iterate over while removing classes
if (clazz !== 'note-tab') {
this.$tab.removeClass(clazz);
}
}
2019-05-09 01:55:24 +08:00
for (const clazz of Array.from(this.$tabContent[0].classList)) { // create copy to safely iterate over while removing classes
if (clazz !== 'note-tab-content') {
2019-05-09 01:55:24 +08:00
this.$tabContent.removeClass(clazz);
}
}
this.$tab.addClass(this.note.cssClass);
this.$tab.addClass(utils.getNoteTypeClass(this.note.type));
this.$tab.addClass(utils.getMimeTypeClass(this.note.mime));
this.$tabContent.addClass(this.note.cssClass);
2019-05-09 01:55:24 +08:00
this.$tabContent.addClass(utils.getNoteTypeClass(this.note.type));
this.$tabContent.addClass(utils.getMimeTypeClass(this.note.mime));
this.$tabContent.toggleClass("protected", this.note.isProtected);
2019-05-02 04:19:29 +08:00
}
getComponent() {
2020-01-14 04:48:44 +08:00
// FIXME
2019-08-27 01:49:19 +08:00
}
getComponentType(disableAutoBook) {
2020-01-14 04:48:44 +08:00
// FIXME
2019-05-02 04:19:29 +08:00
}
2019-05-22 02:24:40 +08:00
async activate() {
await this.tabRow.activateTab(this.$tab[0]);
}
2019-05-02 04:19:29 +08:00
async saveNote() {
2020-01-14 04:48:44 +08:00
return; // FIXME
2019-05-02 04:19:29 +08:00
if (this.note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable()) {
return;
}
this.note.title = this.$noteTitle.val();
2019-05-22 02:24:40 +08:00
this.note.content = this.getComponent().getContent();
2019-05-02 04:19:29 +08:00
// it's important to set the flag back to false immediatelly after retrieving title and content
// otherwise we might overwrite another change (especially async code)
this.isNoteChanged = false;
treeService.setNoteTitle(this.note.noteId, this.note.title);
const resp = await server.put('notes/' + this.note.noteId, this.note.dto);
this.note.dateModified = resp.dateModified;
this.note.utcDateModified = resp.utcDateModified;
2019-05-02 04:19:29 +08:00
if (this.note.isProtected) {
protectedSessionHolder.touchProtectedSession();
}
2020-01-13 02:05:09 +08:00
// FIXME trigger "noteSaved" event so that title indicator is triggered
this.eventReceived('noteSaved');
2019-05-02 04:19:29 +08:00
// run async
bundleService.executeRelationBundles(this.note, 'runOnNoteChange', this);
2019-05-02 04:19:29 +08:00
}
async saveNoteIfChanged() {
if (this.isNoteChanged) {
await this.saveNote();
2019-05-21 04:25:04 +08:00
2020-01-12 19:30:30 +08:00
appContext.refreshTabs(this.tabId, this.note.noteId);
2019-05-02 04:19:29 +08:00
}
}
noteChanged() {
2019-05-04 20:34:03 +08:00
if (this.noteChangeDisabled) {
2019-05-02 04:19:29 +08:00
return;
}
this.isNoteChanged = true;
2020-01-14 04:48:44 +08:00
// FIXME: trigger noteChanged event
//this.$savedIndicator.fadeOut();
2019-05-02 04:19:29 +08:00
}
async remove() {
if (this.$tabContent) {
// sometimes there are orphan autocompletes after closing the tab
this.cleanup();
await this.saveNoteIfChanged();
this.$tabContent.remove();
}
}
cleanup() {
2019-10-16 01:42:39 +08:00
if (this.$tabContent && utils.isDesktop()) {
2019-07-01 02:14:57 +08:00
this.$tabContent.find('.aa-input').autocomplete('close');
$('.note-tooltip').remove();
2019-07-01 02:14:57 +08:00
}
}
eventReceived(name, data) {
if (!this.initialized) {
return;
}
this.attributes.eventReceived(name, data);
}
2019-08-15 16:04:03 +08:00
getTabState() {
if (!this.notePath) {
return null;
}
return {
tabId: this.tabId,
notePath: this.notePath,
active: this.tabRow.activeTabEl === this.$tab[0]
2019-08-15 16:04:03 +08:00
}
}
stateChanged() {
appContext.openTabsChanged();
2019-08-15 16:04:03 +08:00
}
2019-05-02 04:19:29 +08:00
}
2019-05-09 01:55:24 +08:00
export default TabContext;