import TabAwareWidget from "./tab_aware_widget.js"; import utils from "../services/utils.js"; import protectedSessionHolder from "../services/protected_session_holder.js"; import server from "../services/server.js"; import SpacedUpdate from "../services/spaced_update.js"; const TPL = `
`; export default class NoteTitleWidget extends TabAwareWidget { constructor(appContext, parent) { super(appContext, parent); this.spacedUpdate = new SpacedUpdate(async () => { const title = this.$noteTitle.val(); await server.put(`notes/${this.noteId}/change-title`, {title}); }); } doRender() { this.$widget = $(TPL); this.$noteTitle = this.$widget.find(".note-title"); this.$noteTitle.on('input', () => this.spacedUpdate.scheduleUpdate()); utils.bindElShortcut(this.$noteTitle, 'return', () => { this.triggerEvent('focusOnDetail', {tabId: this.tabContext.tabId}); }); return this.$widget; } async refreshWithNote(note) { this.$noteTitle.val(note.title); this.$noteTitle.prop("readonly", note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable()); } async beforeNoteSwitchEvent({tabId}) { if (this.isTab(tabId)) { await this.spacedUpdate.updateNowIfNecessary(); } } async beforeTabRemoveEvent({tabId}) { if (this.isTab(tabId)) { await this.spacedUpdate.updateNowIfNecessary(); } } focusOnTitleEvent() { if (this.tabContext && this.tabContext.isActive()) { this.$noteTitle.trigger('focus'); } } focusAndSelectTitleEvent() { if (this.tabContext && this.tabContext.isActive()) { this.$noteTitle .trigger('focus') .trigger('select'); } } beforeUnloadEvent() { this.spacedUpdate.updateNowIfNecessary(); } }