trilium/src/public/javascripts/widgets/note_title.js
2020-02-28 00:11:34 +01:00

84 lines
2.2 KiB
JavaScript

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 = `
<div class="note-title-container">
<style>
.note-title-container {
flex-grow: 100;
}
.note-title-container input.note-title {
font-size: 150%;
border: 0;
min-width: 5em;
width: 100%;
}
</style>
<input autocomplete="off" value="" class="note-title" tabindex="1">
</div>`;
export default class NoteTitleWidget extends TabAwareWidget {
constructor() {
super();
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.triggerCommand('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');
}
}
focusAndSelectTitleCommand() {
if (this.tabContext && this.tabContext.isActive()) {
this.$noteTitle
.trigger('focus')
.trigger('select');
}
}
beforeUnloadEvent() {
this.spacedUpdate.updateNowIfNecessary();
}
}