mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 05:35:56 +08:00
77 lines
No EOL
2.1 KiB
JavaScript
77 lines
No EOL
2.1 KiB
JavaScript
import TabAwareWidget from "./tab_aware_widget.js";
|
|
import utils from "../services/utils.js";
|
|
import protectedSessionHolder from "../services/protected_session_holder.js";
|
|
import treeCache from "../services/tree_cache.js";
|
|
|
|
const TPL = `
|
|
<div class="note-title-container">
|
|
<style>
|
|
.note-title-container {
|
|
flex-grow: 100;
|
|
}
|
|
|
|
.note-title-container input.note-title {
|
|
margin-left: 15px;
|
|
margin-right: 10px;
|
|
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 {
|
|
doRender() {
|
|
this.$widget = $(TPL);
|
|
this.$noteTitle = this.$widget.find(".note-title");
|
|
|
|
this.$noteTitle.on('input', () => this.titleChanged());
|
|
|
|
utils.bindElShortcut(this.$noteTitle, 'return', () => {
|
|
this.trigger('focusOnDetail', {tabId: this.tabContext.tabId});
|
|
});
|
|
|
|
return this.$widget;
|
|
}
|
|
|
|
async titleChanged() {
|
|
const {note} = this.tabContext;
|
|
|
|
if (!note) {
|
|
return;
|
|
}
|
|
|
|
note.title = this.$noteTitle.val();
|
|
|
|
const noteFromCache = await treeCache.getNote(note.noteId);
|
|
noteFromCache.title = note.title;
|
|
|
|
this.trigger(`noteTitleChanged`, {
|
|
tabId: this.tabContext.tabId, // used to identify that the event comes from this tab so we should not update this tab's input
|
|
title: note.title,
|
|
noteId: note.noteId
|
|
});
|
|
}
|
|
|
|
noteTitleChangedListener({tabId, title, noteId}) {
|
|
if (tabId === this.tabContext.tabId
|
|
|| !this.tabContext.note
|
|
|| this.tabContext.note.noteId !== noteId) {
|
|
|
|
return;
|
|
}
|
|
|
|
this.$noteTitle.val(title);
|
|
}
|
|
|
|
async refreshWithNote(note) {
|
|
this.$noteTitle.val(note.title);
|
|
|
|
if (note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable()) {
|
|
this.$noteTitle.prop("readonly", true);
|
|
}
|
|
}
|
|
} |