import TabAwareWidget from "./tab_aware_widget.js"; import treeService from "../services/tree.js"; import utils from "../services/utils.js"; import protectedSessionService from "../services/protected_session.js"; import treeUtils from "../services/tree_utils.js"; import linkService from "../services/link.js"; import protectedSessionHolder from "../services/protected_session_holder.js"; import NoteTypeWidget from "./note_type.js"; import NotePathsWidget from "./note_paths.js"; const TPL = `
   
`; export default class NoteTitleWidget extends TabAwareWidget { doRender() { this.$widget = $(TPL); this.$noteTitle = this.$widget.find(".note-title"); this.$protectButton = this.$widget.find(".protect-button"); this.$protectButton.on('click', protectedSessionService.protectNoteAndSendToServer); this.$unprotectButton = this.$widget.find(".unprotect-button"); this.$unprotectButton.on('click', protectedSessionService.unprotectNoteAndSendToServer); this.$savedIndicator = this.$widget.find(".saved-indicator"); this.noteType = new NoteTypeWidget(this.appContext); this.$widget.find('.note-type-actions').prepend(this.noteType.render()); this.notePaths = new NotePathsWidget(this.appContext); this.$widget.prepend(this.notePaths.render()); this.children.push(this.noteType, this.notePaths); this.$noteTitle.on('input', () => { if (!this.note) { return; } // FIXME event not used this.trigger(`activeNoteChanged`); this.note.title = this.$noteTitle.val(); this.tabRow.updateTab(this.$tab[0], {title: this.note.title}); treeService.setNoteTitle(this.note.noteId, this.note.title); this.setTitleBar(); }); if (utils.isDesktop()) { // keyboard plugin is not loaded in mobile utils.bindElShortcut(this.$noteTitle, 'return', () => { this.getComponent().focus(); return false; // to not propagate the enter into the editor (causes issues with codemirror) }); } return this.$widget; } async refresh() { const note = this.tabContext.note; this.$noteTitle.val(note.title); if (note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable()) { this.$noteTitle.prop("readonly", true); } this.$protectButton.toggleClass("active", note.isProtected); this.$protectButton.prop("disabled", note.isProtected); this.$unprotectButton.toggleClass("active", !note.isProtected); this.$unprotectButton.prop("disabled", !note.isProtected || !protectedSessionHolder.isProtectedSessionAvailable()); } noteSavedListener() { this.$savedIndicator.fadeIn(); } }