2018-03-26 22:29:14 -04:00
|
|
|
import utils from "./utils.js";
|
|
|
|
import treeService from "./tree.js";
|
|
|
|
import linkService from "./link.js";
|
2018-03-27 22:11:06 -04:00
|
|
|
import fileService from "./file.js";
|
2018-06-02 13:02:20 -04:00
|
|
|
import zoomService from "./zoom.js";
|
2018-03-26 22:29:14 -04:00
|
|
|
import noteRevisionsDialog from "../dialogs/note_revisions.js";
|
2018-04-01 17:41:28 -04:00
|
|
|
import optionsDialog from "../dialogs/options.js";
|
2018-03-26 22:29:14 -04:00
|
|
|
import addLinkDialog from "../dialogs/add_link.js";
|
|
|
|
import jumpToNoteDialog from "../dialogs/jump_to_note.js";
|
|
|
|
import noteSourceDialog from "../dialogs/note_source.js";
|
|
|
|
import recentChangesDialog from "../dialogs/recent_changes.js";
|
|
|
|
import sqlConsoleDialog from "../dialogs/sql_console.js";
|
2018-06-04 19:48:02 -04:00
|
|
|
import searchNotesService from "./search_notes.js";
|
2018-08-03 11:11:57 +02:00
|
|
|
import attributesDialog from "../dialogs/attributes.js";
|
2018-05-31 20:00:39 -04:00
|
|
|
import protectedSessionService from "./protected_session.js";
|
2018-03-26 22:29:14 -04:00
|
|
|
|
|
|
|
function registerEntrypoints() {
|
|
|
|
// hot keys are active also inside inputs and content editables
|
|
|
|
jQuery.hotkeys.options.filterInputAcceptingElements = false;
|
|
|
|
jQuery.hotkeys.options.filterContentEditable = false;
|
|
|
|
jQuery.hotkeys.options.filterTextInputs = false;
|
|
|
|
|
|
|
|
utils.bindShortcut('ctrl+l', addLinkDialog.showDialog);
|
|
|
|
|
2018-06-05 23:28:10 -04:00
|
|
|
$("#jump-to-note-dialog-button").click(jumpToNoteDialog.showDialog);
|
2018-03-26 22:29:14 -04:00
|
|
|
utils.bindShortcut('ctrl+j', jumpToNoteDialog.showDialog);
|
|
|
|
|
2018-11-19 09:54:33 +01:00
|
|
|
$("#show-note-revisions-button").click(function() {
|
|
|
|
if ($(this).hasClass("disabled")) {
|
|
|
|
return;
|
|
|
|
}
|
2018-03-26 22:29:14 -04:00
|
|
|
|
2018-11-19 09:54:33 +01:00
|
|
|
noteRevisionsDialog.showCurrentNoteRevisions();
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#show-source-button").click(function() {
|
|
|
|
if ($(this).hasClass("disabled")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
noteSourceDialog.showDialog();
|
|
|
|
});
|
2018-03-26 22:29:14 -04:00
|
|
|
|
|
|
|
$("#recent-changes-button").click(recentChangesDialog.showDialog);
|
|
|
|
|
2018-11-25 14:12:33 +01:00
|
|
|
$("#enter-protected-session-button").click(protectedSessionService.enterProtectedSession);
|
|
|
|
$("#leave-protected-session-button").click(protectedSessionService.leaveProtectedSession);
|
2018-05-31 20:00:39 -04:00
|
|
|
|
2018-06-04 19:48:02 -04:00
|
|
|
$("#toggle-search-button").click(searchNotesService.toggleSearch);
|
|
|
|
utils.bindShortcut('ctrl+s', searchNotesService.toggleSearch);
|
2018-03-26 22:29:14 -04:00
|
|
|
|
2018-08-03 11:11:57 +02:00
|
|
|
$(".show-attributes-button").click(attributesDialog.showDialog);
|
|
|
|
utils.bindShortcut('alt+a', attributesDialog.showDialog);
|
|
|
|
|
2018-04-01 17:41:28 -04:00
|
|
|
$("#options-button").click(optionsDialog.showDialog);
|
2018-03-26 22:29:14 -04:00
|
|
|
|
|
|
|
utils.bindShortcut('alt+o', sqlConsoleDialog.showDialog);
|
|
|
|
|
|
|
|
if (utils.isElectron()) {
|
2018-05-26 22:54:06 -04:00
|
|
|
$("#history-navigation").show();
|
|
|
|
$("#history-back-button").click(window.history.back);
|
|
|
|
$("#history-forward-button").click(window.history.forward);
|
|
|
|
|
2018-03-26 22:29:14 -04:00
|
|
|
utils.bindShortcut('alt+left', window.history.back);
|
|
|
|
utils.bindShortcut('alt+right', window.history.forward);
|
|
|
|
}
|
|
|
|
|
2018-06-10 10:53:39 -04:00
|
|
|
utils.bindShortcut('alt+m', e => {
|
|
|
|
$(".hide-toggle").toggle();
|
|
|
|
|
2018-11-14 13:37:45 +01:00
|
|
|
const $container = $("#container");
|
2018-06-10 10:53:39 -04:00
|
|
|
// when hiding switch display to block, otherwise grid still tries to display columns which shows
|
|
|
|
// left empty column
|
2018-11-14 13:37:45 +01:00
|
|
|
$container.css("display", $container.css("display") === "grid" ? "block" : "grid");
|
2018-11-14 13:42:50 +01:00
|
|
|
$container.toggleClass("distraction-free-mode");
|
2018-06-10 10:53:39 -04:00
|
|
|
});
|
2018-03-26 22:29:14 -04:00
|
|
|
|
|
|
|
// hide (toggle) everything except for the note content for distraction free writing
|
|
|
|
utils.bindShortcut('alt+t', e => {
|
|
|
|
const date = new Date();
|
|
|
|
const dateString = utils.formatDateTime(date);
|
|
|
|
|
|
|
|
linkService.addTextToEditor(dateString);
|
|
|
|
});
|
|
|
|
|
|
|
|
utils.bindShortcut('f5', utils.reloadApp);
|
|
|
|
|
|
|
|
utils.bindShortcut('ctrl+r', utils.reloadApp);
|
|
|
|
|
|
|
|
$(document).bind('keydown', 'ctrl+shift+i', () => {
|
|
|
|
if (utils.isElectron()) {
|
|
|
|
require('electron').remote.getCurrentWindow().toggleDevTools();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).bind('keydown', 'ctrl+f', () => {
|
|
|
|
if (utils.isElectron()) {
|
2018-11-21 23:39:19 +01:00
|
|
|
const $searchWindowWebview = $(".electron-in-page-search-window");
|
|
|
|
$searchWindowWebview.show();
|
|
|
|
|
|
|
|
const searchInPage = require('electron-in-page-search').default;
|
|
|
|
const {remote} = require('electron');
|
|
|
|
|
|
|
|
const inPageSearch = searchInPage(remote.getCurrentWebContents(), {
|
|
|
|
searchWindowWebview: $searchWindowWebview[0],
|
|
|
|
//openDevToolsOfSearchWindow: true,
|
|
|
|
customCssPath: '/libraries/electron-in-page-search/default-style.css'
|
|
|
|
});
|
|
|
|
|
|
|
|
inPageSearch.openSearchWindow();
|
2018-03-26 22:29:14 -04:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-03-26 23:48:45 -04:00
|
|
|
// FIXME: do we really need these at this point?
|
2018-03-26 22:29:14 -04:00
|
|
|
utils.bindShortcut("ctrl+shift+up", () => {
|
|
|
|
const node = treeService.getCurrentNode();
|
|
|
|
node.navigate($.ui.keyCode.UP, true);
|
|
|
|
|
2018-03-26 23:48:45 -04:00
|
|
|
$("#note-detail-text").focus();
|
2018-03-26 22:29:14 -04:00
|
|
|
});
|
|
|
|
|
2018-03-26 23:48:45 -04:00
|
|
|
|
|
|
|
// FIXME: do we really need these at this point?
|
2018-03-26 22:29:14 -04:00
|
|
|
utils.bindShortcut("ctrl+shift+down", () => {
|
|
|
|
const node = treeService.getCurrentNode();
|
|
|
|
node.navigate($.ui.keyCode.DOWN, true);
|
|
|
|
|
2018-03-26 23:48:45 -04:00
|
|
|
$("#note-detail-text").focus();
|
2018-03-26 22:29:14 -04:00
|
|
|
});
|
|
|
|
|
2018-06-02 13:02:20 -04:00
|
|
|
if (utils.isElectron()) {
|
|
|
|
$(document).bind('keydown', 'ctrl+-', zoomService.decreaseZoomFactor);
|
|
|
|
$(document).bind('keydown', 'ctrl+=', zoomService.increaseZoomFactor);
|
|
|
|
}
|
2018-03-26 22:29:14 -04:00
|
|
|
|
2018-03-26 23:48:45 -04:00
|
|
|
$("#note-title").bind('keydown', 'return', () => $("#note-detail-text").focus());
|
2018-03-26 22:29:14 -04:00
|
|
|
|
2018-03-27 22:11:06 -04:00
|
|
|
$("#upload-file-button").click(fileService.uploadFile);
|
2018-03-26 22:29:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
registerEntrypoints
|
|
|
|
}
|