2018-12-29 17:04:59 +08:00
|
|
|
import addLinkDialog from './dialogs/add_link.js';
|
|
|
|
import jumpToNoteDialog from './dialogs/jump_to_note.js';
|
|
|
|
import attributesDialog from './dialogs/attributes.js';
|
|
|
|
import noteRevisionsDialog from './dialogs/note_revisions.js';
|
|
|
|
import noteSourceDialog from './dialogs/note_source.js';
|
|
|
|
import recentChangesDialog from './dialogs/recent_changes.js';
|
|
|
|
import optionsDialog from './dialogs/options.js';
|
|
|
|
import sqlConsoleDialog from './dialogs/sql_console.js';
|
|
|
|
import markdownImportDialog from './dialogs/markdown_import.js';
|
|
|
|
import exportDialog from './dialogs/export.js';
|
2018-03-24 23:18:46 +08:00
|
|
|
|
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 exportService from './services/export.js';
|
|
|
|
import link from './services/link.js';
|
|
|
|
import messagingService from './services/messaging.js';
|
|
|
|
import noteDetailService from './services/note_detail.js';
|
|
|
|
import noteType from './services/note_type.js';
|
|
|
|
import protected_session from './services/protected_session.js';
|
|
|
|
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';
|
2018-03-24 23:18:46 +08:00
|
|
|
|
2018-03-26 08:18:08 +08:00
|
|
|
// required for CKEditor image upload plugin
|
|
|
|
window.glob.getCurrentNode = treeService.getCurrentNode;
|
|
|
|
window.glob.getHeaders = server.getHeaders;
|
2018-05-26 22:04:40 +08:00
|
|
|
window.glob.showAddLinkDialog = addLinkDialog.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
|
|
|
|
window.glob.getCurrentNote = noteDetailService.getCurrentNote;
|
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
|
|
|
|
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
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
messagingService.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(() => {
|
|
|
|
const $logoutForm = $('<form action="logout" method="POST">');
|
|
|
|
|
|
|
|
$("body").append($logoutForm);
|
|
|
|
$logoutForm.submit();
|
|
|
|
});
|
|
|
|
|
2018-12-16 03:29:08 +08:00
|
|
|
$("#tree").on("click", ".unhoist-button", hoistedNoteService.unhoist);
|
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
if (utils.isElectron()) {
|
|
|
|
require('electron').ipcRenderer.on('create-day-sub-note', async function(event, parentNoteId) {
|
|
|
|
// this might occur when day note had to be created
|
|
|
|
if (!await treeCache.getNote(parentNoteId)) {
|
|
|
|
await treeService.reload();
|
|
|
|
}
|
2018-03-26 07:49:33 +08:00
|
|
|
|
2018-08-23 18:55:45 +08:00
|
|
|
await treeService.activateNote(parentNoteId);
|
2018-03-24 23:18:46 +08:00
|
|
|
|
2018-10-16 05:45:37 +08:00
|
|
|
setTimeout(async () => {
|
|
|
|
const parentNode = treeService.getCurrentNode();
|
|
|
|
|
|
|
|
const {note} = await treeService.createNote(parentNode, parentNode.data.noteId, 'into', parentNode.data.isProtected);
|
|
|
|
|
|
|
|
await treeService.activateNote(note.noteId);
|
2018-03-24 23:18:46 +08:00
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
}, 500);
|
|
|
|
});
|
|
|
|
}
|
2018-03-26 10:37:02 +08:00
|
|
|
|
2018-11-24 21:44:56 +08:00
|
|
|
$("#export-note-button").click(function () {
|
2018-11-19 16:54:33 +08:00
|
|
|
if ($(this).hasClass("disabled")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-24 21:44:56 +08:00
|
|
|
exportDialog.showDialog('single');
|
2018-11-19 16:54:33 +08:00
|
|
|
});
|
2018-09-03 15:40:22 +08:00
|
|
|
|
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
|
|
|
|
2018-12-02 21:04:53 +08:00
|
|
|
bundle.executeStartupBundles();
|
2018-12-24 17:10:36 +08:00
|
|
|
|
|
|
|
noteTypeService.init();
|
|
|
|
|
|
|
|
linkService.init();
|
|
|
|
|
|
|
|
noteAutocompleteService.init();
|