trilium/src/public/javascripts/init.js

238 lines
5.9 KiB
JavaScript
Raw Normal View History

"use strict";
// hot keys are active also inside inputs and content editables
2017-12-19 12:41:13 +08:00
jQuery.hotkeys.options.filterInputAcceptingElements = false;
jQuery.hotkeys.options.filterContentEditable = false;
jQuery.hotkeys.options.filterTextInputs = false;
2017-12-19 12:41:13 +08:00
$(document).bind('keydown', 'alt+m', e => {
$(".hide-toggle").toggleClass("suppressed");
2017-12-19 12:41:13 +08:00
e.preventDefault();
});
2017-08-23 10:40:54 +08:00
// hide (toggle) everything except for the note content for distraction free writing
2017-12-19 12:41:13 +08:00
$(document).bind('keydown', 'alt+t', e => {
2017-08-30 11:27:28 +08:00
const date = new Date();
2017-09-27 11:23:03 +08:00
const dateString = formatDateTime(date);
2017-08-30 11:27:28 +08:00
2017-12-10 03:17:03 +08:00
link.addTextToEditor(dateString);
2017-12-19 12:41:13 +08:00
e.preventDefault();
2017-09-04 09:34:30 +08:00
});
$(document).bind('keydown', 'f5', () => {
reloadApp();
2017-11-21 12:10:04 +08:00
return false;
});
$(document).bind('keydown', 'ctrl+r', () => {
reloadApp();
return false;
});
$(document).bind('keydown', 'ctrl+shift+i', () => {
if (isElectron()) {
2017-11-21 12:10:04 +08:00
require('electron').remote.getCurrentWindow().toggleDevTools();
return false;
}
});
$(document).bind('keydown', 'ctrl+f', () => {
if (isElectron()) {
const searchInPage = require('electron-in-page-search').default;
const remote = require('electron').remote;
const inPageSearch = searchInPage(remote.getCurrentWebContents());
inPageSearch.openSearchWindow();
return false;
}
});
$(document).bind('keydown', "ctrl+shift+up", () => {
const node = noteTree.getCurrentNode();
node.navigate($.ui.keyCode.UP, true);
$("#note-detail").focus();
return false;
});
$(document).bind('keydown', "ctrl+shift+down", () => {
const node = noteTree.getCurrentNode();
node.navigate($.ui.keyCode.DOWN, true);
$("#note-detail").focus();
return false;
});
$(document).bind('keydown', 'ctrl+-', () => {
if (isElectron()) {
const webFrame = require('electron').webFrame;
if (webFrame.getZoomFactor() > 0.2) {
webFrame.setZoomFactor(webFrame.getZoomFactor() - 0.1);
}
return false;
}
});
$(document).bind('keydown', 'ctrl+=', () => {
if (isElectron()) {
const webFrame = require('electron').webFrame;
webFrame.setZoomFactor(webFrame.getZoomFactor() + 0.1);
return false;
}
});
$("#note-title").bind('keydown', 'return', () => $("#note-detail").focus());
$(window).on('beforeunload', () => {
// 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
2017-11-05 05:54:27 +08:00
noteEditor.saveNoteIfChanged();
2017-09-10 23:50:17 +08:00
});
// Overrides the default autocomplete filter function to search for matched on atleast 1 word in each of the input term's words
$.ui.autocomplete.filter = (array, terms) => {
if (!terms) {
return array;
}
const startDate = new Date();
const results = [];
const tokens = terms.toLowerCase().split(" ");
for (const item of array) {
let found = true;
2017-11-20 08:39:39 +08:00
const lcLabel = item.label.toLowerCase();
for (const token of tokens) {
2017-11-20 08:39:39 +08:00
if (lcLabel.indexOf(token) === -1) {
found = false;
break;
}
}
if (found) {
results.push(item);
if (results.length > 100) {
break;
}
}
}
console.log("Search took " + (new Date().getTime() - startDate.getTime()) + "ms");
return results;
2017-10-12 08:37:27 +08:00
};
$(document).tooltip({
2017-12-03 02:54:16 +08:00
items: "#note-detail a",
2017-10-12 08:37:27 +08:00
content: function(callback) {
2017-12-18 06:37:19 +08:00
const notePath = link.getNotePathFromLink($(this).attr("href"));
if (notePath !== null) {
const noteId = treeUtils.getNoteIdFromNotePath(notePath);
2017-10-12 08:37:27 +08:00
2018-01-29 08:30:14 +08:00
noteEditor.loadNote(noteId).then(note => callback(note.detail.content));
2017-10-12 08:37:27 +08:00
}
},
close: function(event, ui)
{
ui.tooltip.hover(function()
{
$(this).stop(true).fadeTo(400, 1);
},
function()
{
$(this).fadeOut('400', function()
{
$(this).remove();
});
});
}
2017-10-21 11:43:20 +08:00
});
2017-12-02 11:28:22 +08:00
window.onerror = function (msg, url, lineNo, columnNo, error) {
const string = msg.toLowerCase();
let message = "Uncaught error: ";
if (string.indexOf("script error") > -1){
message += 'No details available';
}
else {
message += [
'Message: ' + msg,
'URL: ' + url,
'Line: ' + lineNo,
'Column: ' + columnNo,
'Error object: ' + JSON.stringify(error)
].join(' - ');
}
messaging.logError(message);
return false;
};
$("#logout-button").toggle(!isElectron());
$(document).ready(() => {
server.get("script/startup").then(scripts => {
for (const script of scripts) {
executeScript(script);
}
});
});
if (isElectron()) {
require('electron').ipcRenderer.on('create-day-sub-note', async function(event, parentNoteId) {
// this might occur when day note had to be created
if (!noteTree.noteExists(parentNoteId)) {
await noteTree.reload();
}
await noteTree.activateNode(parentNoteId);
setTimeout(() => {
const node = noteTree.getCurrentNode();
noteTree.createNote(node, node.data.noteId, 'into', node.data.isProtected);
}, 500);
});
2018-02-15 12:31:20 +08:00
}
function uploadAttachment() {
$("#file-upload").trigger('click');
}
$("#file-upload").change(async function() {
const formData = new FormData();
formData.append('upload', this.files[0]);
const resp = await $.ajax({
url: baseApiUrl + 'attachments/upload/' + noteEditor.getCurrentNoteId(),
headers: server.getHeaders(),
data: formData,
type: 'POST',
contentType: false, // NEEDED, DON'T OMIT THIS
processData: false, // NEEDED, DON'T OMIT THIS
});
await noteTree.reload();
await noteTree.activateNode(resp.noteId);
});