2020-01-13 02:05:09 +08:00
|
|
|
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";
|
2020-01-19 02:46:30 +08:00
|
|
|
import NotePathsWidget from "./note_paths.js";
|
2020-01-19 20:19:40 +08:00
|
|
|
import NoteActionsWidget from "./note_actions.js";
|
|
|
|
import ProtectedNoteSwitchWidget from "./protected_note_switch.js";
|
|
|
|
import RunScriptButtonsWidget from "./run_script_buttons.js";
|
2020-01-13 02:05:09 +08:00
|
|
|
|
|
|
|
const TPL = `
|
|
|
|
<div class="note-title-row">
|
2020-01-15 03:27:40 +08:00
|
|
|
<style>
|
|
|
|
.note-title-row {
|
2020-01-19 20:19:40 +08:00
|
|
|
display: flex;
|
2020-01-15 03:27:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.note-title {
|
|
|
|
margin-left: 15px;
|
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 150%;
|
|
|
|
border: 0;
|
|
|
|
width: 5em;
|
|
|
|
flex-grow: 100;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2020-01-19 02:46:30 +08:00
|
|
|
<input autocomplete="off" value="" class="note-title" tabindex="1">
|
2020-01-13 02:05:09 +08:00
|
|
|
</div>`;
|
|
|
|
|
|
|
|
export default class NoteTitleWidget extends TabAwareWidget {
|
2020-01-13 03:15:05 +08:00
|
|
|
doRender() {
|
2020-01-15 03:27:40 +08:00
|
|
|
this.$widget = $(TPL);
|
2020-01-13 02:05:09 +08:00
|
|
|
|
2020-01-15 03:27:40 +08:00
|
|
|
this.$noteTitle = this.$widget.find(".note-title");
|
2020-01-13 02:05:09 +08:00
|
|
|
|
2020-01-19 20:19:40 +08:00
|
|
|
this.$savedIndicator = this.$widget.find(".saved-indicator");
|
2020-01-13 02:05:09 +08:00
|
|
|
|
2020-01-19 20:19:40 +08:00
|
|
|
this.runScriptButtons = new RunScriptButtonsWidget(this.appContext);
|
|
|
|
this.$widget.append(this.runScriptButtons.render());
|
2020-01-13 02:05:09 +08:00
|
|
|
|
2020-01-19 20:19:40 +08:00
|
|
|
this.protectedNoteSwitch = new ProtectedNoteSwitchWidget(this.appContext);
|
|
|
|
this.$widget.append(this.protectedNoteSwitch.render());
|
2020-01-13 02:05:09 +08:00
|
|
|
|
2020-01-19 02:46:30 +08:00
|
|
|
this.noteType = new NoteTypeWidget(this.appContext);
|
2020-01-19 20:19:40 +08:00
|
|
|
this.$widget.append(this.noteType.render());
|
|
|
|
|
|
|
|
this.noteActions = new NoteActionsWidget(this.appContext);
|
|
|
|
this.$widget.append(this.noteActions.render());
|
2020-01-19 02:46:30 +08:00
|
|
|
|
|
|
|
this.notePaths = new NotePathsWidget(this.appContext);
|
|
|
|
this.$widget.prepend(this.notePaths.render());
|
|
|
|
|
|
|
|
this.children.push(this.noteType, this.notePaths);
|
2020-01-13 02:05:09 +08:00
|
|
|
|
|
|
|
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)
|
|
|
|
});
|
|
|
|
}
|
2020-01-13 03:15:05 +08:00
|
|
|
|
2020-01-15 03:27:40 +08:00
|
|
|
return this.$widget;
|
2020-01-13 02:05:09 +08:00
|
|
|
}
|
|
|
|
|
2020-01-19 18:37:24 +08:00
|
|
|
async refreshWithNote() {
|
2020-01-13 02:05:09 +08:00
|
|
|
const note = this.tabContext.note;
|
|
|
|
|
2020-01-13 06:03:55 +08:00
|
|
|
this.$noteTitle.val(note.title);
|
2020-01-13 02:05:09 +08:00
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
if (note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable()) {
|
|
|
|
this.$noteTitle.prop("readonly", true);
|
|
|
|
}
|
2020-01-13 02:05:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
noteSavedListener() {
|
|
|
|
this.$savedIndicator.fadeIn();
|
|
|
|
}
|
|
|
|
}
|