2018-12-29 17:04:59 +08:00
|
|
|
import cloning from './services/cloning.js';
|
|
|
|
import contextMenu from './services/tree_context_menu.js';
|
|
|
|
import dragAndDropSetup from './services/drag_and_drop.js';
|
|
|
|
import link from './services/link.js';
|
2019-08-27 02:21:43 +08:00
|
|
|
import ws from './services/ws.js';
|
2018-12-29 17:04:59 +08:00
|
|
|
import noteDetailService from './services/note_detail.js';
|
|
|
|
import noteType from './services/note_type.js';
|
2019-03-14 04:53:09 +08:00
|
|
|
import protectedSessionService from './services/protected_session.js';
|
|
|
|
import protectedSessionHolder from './services/protected_session_holder.js';
|
2018-12-29 17:04:59 +08:00
|
|
|
import searchNotesService from './services/search_notes.js';
|
|
|
|
import FrontendScriptApi from './services/frontend_script_api.js';
|
|
|
|
import ScriptContext from './services/script_context.js';
|
|
|
|
import sync from './services/sync.js';
|
|
|
|
import treeService from './services/tree.js';
|
|
|
|
import treeChanges from './services/branches.js';
|
|
|
|
import treeUtils from './services/tree_utils.js';
|
|
|
|
import utils from './services/utils.js';
|
|
|
|
import server from './services/server.js';
|
|
|
|
import entrypoints from './services/entrypoints.js';
|
|
|
|
import noteTooltipService from './services/note_tooltip.js';
|
|
|
|
import bundle from "./services/bundle.js";
|
|
|
|
import treeCache from "./services/tree_cache.js";
|
|
|
|
import libraryLoader from "./services/library_loader.js";
|
|
|
|
import hoistedNoteService from './services/hoisted_note.js';
|
|
|
|
import noteTypeService from './services/note_type.js';
|
|
|
|
import linkService from './services/link.js';
|
|
|
|
import noteAutocompleteService from './services/note_autocomplete.js';
|
2019-01-10 05:08:24 +08:00
|
|
|
import macInit from './services/mac_init.js';
|
2019-01-28 00:01:37 +08:00
|
|
|
import cssLoader from './services/css_loader.js';
|
2019-04-14 18:18:52 +08:00
|
|
|
import dateNoteService from './services/date_notes.js';
|
2019-07-21 16:17:08 +08:00
|
|
|
import sidebarService from './services/sidebar.js';
|
2018-03-24 23:18:46 +08:00
|
|
|
|
2019-05-23 02:53:59 +08:00
|
|
|
window.glob.isDesktop = utils.isDesktop;
|
|
|
|
window.glob.isMobile = utils.isMobile;
|
|
|
|
|
2018-03-26 08:18:08 +08:00
|
|
|
// required for CKEditor image upload plugin
|
2019-03-21 05:28:54 +08:00
|
|
|
window.glob.getActiveNode = treeService.getActiveNode;
|
2018-03-26 08:18:08 +08:00
|
|
|
window.glob.getHeaders = server.getHeaders;
|
2019-08-21 03:40:47 +08:00
|
|
|
window.glob.showAddLinkDialog = () => import('./dialogs/add_link.js').then(d => d.showDialog());
|
2018-08-12 01:45:55 +08:00
|
|
|
// this is required by CKEditor when uploading images
|
|
|
|
window.glob.noteChanged = noteDetailService.noteChanged;
|
2018-11-08 18:08:16 +08:00
|
|
|
window.glob.refreshTree = treeService.reload;
|
2018-03-26 08:18:08 +08:00
|
|
|
|
|
|
|
// required for ESLint plugin
|
2019-03-15 03:21:27 +08:00
|
|
|
window.glob.getActiveNote = noteDetailService.getActiveNote;
|
2018-03-28 10:42:46 +08:00
|
|
|
window.glob.requireLibrary = libraryLoader.requireLibrary;
|
|
|
|
window.glob.ESLINT = libraryLoader.ESLINT;
|
2018-03-26 08:18:08 +08:00
|
|
|
|
2019-03-14 04:53:09 +08:00
|
|
|
protectedSessionHolder.setProtectedSessionId(null);
|
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
window.onerror = function (msg, url, lineNo, columnNo, error) {
|
|
|
|
const string = msg.toLowerCase();
|
2018-03-26 07:49:33 +08:00
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
let message = "Uncaught error: ";
|
2018-03-26 07:49:33 +08:00
|
|
|
|
2018-07-09 05:13:56 +08:00
|
|
|
if (string.includes("Cannot read property 'defaultView' of undefined")) {
|
|
|
|
// ignore this specific error which is very common but we don't know where it comes from
|
|
|
|
// and it seems to be harmless
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (string.includes("script error")) {
|
2018-03-27 10:29:14 +08:00
|
|
|
message += 'No details available';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
message += [
|
|
|
|
'Message: ' + msg,
|
|
|
|
'URL: ' + url,
|
|
|
|
'Line: ' + lineNo,
|
|
|
|
'Column: ' + columnNo,
|
|
|
|
'Error object: ' + JSON.stringify(error)
|
|
|
|
].join(' - ');
|
|
|
|
}
|
2018-03-26 07:49:33 +08:00
|
|
|
|
2019-08-27 02:21:43 +08:00
|
|
|
ws.logError(message);
|
2018-03-26 07:49:33 +08:00
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
return false;
|
|
|
|
};
|
2018-03-26 07:49:33 +08:00
|
|
|
|
2019-01-28 00:01:37 +08:00
|
|
|
for (const appCssNoteId of window.appCssNoteIds) {
|
2019-01-28 05:34:41 +08:00
|
|
|
cssLoader.requireCss(`/api/notes/download/${appCssNoteId}`);
|
2019-01-28 00:01:37 +08:00
|
|
|
}
|
|
|
|
|
2018-08-15 16:14:14 +08:00
|
|
|
const wikiBaseUrl = "https://github.com/zadam/trilium/wiki/";
|
|
|
|
|
|
|
|
$(document).on("click", "button[data-help-page]", e => {
|
|
|
|
const $button = $(e.target);
|
|
|
|
|
|
|
|
window.open(wikiBaseUrl + $button.attr("data-help-page"), '_blank');
|
|
|
|
});
|
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
$("#logout-button").toggle(!utils.isElectron());
|
2018-03-26 07:49:33 +08:00
|
|
|
|
2019-02-10 02:17:16 +08:00
|
|
|
$("#logout-button").click(() => {
|
2019-03-25 05:41:53 +08:00
|
|
|
const $logoutForm = $('<form action="logout" method="POST">')
|
|
|
|
.append($(`<input type="hidden" name="_csrf" value="${glob.csrfToken}"/>`));
|
2019-02-10 02:17:16 +08:00
|
|
|
|
|
|
|
$("body").append($logoutForm);
|
|
|
|
$logoutForm.submit();
|
|
|
|
});
|
|
|
|
|
2018-12-16 03:29:08 +08:00
|
|
|
$("#tree").on("click", ".unhoist-button", hoistedNoteService.unhoist);
|
|
|
|
|
2019-03-30 07:12:32 +08:00
|
|
|
$("#tree").on("click", ".refresh-search-button", searchNotesService.refreshSearch);
|
|
|
|
|
2019-02-10 19:19:48 +08:00
|
|
|
$("body").on("click", "a.external", function () {
|
|
|
|
window.open($(this).attr("href"), '_blank');
|
|
|
|
});
|
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
if (utils.isElectron()) {
|
2019-04-14 18:18:52 +08:00
|
|
|
require('electron').ipcRenderer.on('create-day-sub-note', async function(event) {
|
|
|
|
const todayNote = await dateNoteService.getTodayNote();
|
2019-05-20 00:21:29 +08:00
|
|
|
const notePath = await treeService.getSomeNotePath(todayNote);
|
|
|
|
|
|
|
|
const node = await treeService.expandToNote(notePath);
|
2019-04-14 18:18:52 +08:00
|
|
|
|
2019-05-19 16:46:19 +08:00
|
|
|
await noteDetailService.openEmptyTab(false);
|
|
|
|
|
2019-04-14 18:18:52 +08:00
|
|
|
await treeService.createNote(node, todayNote.noteId, 'into', {
|
|
|
|
type: "text",
|
|
|
|
isProtected: node.data.isProtected
|
|
|
|
});
|
2018-03-27 10:29:14 +08:00
|
|
|
});
|
|
|
|
}
|
2018-03-26 10:37:02 +08:00
|
|
|
|
2019-05-06 00:24:59 +08:00
|
|
|
const $noteTabContainer = $("#note-tab-container");
|
|
|
|
|
|
|
|
$noteTabContainer.on("click", ".export-note-button", function () {
|
2018-11-19 16:54:33 +08:00
|
|
|
if ($(this).hasClass("disabled")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-03 01:56:52 +08:00
|
|
|
import('./dialogs/export.js').then(d => d.showDialog(treeService.getActiveNode(), 'single'));
|
2018-11-19 16:54:33 +08:00
|
|
|
});
|
2018-09-03 15:40:22 +08:00
|
|
|
|
2019-09-03 01:56:52 +08:00
|
|
|
$noteTabContainer.on("click", ".import-files-button",
|
|
|
|
() => import('./dialogs/import.js').then(d => d.showDialog(treeService.getActiveNode())));
|
2019-05-06 00:24:59 +08:00
|
|
|
|
2019-06-30 04:57:47 +08:00
|
|
|
$noteTabContainer.on("click", ".print-note-button", async function () {
|
|
|
|
if ($(this).hasClass("disabled")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const $tabContext = noteDetailService.getActiveTabContext();
|
|
|
|
if (!$tabContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
await libraryLoader.requireLibrary(libraryLoader.PRINT_THIS);
|
|
|
|
|
|
|
|
$tabContext.$tabContent.find('.note-detail-component:visible').printThis({
|
|
|
|
header: $("<h2>").text($tabContext.note && $tabContext.note.title).prop('outerHTML') ,
|
|
|
|
importCSS: false,
|
|
|
|
loadCSS: "libraries/codemirror/codemirror.css",
|
|
|
|
debug: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2019-02-24 18:36:01 +08:00
|
|
|
$('[data-toggle="tooltip"]').tooltip({
|
|
|
|
html: true
|
|
|
|
});
|
|
|
|
|
2019-09-03 03:23:55 +08:00
|
|
|
// for CKEditor integration (button on block toolbar)
|
|
|
|
window.glob.importMarkdownInline = async () => {
|
|
|
|
const dialog = await import("./dialogs/markdown_import.js");
|
|
|
|
|
|
|
|
dialog.importMarkdownInline();
|
|
|
|
};
|
|
|
|
|
2019-01-10 05:08:24 +08:00
|
|
|
macInit.init();
|
|
|
|
|
2019-01-26 05:18:34 +08:00
|
|
|
searchNotesService.init(); // should be in front of treeService since that one manipulates address bar hash
|
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
treeService.showTree();
|
|
|
|
|
|
|
|
entrypoints.registerEntrypoints();
|
|
|
|
|
2018-12-23 03:57:09 +08:00
|
|
|
noteTooltipService.setupGlobalTooltip();
|
2018-03-27 10:29:14 +08:00
|
|
|
|
2019-05-01 04:31:12 +08:00
|
|
|
noteAutocompleteService.init();
|