2020-01-14 04:48:44 +08:00
|
|
|
import TabAwareWidget from "./tab_aware_widget.js";
|
|
|
|
import utils from "../services/utils.js";
|
|
|
|
import protectedSessionHolder from "../services/protected_session_holder.js";
|
|
|
|
|
|
|
|
const TPL = `
|
|
|
|
<div class="note-detail">
|
|
|
|
<style>
|
|
|
|
.note-detail-content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 100;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
|
|
|
const componentClasses = {
|
2020-01-15 04:52:18 +08:00
|
|
|
'empty': "./detail/note_detail_empty.js",
|
|
|
|
'text': "./detail/note_detail_text.js",
|
|
|
|
'code': "./detail/note_detail_code.js",
|
|
|
|
'file': "./detail/note_detail_file.js",
|
|
|
|
'image': "./detail/note_detail_image.js",
|
|
|
|
'search': "./detail/note_detail_search.js",
|
|
|
|
'render': "./detail/note_detail_render.js",
|
|
|
|
'relation-map': "./detail/note_detail_relation_map.js",
|
|
|
|
'protected-session': "./detail/note_detail_protected_session.js",
|
|
|
|
'book': "./detail/note_detail_book.js"
|
2020-01-14 04:48:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export default class NoteDetailWidget extends TabAwareWidget {
|
|
|
|
constructor(appContext) {
|
|
|
|
super(appContext);
|
|
|
|
|
|
|
|
this.components = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
doRender() {
|
|
|
|
this.$widget = $(TPL);
|
|
|
|
|
|
|
|
return this.$widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
async activeTabChanged() {
|
|
|
|
await this.initComponent(/**disableAutoBook*/);
|
|
|
|
|
|
|
|
for (const componentType in this.components) {
|
|
|
|
// FIXME
|
|
|
|
this.components[componentType].ctx = this.tabContext;
|
|
|
|
|
|
|
|
if (componentType !== this.type) {
|
|
|
|
this.components[componentType].cleanup();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$widget.find('.note-detail-component').hide();
|
|
|
|
|
|
|
|
this.getComponent().show();
|
|
|
|
await this.getComponent().render();
|
2020-01-16 04:36:01 +08:00
|
|
|
|
|
|
|
this.setupClasses();
|
|
|
|
}
|
|
|
|
|
|
|
|
setupClasses() {
|
|
|
|
const note = this.tabContext.note;
|
|
|
|
|
|
|
|
for (const clazz of Array.from(this.$widget[0].classList)) { // create copy to safely iterate over while removing classes
|
|
|
|
if (clazz !== 'note-detail') {
|
|
|
|
this.$widget.removeClass(clazz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$widget.addClass(note.cssClass);
|
|
|
|
this.$widget.addClass(utils.getNoteTypeClass(note.type));
|
|
|
|
this.$widget.addClass(utils.getMimeTypeClass(note.mime));
|
|
|
|
|
|
|
|
this.$widget.toggleClass("protected", note.isProtected);
|
2020-01-14 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
getComponent() {
|
|
|
|
if (!this.components[this.type]) {
|
|
|
|
throw new Error("Could not find component for type: " + this.type);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.components[this.type];
|
|
|
|
}
|
|
|
|
|
|
|
|
async initComponent(disableAutoBook = false) {
|
|
|
|
this.type = this.getComponentType(disableAutoBook);
|
|
|
|
|
|
|
|
if (!(this.type in this.components)) {
|
|
|
|
const clazz = await import(componentClasses[this.type]);
|
|
|
|
|
2020-01-17 05:44:36 +08:00
|
|
|
this.components[this.type] = new clazz.default(this);
|
|
|
|
this.children.push(this.components[this.type]);
|
|
|
|
|
|
|
|
this.$widget.append(this.components[this.type].render());
|
2020-01-14 04:48:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getComponentType(disableAutoBook) {
|
|
|
|
const note = this.tabContext.note;
|
|
|
|
|
|
|
|
if (!note) {
|
|
|
|
return "empty";
|
|
|
|
}
|
|
|
|
|
|
|
|
let type = note.type;
|
|
|
|
|
|
|
|
if (type === 'text' && !disableAutoBook && utils.isHtmlEmpty(note.content) && note.hasChildren()) {
|
|
|
|
type = 'book';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (note.isProtected) {
|
|
|
|
if (protectedSessionHolder.isProtectedSessionAvailable()) {
|
|
|
|
protectedSessionHolder.touchProtectedSession();
|
|
|
|
} else {
|
|
|
|
type = 'protected-session';
|
|
|
|
|
|
|
|
// FIXME
|
|
|
|
// user shouldn't be able to edit note title
|
|
|
|
//this.$noteTitle.prop("readonly", true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
}
|