trilium/src/public/app/services/app_context.js

146 lines
3.9 KiB
JavaScript
Raw Normal View History

2020-01-16 04:36:01 +08:00
import treeCache from "./tree_cache.js";
2020-01-20 04:12:53 +08:00
import bundleService from "./bundle.js";
2020-02-15 17:41:21 +08:00
import DialogCommandExecutor from "./dialog_command_executor.js";
2020-01-22 05:54:16 +08:00
import Entrypoints from "./entrypoints.js";
import options from "./options.js";
2020-02-03 05:32:44 +08:00
import utils from "./utils.js";
import ZoomService from "./zoom.js";
import TabManager from "./tab_manager.js";
2020-02-10 04:13:05 +08:00
import treeService from "./tree.js";
2020-02-17 02:21:17 +08:00
import Component from "../widgets/component.js";
2020-02-17 03:09:59 +08:00
import keyboardActionsService from "./keyboard_actions.js";
2020-04-26 15:40:02 +08:00
import MobileScreenSwitcherExecutor from "../widgets/mobile_widgets/mobile_screen_switcher.js";
import MainTreeExecutors from "./main_tree_executors.js";
2020-02-17 02:21:17 +08:00
class AppContext extends Component {
2020-04-26 05:52:13 +08:00
constructor(isMainWindow) {
super();
this.isMainWindow = isMainWindow;
}
2020-03-01 17:41:23 +08:00
setLayout(layout) {
2020-02-07 04:47:31 +08:00
this.layout = layout;
2020-01-13 02:05:09 +08:00
}
2020-04-26 05:52:13 +08:00
async start() {
2020-03-17 04:16:09 +08:00
await Promise.all([treeCache.initializedPromise, options.initializedPromise]);
$("#loading-indicator").hide();
2020-03-30 05:10:45 +08:00
this.showWidgets();
2020-04-26 05:52:13 +08:00
this.tabManager.loadTabs();
2020-02-03 05:32:44 +08:00
if (utils.isDesktop()) {
setTimeout(() => bundleService.executeStartupBundles(), 2000);
}
2020-02-03 05:04:28 +08:00
}
2020-01-13 02:05:09 +08:00
2020-02-03 05:04:28 +08:00
showWidgets() {
2020-02-17 02:21:17 +08:00
const rootWidget = this.layout.getRootWidget(this);
const $renderedWidget = rootWidget.render();
2020-02-17 03:09:59 +08:00
keyboardActionsService.updateDisplayedShortcuts($renderedWidget);
2020-02-10 05:31:52 +08:00
$("body").append($renderedWidget);
2020-02-29 21:32:26 +08:00
$renderedWidget.on('click', "[data-trigger-command]", e => {
const commandName = $(e.target).attr('data-trigger-command');
2020-02-10 05:31:52 +08:00
2020-02-29 21:32:26 +08:00
this.triggerCommand(commandName);
2020-02-10 05:31:52 +08:00
});
2020-02-27 17:03:14 +08:00
this.tabManager = new TabManager();
2020-02-15 17:41:21 +08:00
this.executors = [
this.tabManager,
2020-02-27 17:03:14 +08:00
new DialogCommandExecutor(),
new Entrypoints(),
new MainTreeExecutors()
2020-01-14 04:48:44 +08:00
];
2020-03-01 22:19:16 +08:00
if (utils.isMobile()) {
this.executors.push(new MobileScreenSwitcherExecutor());
}
2020-02-27 17:03:14 +08:00
this.child(rootWidget);
for (const executor of this.executors) {
this.child(executor);
}
2020-02-18 05:38:46 +08:00
if (utils.isElectron()) {
2020-02-27 17:03:14 +08:00
this.child(new ZoomService());
}
2020-02-17 02:21:17 +08:00
this.triggerEvent('initialRenderComplete');
}
/** @return {Promise} */
triggerEvent(name, data) {
return this.handleEvent(name, data);
}
2020-02-15 17:41:21 +08:00
/** @return {Promise} */
triggerCommand(name, data = {}) {
2020-02-15 17:41:21 +08:00
for (const executor of this.executors) {
const fun = executor[name + "Command"];
2020-02-15 17:41:21 +08:00
if (fun) {
return executor.callMethod(fun, data);
2020-02-15 17:41:21 +08:00
}
}
2020-02-18 05:38:46 +08:00
console.debug(`Unhandled command ${name}, converting to event.`);
return this.triggerEvent(name, data);
2020-02-15 17:41:21 +08:00
}
2020-02-17 02:21:17 +08:00
getComponentByEl(el) {
return $(el).closest(".component").prop('component');
}
2020-02-15 17:41:21 +08:00
2020-04-24 05:08:15 +08:00
async openInNewWindow(notePath) {
if (utils.isElectron()) {
const {ipcRenderer} = utils.dynamicRequire('electron');
ipcRenderer.send('create-extra-window', {notePath});
}
else {
const url = 'http://127.0.0.1:37740/#' + notePath;
window.open(url);
}
}
2020-01-13 02:05:09 +08:00
}
2020-04-26 05:52:13 +08:00
const appContext = new AppContext(window.glob.isMainWindow);
2020-02-02 17:41:43 +08:00
// we should save all outstanding changes before the page/app is closed
$(window).on('beforeunload', () => {
2020-02-17 02:21:17 +08:00
appContext.triggerEvent('beforeUnload');
2020-02-02 17:41:43 +08:00
});
function isNotePathInAddress() {
2020-02-29 20:03:05 +08:00
const [notePath, tabId] = treeService.getHashValueFromAddress();
return notePath.startsWith("root")
// empty string is for empty/uninitialized tab
|| (notePath === '' && !!tabId);
}
$(window).on('hashchange', function() {
if (isNotePathInAddress()) {
2020-02-10 04:13:05 +08:00
const [notePath, tabId] = treeService.getHashValueFromAddress();
if (!notePath) {
console.log(`Invalid hash value "${document.location.hash}", ignoring.`);
return;
}
2020-02-09 03:53:07 +08:00
appContext.tabManager.switchToTab(tabId, notePath);
}
});
2020-01-12 16:57:28 +08:00
export default appContext;