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

487 lines
13 KiB
JavaScript
Raw Normal View History

import treeService from './tree.js';
2019-05-11 03:43:40 +08:00
import TabContext from './tab_context.js';
import server from './server.js';
import messagingService from "./messaging.js";
2018-03-26 09:29:35 +08:00
import infoService from "./info.js";
2018-03-26 11:25:17 +08:00
import treeCache from "./tree_cache.js";
import NoteFull from "../entities/note_full.js";
import bundleService from "./bundle.js";
import utils from "./utils.js";
2019-02-27 04:37:15 +08:00
import importDialog from "../dialogs/import.js";
import contextMenuService from "./context_menu.js";
2019-05-09 02:14:41 +08:00
import treeUtils from "./tree_utils.js";
2019-05-12 01:44:58 +08:00
import tabRow from "./tab_row.js";
2019-05-05 16:59:34 +08:00
2019-05-09 01:55:24 +08:00
const $tabContentsContainer = $("#note-tab-container");
2019-05-04 03:50:14 +08:00
const $savedIndicator = $(".saved-indicator");
let detailLoadedListeners = [];
/** @return {NoteFull} */
function getActiveNote() {
const activeContext = getActiveTabContext();
2019-05-02 04:19:29 +08:00
return activeContext ? activeContext.note : null;
}
function getActiveNoteId() {
2019-05-02 04:19:29 +08:00
const activeNote = getActiveNote();
return activeNote ? activeNote.noteId : null;
}
function getActiveNoteType() {
const activeNote = getActiveNote();
return activeNote ? activeNote.type : null;
}
async function reload() {
// no saving here
2017-11-05 05:54:27 +08:00
await loadNoteDetail(getActiveTabContext().notePath);
}
2017-11-05 05:54:27 +08:00
async function reloadAllTabs() {
2019-05-09 01:55:24 +08:00
for (const tabContext of tabContexts) {
const note = await loadNote(tabContext.note.noteId);
2019-05-09 02:14:41 +08:00
await loadNoteDetailToContext(tabContext, note, tabContext.notePath);
}
}
async function openInTab(notePath) {
await loadNoteDetail(notePath, { newTab: true });
2019-05-03 04:24:43 +08:00
}
2019-05-02 05:06:18 +08:00
2019-05-09 02:14:41 +08:00
async function switchToNote(notePath) {
await saveNotesIfChanged();
2017-11-05 05:54:27 +08:00
2019-05-09 02:14:41 +08:00
await loadNoteDetail(notePath);
2019-05-12 01:27:33 +08:00
openTabsChanged();
}
2017-11-05 05:54:27 +08:00
function getActiveNoteContent() {
return getActiveTabContext().getComponent().getContent();
}
function onNoteChange(func) {
return getActiveTabContext().getComponent().onNoteChange(func);
}
2019-05-02 04:19:29 +08:00
async function saveNotesIfChanged() {
2019-05-09 01:55:24 +08:00
for (const ctx of tabContexts) {
2019-05-02 04:19:29 +08:00
await ctx.saveNoteIfChanged();
}
2019-05-02 04:19:29 +08:00
// make sure indicator is visible in a case there was some race condition.
$savedIndicator.fadeIn();
}
2017-11-05 05:54:27 +08:00
2019-05-09 01:55:24 +08:00
/** @type {TabContext[]} */
let tabContexts = [];
2018-04-08 20:21:49 +08:00
function getActiveComponent() {
return getActiveTabContext().getComponent();
}
function getTabContexts() {
return tabContexts;
}
2019-05-09 01:55:24 +08:00
/** @returns {TabContext} */
function getActiveTabContext() {
2019-05-12 18:58:55 +08:00
const activeTabEl = tabRow.activeTabEl;
if (!activeTabEl) {
return null;
2019-05-03 04:24:43 +08:00
}
2019-05-12 18:58:55 +08:00
const tabId = activeTabEl.getAttribute('data-tab-id');
return tabContexts.find(tc => tc.tabId === tabId);
}
2017-11-05 05:54:27 +08:00
2019-05-15 04:29:47 +08:00
function isActive(tabContext) {
return tabContext.$tab[0] === tabRow.activateTab;
}
async function activateTabContext(tabContext) {
await tabRow.activateTab(tabContext.$tab[0]);
}
/** @returns {TabContext} */
function getTabContext(tabId) {
return tabContexts.find(tc => tc.tabId === tabId);
}
async function showTab(tabId) {
2019-05-09 01:55:24 +08:00
for (const ctx of tabContexts) {
2019-05-15 04:29:47 +08:00
if (ctx.tabId === tabId) {
ctx.show();
}
else {
ctx.hide();
}
}
const oldActiveNode = treeService.getActiveNode();
if (oldActiveNode) {
oldActiveNode.setActive(false);
}
treeService.clearSelectedNodes();
const newActiveTabContext = getActiveTabContext();
2019-05-12 18:58:55 +08:00
if (newActiveTabContext && newActiveTabContext.notePath) {
const newActiveNode = await treeService.getNodeFromPath(newActiveTabContext.notePath);
if (newActiveNode && newActiveNode.isVisible()) {
newActiveNode.setActive(true, {noEvents: true});
newActiveNode.setSelected(true);
}
}
}
async function renderComponent(ctx) {
for (const componentType in ctx.components) {
if (componentType !== ctx.note.type) {
ctx.components[componentType].cleanup();
}
}
2019-05-12 18:58:55 +08:00
ctx.$noteDetailComponents.hide();
ctx.$noteTitle.show(); // this can be hidden by empty detail
ctx.$noteTitle.removeAttr("readonly"); // this can be set by protected session service
await ctx.getComponent().render();
}
/**
2019-05-09 01:55:24 +08:00
* @param {TabContext} ctx
* @param {NoteFull} note
*/
2019-05-09 02:14:41 +08:00
async function loadNoteDetailToContext(ctx, note, notePath) {
ctx.setNote(note, notePath);
2019-05-12 18:58:55 +08:00
openTabsChanged();
if (utils.isDesktop()) {
// needs to happen after loading the note itself because it references active noteId
2019-05-06 00:24:59 +08:00
ctx.attributes.refreshAttributes();
} else {
2018-12-25 06:08:43 +08:00
// mobile usually doesn't need attributes so we just invalidate
2019-05-06 00:24:59 +08:00
ctx.attributes.invalidateAttributes();
2018-12-25 06:08:43 +08:00
}
2019-05-04 20:34:03 +08:00
ctx.noteChangeDisabled = true;
2017-11-05 05:54:27 +08:00
try {
2019-05-02 04:19:29 +08:00
ctx.$noteTitle.val(ctx.note.title);
if (utils.isDesktop()) {
ctx.noteType.type(ctx.note.type);
ctx.noteType.mime(ctx.note.mime);
}
2017-11-05 05:54:27 +08:00
2019-05-12 18:58:55 +08:00
await renderComponent(ctx);
} finally {
2019-05-04 20:34:03 +08:00
ctx.noteChangeDisabled = false;
}
treeService.setBranchBackgroundBasedOnProtectedStatus(note.noteId);
2018-01-24 12:41:22 +08:00
// after loading new note make sure editor is scrolled to the top
ctx.getComponent().scrollToTop();
2018-01-24 12:41:22 +08:00
fireDetailLoaded();
2019-05-02 04:19:29 +08:00
ctx.$scriptArea.empty();
2019-05-04 03:50:14 +08:00
await bundleService.executeRelationBundles(ctx.note, 'runOnNoteView');
if (utils.isDesktop()) {
await ctx.attributes.showAttributes();
await ctx.showChildrenOverview();
}
}
2019-05-12 18:58:55 +08:00
async function loadNoteDetail(origNotePath, options = {}) {
2019-05-11 03:43:40 +08:00
const newTab = !!options.newTab;
const activate = !!options.activate;
2019-05-12 18:58:55 +08:00
const notePath = await treeService.resolveNotePath(origNotePath);
if (!notePath) {
console.error(`Cannot resolve note path ${origNotePath}`);
return;
}
2019-05-09 02:14:41 +08:00
const noteId = treeUtils.getNoteIdFromNotePath(notePath);
const loadedNote = await loadNote(noteId);
let ctx;
2019-05-15 04:29:47 +08:00
if (!getActiveTabContext() || newTab) {
// if it's a new tab explicitly by user then it's in background
2019-05-15 04:29:47 +08:00
ctx = new TabContext(tabRow, options.tabId);
2019-05-09 01:55:24 +08:00
tabContexts.push(ctx);
}
else {
ctx = getActiveTabContext();
}
// we will try to render the new note only if it's still the active one in the tree
// this is useful when user quickly switches notes (by e.g. holding down arrow) so that we don't
// try to render all those loaded notes one after each other. This only guarantees that correct note
// will be displayed independent of timing
const currentTreeNode = treeService.getActiveNode();
if (!newTab && currentTreeNode && currentTreeNode.data.noteId !== loadedNote.noteId) {
return;
}
2019-05-09 02:14:41 +08:00
await loadNoteDetailToContext(ctx, loadedNote, notePath);
2019-05-11 03:43:40 +08:00
if (activate) {
// will also trigger showTab via event
2019-05-15 04:29:47 +08:00
await tabRow.activateTab(ctx.$tab[0]);
}
}
async function loadNote(noteId) {
const row = await server.get('notes/' + noteId);
return new NoteFull(treeCache, row);
}
2019-05-12 01:27:33 +08:00
async function filterTabs(noteId) {
for (const tc of tabContexts) {
if (tc.notePath && !tc.notePath.split("/").includes(noteId)) {
await tabRow.removeTab(tc.tab);
}
2019-05-12 01:27:33 +08:00
}
if (tabContexts.length === 0) {
await loadNoteDetail(noteId, {
newTab: true,
activate: true
});
}
2019-05-12 01:27:33 +08:00
await saveOpenTabs();
}
function focusOnTitle() {
getActiveTabContext().$noteTitle.focus();
}
function focusAndSelectTitle() {
getActiveTabContext().$noteTitle.focus().select();
}
/**
* Since detail loading may take some time and user might just browse through the notes using UP-DOWN keys,
* we intentionally decouple activation of the note in the tree and full load of the note so just avaiting on
* fancytree's activate() won't wait for the full load.
*
* This causes an issue where in some cases you want to do some action after detail is loaded. For this reason
* we provide the listeners here which will be triggered after the detail is loaded and if the loaded note
* is the one registered in the listener.
*/
function addDetailLoadedListener(noteId, callback) {
detailLoadedListeners.push({ noteId, callback });
}
function fireDetailLoaded() {
for (const {noteId, callback} of detailLoadedListeners) {
2019-05-02 04:19:29 +08:00
if (noteId === getActiveNoteId()) {
callback();
}
}
// all the listeners are one time only
detailLoadedListeners = [];
}
messagingService.subscribeToSyncMessages(syncData => {
if (syncData.some(sync => sync.entityName === 'notes' && sync.entityId === getActiveNoteId())) {
infoService.showMessage('Reloading note because of background changes');
reload();
}
});
2019-05-09 01:55:24 +08:00
$tabContentsContainer.on("dragover", e => e.preventDefault());
2019-02-27 04:37:15 +08:00
2019-05-09 01:55:24 +08:00
$tabContentsContainer.on("dragleave", e => e.preventDefault());
2019-02-27 04:37:15 +08:00
2019-05-09 01:55:24 +08:00
$tabContentsContainer.on("drop", e => {
importDialog.uploadFiles(getActiveNoteId(), e.originalEvent.dataTransfer.files, {
2019-02-27 04:37:15 +08:00
safeImport: true,
shrinkImages: true,
textImportedAsText: true,
codeImportedAsCode: true,
explodeArchives: true
});
});
async function openEmptyTab() {
2019-05-12 18:58:55 +08:00
const ctx = new TabContext(tabRow);
tabContexts.push(ctx);
2019-05-12 23:28:20 +08:00
await renderComponent(ctx);
2019-05-12 18:58:55 +08:00
2019-05-15 04:29:47 +08:00
await tabRow.activateTab(ctx.$tab[0]);
2019-05-12 23:28:20 +08:00
}
tabRow.addListener('newTab', openEmptyTab);
2019-05-12 18:58:55 +08:00
tabRow.addListener('activeTabChange', async ({ detail }) => {
2019-05-05 16:59:34 +08:00
const tabId = detail.tabEl.getAttribute('data-tab-id');
await showTab(tabId);
2019-05-05 16:59:34 +08:00
console.log(`Activated tab ${tabId}`);
});
tabRow.addListener('tabRemove', async ({ detail }) => {
2019-05-12 18:58:55 +08:00
const tabId = detail.tabEl.getAttribute('data-tab-id');
2019-05-05 16:59:34 +08:00
2019-05-12 01:27:33 +08:00
const tabContentToDelete = tabContexts.find(nc => nc.tabId === tabId);
if (tabContentToDelete) {
await tabContentToDelete.saveNoteIfChanged();
2019-05-12 01:27:33 +08:00
tabContentToDelete.$tabContent.remove();
}
2019-05-09 01:55:24 +08:00
tabContexts = tabContexts.filter(nc => nc.tabId !== tabId);
2019-05-05 16:59:34 +08:00
console.log(`Removed tab ${tabId}`);
if (tabContexts.length === 0) {
openEmptyTab();
}
2019-05-05 16:59:34 +08:00
});
2019-05-12 01:44:58 +08:00
$(tabRow.el).on('contextmenu', '.note-tab', e => {
const tab = $(e.target).closest(".note-tab");
contextMenuService.initContextMenu(e, {
getContextMenuItems: () => {
return [
{title: "Close all tabs except for this", cmd: "removeAllTabsExceptForThis", uiIcon: "empty"}
];
},
selectContextMenuItem: (e, cmd) => {
if (cmd === 'removeAllTabsExceptForThis') {
2019-05-12 01:44:58 +08:00
tabRow.removeAllTabsExceptForThis(tab[0]);
}
}
});
});
2019-05-05 16:59:34 +08:00
if (utils.isElectron()) {
2019-05-12 23:28:20 +08:00
utils.bindShortcut('ctrl+t', () => {
openEmptyTab();
2019-05-12 23:28:20 +08:00
});
2019-05-05 16:59:34 +08:00
utils.bindShortcut('ctrl+w', () => {
2019-05-12 23:28:20 +08:00
if (tabRow.activeTabEl) {
tabRow.removeTab(tabRow.activeTabEl);
2019-05-05 16:59:34 +08:00
}
});
utils.bindShortcut('ctrl+tab', () => {
2019-05-12 01:44:58 +08:00
const nextTab = tabRow.nextTabEl;
if (nextTab) {
2019-05-15 04:29:47 +08:00
tabRow.activateTab(nextTab);
}
});
utils.bindShortcut('ctrl+shift+tab', () => {
2019-05-12 01:44:58 +08:00
const prevTab = tabRow.previousTabEl;
if (prevTab) {
2019-05-15 04:29:47 +08:00
tabRow.activateTab(prevTab);
}
});
2019-05-05 16:59:34 +08:00
}
2019-05-04 03:50:14 +08:00
tabRow.addListener('activeTabChange', openTabsChanged);
tabRow.addListener('tabRemove', openTabsChanged);
tabRow.addListener('tabReorder', openTabsChanged);
2019-05-11 03:43:40 +08:00
let tabsChangedTaskId = null;
function clearOpenTabsTask() {
if (tabsChangedTaskId) {
clearTimeout(tabsChangedTaskId);
}
}
function openTabsChanged() {
// we don't want to send too many requests with tab changes so we always schedule task to do this in 3 seconds,
// but if there's any change in between, we cancel the old one and schedule new one
// so effectively we kind of wait until user stopped e.g. quickly switching tabs
clearOpenTabsTask();
tabsChangedTaskId = setTimeout(saveOpenTabs, 3000);
}
async function saveOpenTabs() {
2019-05-12 01:44:58 +08:00
const activeTabEl = tabRow.activeTabEl;
2019-05-11 03:43:40 +08:00
const openTabs = [];
2019-05-12 01:44:58 +08:00
for (const tabEl of tabRow.tabEls) {
2019-05-12 18:58:55 +08:00
const tabId = tabEl.getAttribute('data-tab-id');
2019-05-11 03:43:40 +08:00
const tabContext = tabContexts.find(tc => tc.tabId === tabId);
2019-05-12 23:28:20 +08:00
if (tabContext && tabContext.notePath) {
2019-05-11 03:43:40 +08:00
openTabs.push({
2019-05-15 04:29:47 +08:00
tabId: tabContext.tabId,
2019-05-11 03:43:40 +08:00
notePath: tabContext.notePath,
active: activeTabEl === tabEl
});
}
}
await server.put('options', {
openTabs: JSON.stringify(openTabs)
});
}
// this makes sure that when user e.g. reloads the page or navigates away from the page, the note's content is saved
// this sends the request asynchronously and doesn't wait for result
2019-05-02 04:19:29 +08:00
$(window).on('beforeunload', () => { saveNotesIfChanged(); }); // don't convert to short form, handler doesn't like returned promise
2019-05-02 04:19:29 +08:00
setInterval(saveNotesIfChanged, 3000);
export default {
reload,
reloadAllTabs,
2019-05-03 04:24:43 +08:00
openInTab,
switchToNote,
loadNote,
loadNoteDetail,
getActiveNote,
getActiveNoteContent,
getActiveNoteType,
getActiveNoteId,
focusOnTitle,
focusAndSelectTitle,
2019-05-02 04:19:29 +08:00
saveNotesIfChanged,
onNoteChange,
addDetailLoadedListener,
2019-05-15 04:29:47 +08:00
getTabContext,
getTabContexts,
getActiveTabContext,
2019-05-15 04:29:47 +08:00
isActive,
activateTabContext,
2019-05-11 03:43:40 +08:00
getActiveComponent,
2019-05-12 01:27:33 +08:00
clearOpenTabsTask,
filterTabs
};