import utils from "./utils.js"; import dateNoteService from "./date_notes.js"; import protectedSessionHolder from './protected_session_holder.js'; import server from "./server.js"; import appContext from "./app_context.js"; import Component from "../widgets/component.js"; import toastService from "./toast.js"; import noteCreateService from "./note_create.js"; import ws from "./ws.js"; import bundleService from "./bundle.js"; export default class Entrypoints extends Component { constructor() { super(); if (jQuery.hotkeys) { // 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; } $(document).on('click', "a[data-action='note-revision']", async event => { const linkEl = $(event.target); const noteId = linkEl.attr('data-note-path'); const noteRevisionId = linkEl.attr('data-note-revision-id'); const attributesDialog = await import("../dialogs/note_revisions.js"); attributesDialog.showNoteRevisionsDialog(noteId, noteRevisionId); return false; }); } openDevToolsCommand() { if (utils.isElectron()) { utils.dynamicRequire('@electron/remote').getCurrentWindow().toggleDevTools(); } } findInTextCommand() { if (!utils.isElectron()) { return; } const remote = utils.dynamicRequire('@electron/remote'); const {FindInPage} = utils.dynamicRequire('electron-find'); const findInPage = new FindInPage(remote.getCurrentWebContents(), { offsetTop: 10, offsetRight: 10, boxBgColor: 'var(--main-background-color)', boxShadowColor: '#000', inputColor: 'var(--input-text-color)', inputBgColor: 'var(--input-background-color)', inputFocusColor: '#555', textColor: 'var(--main-text-color)', textHoverBgColor: '#555', caseSelectedColor: 'var(--main-border-color)' }); findInPage.openFindWindow(); } async createNoteIntoInboxCommand() { const inboxNote = await dateNoteService.getInboxNote(); const {note} = await server.post(`notes/${inboxNote.noteId}/children?target=into`, { title: 'new note', content: '', type: 'text', isProtected: inboxNote.isProtected && protectedSessionHolder.isProtectedSessionAvailable() }); await ws.waitForMaxKnownEntityChangeId(); const hoistedNoteId = appContext.tabManager.getActiveContext() ? appContext.tabManager.getActiveContext().hoistedNoteId : 'root'; await appContext.tabManager.openContextWithNote(note.noteId, true, null, hoistedNoteId); appContext.triggerEvent('focusAndSelectTitle', {isNewNote: true}); } async toggleNoteHoistingCommand() { const noteContext = appContext.tabManager.getActiveContext(); if (noteContext.note.noteId === noteContext.hoistedNoteId) { await noteContext.unhoist(); } else if (noteContext.note.type !== 'search') { await noteContext.setHoistedNoteId(noteContext.note.noteId); } } async hoistNoteCommand({noteId}) { const noteContext = appContext.tabManager.getActiveContext(); if (noteContext.hoistedNoteId !== noteId) { await noteContext.setHoistedNoteId(noteId); } } async unhoistCommand() { const activeNoteContext = appContext.tabManager.getActiveContext(); if (activeNoteContext) { activeNoteContext.unhoist(); } } copyWithoutFormattingCommand() { utils.copySelectionToClipboard(); } toggleFullscreenCommand() { if (utils.isElectron()) { const win = utils.dynamicRequire('@electron/remote').getCurrentWindow(); if (win.isFullScreenable()) { win.setFullScreen(!win.isFullScreen()); } } else { // outside of electron this is handled by the browser this.$widget.find(".toggle-fullscreen-button").hide(); } } reloadFrontendAppCommand() { utils.reloadFrontendApp(); } logoutCommand() { const $logoutForm = $('