2018-03-27 10:29:14 +08:00
|
|
|
import utils from "./utils.js";
|
|
|
|
import treeService from "./tree.js";
|
|
|
|
import linkService from "./link.js";
|
2018-03-28 10:11:06 +08:00
|
|
|
import fileService from "./file.js";
|
2018-06-03 01:02:20 +08:00
|
|
|
import zoomService from "./zoom.js";
|
2018-03-27 10:29:14 +08:00
|
|
|
import noteRevisionsDialog from "../dialogs/note_revisions.js";
|
2018-04-02 05:41:28 +08:00
|
|
|
import optionsDialog from "../dialogs/options.js";
|
2018-03-27 10:29:14 +08: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-05 07:48:02 +08:00
|
|
|
import searchNotesService from "./search_notes.js";
|
2018-03-27 10:29:14 +08:00
|
|
|
import labelsDialog from "../dialogs/labels.js";
|
2018-07-27 16:52:48 +08:00
|
|
|
import relationsDialog from "../dialogs/relations.js";
|
2018-06-01 08:00:39 +08:00
|
|
|
import protectedSessionService from "./protected_session.js";
|
2018-03-27 10:29:14 +08: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-06 11:28:10 +08:00
|
|
|
$("#jump-to-note-dialog-button").click(jumpToNoteDialog.showDialog);
|
2018-03-27 10:29:14 +08:00
|
|
|
utils.bindShortcut('ctrl+j', jumpToNoteDialog.showDialog);
|
|
|
|
|
|
|
|
$("#show-note-revisions-button").click(noteRevisionsDialog.showCurrentNoteRevisions);
|
|
|
|
|
|
|
|
$("#show-source-button").click(noteSourceDialog.showDialog);
|
|
|
|
|
|
|
|
$("#recent-changes-button").click(recentChangesDialog.showDialog);
|
|
|
|
|
2018-06-01 08:00:39 +08:00
|
|
|
$("#protected-session-on").click(protectedSessionService.enterProtectedSession);
|
|
|
|
$("#protected-session-off").click(protectedSessionService.leaveProtectedSession);
|
|
|
|
|
2018-06-05 07:48:02 +08:00
|
|
|
$("#toggle-search-button").click(searchNotesService.toggleSearch);
|
|
|
|
utils.bindShortcut('ctrl+s', searchNotesService.toggleSearch);
|
2018-03-27 10:29:14 +08:00
|
|
|
|
|
|
|
$(".show-labels-button").click(labelsDialog.showDialog);
|
|
|
|
utils.bindShortcut('alt+l', labelsDialog.showDialog);
|
|
|
|
|
2018-07-27 16:52:48 +08:00
|
|
|
$(".show-relations-button").click(relationsDialog.showDialog);
|
|
|
|
utils.bindShortcut('alt+r', relationsDialog.showDialog);
|
|
|
|
|
2018-04-02 05:41:28 +08:00
|
|
|
$("#options-button").click(optionsDialog.showDialog);
|
2018-03-27 10:29:14 +08:00
|
|
|
|
|
|
|
utils.bindShortcut('alt+o', sqlConsoleDialog.showDialog);
|
|
|
|
|
|
|
|
if (utils.isElectron()) {
|
2018-05-27 10:54:06 +08:00
|
|
|
$("#history-navigation").show();
|
|
|
|
$("#history-back-button").click(window.history.back);
|
|
|
|
$("#history-forward-button").click(window.history.forward);
|
|
|
|
|
2018-03-27 10:29:14 +08:00
|
|
|
utils.bindShortcut('alt+left', window.history.back);
|
|
|
|
utils.bindShortcut('alt+right', window.history.forward);
|
|
|
|
}
|
|
|
|
|
2018-06-10 22:53:39 +08:00
|
|
|
utils.bindShortcut('alt+m', e => {
|
|
|
|
$(".hide-toggle").toggle();
|
|
|
|
|
|
|
|
// when hiding switch display to block, otherwise grid still tries to display columns which shows
|
|
|
|
// left empty column
|
|
|
|
$("#container").css("display", $("#container").css("display") === "grid" ? "block" : "grid");
|
|
|
|
});
|
2018-03-27 10:29:14 +08: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()) {
|
|
|
|
const searchInPage = require('electron-in-page-search').default;
|
|
|
|
const remote = require('electron').remote;
|
|
|
|
|
|
|
|
const inPageSearch = searchInPage(remote.getCurrentWebContents());
|
|
|
|
|
|
|
|
inPageSearch.openSearchWindow();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-03-27 11:48:45 +08:00
|
|
|
// FIXME: do we really need these at this point?
|
2018-03-27 10:29:14 +08:00
|
|
|
utils.bindShortcut("ctrl+shift+up", () => {
|
|
|
|
const node = treeService.getCurrentNode();
|
|
|
|
node.navigate($.ui.keyCode.UP, true);
|
|
|
|
|
2018-03-27 11:48:45 +08:00
|
|
|
$("#note-detail-text").focus();
|
2018-03-27 10:29:14 +08:00
|
|
|
});
|
|
|
|
|
2018-03-27 11:48:45 +08:00
|
|
|
|
|
|
|
// FIXME: do we really need these at this point?
|
2018-03-27 10:29:14 +08:00
|
|
|
utils.bindShortcut("ctrl+shift+down", () => {
|
|
|
|
const node = treeService.getCurrentNode();
|
|
|
|
node.navigate($.ui.keyCode.DOWN, true);
|
|
|
|
|
2018-03-27 11:48:45 +08:00
|
|
|
$("#note-detail-text").focus();
|
2018-03-27 10:29:14 +08:00
|
|
|
});
|
|
|
|
|
2018-06-03 01:02:20 +08:00
|
|
|
if (utils.isElectron()) {
|
|
|
|
$(document).bind('keydown', 'ctrl+-', zoomService.decreaseZoomFactor);
|
|
|
|
$(document).bind('keydown', 'ctrl+=', zoomService.increaseZoomFactor);
|
|
|
|
}
|
2018-03-27 10:29:14 +08:00
|
|
|
|
2018-03-27 11:48:45 +08:00
|
|
|
$("#note-title").bind('keydown', 'return', () => $("#note-detail-text").focus());
|
2018-03-27 10:29:14 +08:00
|
|
|
|
2018-03-28 10:11:06 +08:00
|
|
|
$("#upload-file-button").click(fileService.uploadFile);
|
2018-03-27 10:29:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
registerEntrypoints
|
|
|
|
}
|