trilium/public/javascripts/init.js

132 lines
3.4 KiB
JavaScript
Raw Normal View History

"use strict";
const glob = {
2017-11-05 05:03:15 +08:00
activeDialog: null
};
// hot keys are active also inside inputs and content editables
jQuery.hotkeys.options.filterInputAcceptingElements = true;
jQuery.hotkeys.options.filterContentEditable = true;
$(document).bind('keydown', 'alt+m', () => {
const toggle = $(".hide-toggle");
const hidden = toggle.css('visibility') === 'hidden';
toggle.css('visibility', hidden ? 'visible' : 'hidden');
});
2017-08-23 10:40:54 +08:00
// hide (toggle) everything except for the note content for distraction free writing
$(document).bind('keydown', 'alt+t', () => {
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
$('#note-detail').summernote('insertText', dateString);
2017-09-04 09:34:30 +08:00
});
$(document).bind('keydown', 'f5', () => {
2017-11-21 12:10:04 +08:00
window.location.reload(true);
return false;
});
$(document).bind('keydown', 'ctrl+r', () => {
window.location.reload(true);
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;
}
});
$(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 [];
}
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);
}
}
console.log("Search took " + (new Date().getTime() - startDate.getTime()) + "ms");
return results;
2017-10-12 08:37:27 +08:00
};
$(document).tooltip({
items: ".note-editable a",
content: function(callback) {
2017-11-20 09:36:13 +08:00
const noteId = link.getNotePathFromLink($(this).attr("href"));
2017-10-12 08:37:27 +08:00
if (noteId !== null) {
2017-11-05 05:54:27 +08:00
noteEditor.loadNote(noteId).then(note => callback(note.detail.note_text));
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
});
function isElectron() {
return window && window.process && window.process.type;
}
let appShown = false;
function showAppIfHidden() {
if (!appShown) {
appShown = true;
$("#container").show();
// Get a reference to the loader's div
const loaderDiv = document.getElementById("loader-wrapper");
// When the transition ends remove loader's div from display
// so that we can access the map with gestures or clicks
loaderDiv.addEventListener("transitionend", function(){
loaderDiv.style.display = "none";
}, true);
// Kick off the CSS transition
loaderDiv.style.opacity = 0.0;
}
}