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";
|
2020-01-20 01:05:06 +08:00
|
|
|
import appContext from "../services/app_context.js";
|
2020-01-14 04:48:44 +08:00
|
|
|
|
|
|
|
const TPL = `
|
|
|
|
<div class="note-detail">
|
|
|
|
<style>
|
2020-01-19 20:19:40 +08:00
|
|
|
.note-detail {
|
2020-01-14 04:48:44 +08:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
const typeWidgetClasses = {
|
2020-01-19 18:20:02 +08:00
|
|
|
'empty': "./type_widgets/empty.js",
|
2020-01-19 18:03:34 +08:00
|
|
|
'text': "./type_widgets/text.js",
|
|
|
|
'code': "./type_widgets/code.js",
|
|
|
|
'file': "./type_widgets/file.js",
|
|
|
|
'image': "./type_widgets/note_detail_image.js",
|
|
|
|
'search': "./type_widgets/note_detail_search.js",
|
|
|
|
'render': "./type_widgets/note_detail_render.js",
|
|
|
|
'relation-map': "./type_widgets/note_detail_relation_map.js",
|
|
|
|
'protected-session': "./type_widgets/note_detail_protected_session.js",
|
|
|
|
'book': "./type_widgets/note_detail_book.js"
|
2020-01-14 04:48:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export default class NoteDetailWidget extends TabAwareWidget {
|
|
|
|
constructor(appContext) {
|
|
|
|
super(appContext);
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
this.typeWidgets = {};
|
|
|
|
this.typeWidgetPromises = {};
|
2020-01-14 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
doRender() {
|
|
|
|
this.$widget = $(TPL);
|
|
|
|
|
2020-01-20 01:05:06 +08:00
|
|
|
this.$widget.on("dragover", e => e.preventDefault());
|
|
|
|
|
|
|
|
this.$widget.on("dragleave", e => e.preventDefault());
|
|
|
|
|
|
|
|
this.$widget.on("drop", async e => {
|
|
|
|
const activeNote = this.appContext.getActiveTabNote();
|
|
|
|
|
|
|
|
if (!activeNote) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const files = [...e.originalEvent.dataTransfer.files]; // chrome has issue that dataTransfer.files empties after async operation
|
|
|
|
|
|
|
|
const importService = await import("../services/import.js");
|
|
|
|
|
|
|
|
importService.uploadFiles(activeNote.noteId, files, {
|
|
|
|
safeImport: true,
|
|
|
|
shrinkImages: true,
|
|
|
|
textImportedAsText: true,
|
|
|
|
codeImportedAsCode: true,
|
|
|
|
explodeArchives: true
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-01-14 04:48:44 +08:00
|
|
|
return this.$widget;
|
|
|
|
}
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
async refresh() {
|
|
|
|
this.type = this.getWidgetType(/*disableAutoBook*/);
|
2020-01-14 04:48:44 +08:00
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
if (!(this.type in this.typeWidgetPromises)) {
|
|
|
|
this.typeWidgetPromises[this.type] = this.initWidgetType(this.type);
|
2020-01-14 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
await this.typeWidgetPromises[this.type];
|
|
|
|
|
|
|
|
for (const typeWidget of Object.values(this.typeWidgets)) {
|
|
|
|
if (typeWidget.constructor.getType() !== this.type) {
|
|
|
|
typeWidget.cleanup();
|
|
|
|
typeWidget.toggle(false);
|
|
|
|
}
|
|
|
|
}
|
2020-01-14 04:48:44 +08:00
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
this.getTypeWidget().toggle(true);
|
2020-01-16 04:36:01 +08:00
|
|
|
|
|
|
|
this.setupClasses();
|
|
|
|
}
|
|
|
|
|
|
|
|
setupClasses() {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-19 18:20:02 +08:00
|
|
|
const note = this.tabContext.note;
|
2020-01-16 04:36:01 +08:00
|
|
|
|
2020-01-19 18:20:02 +08:00
|
|
|
if (note) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
getTypeWidget() {
|
|
|
|
if (!this.typeWidgets[this.type]) {
|
|
|
|
throw new Error("Could not find typeWidget for type: " + this.type);
|
2020-01-19 01:01:16 +08:00
|
|
|
}
|
2020-01-14 04:48:44 +08:00
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
return this.typeWidgets[this.type];
|
2020-01-19 01:01:16 +08:00
|
|
|
}
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
async initWidgetType(type) {
|
|
|
|
const clazz = await import(typeWidgetClasses[type]);
|
2020-01-17 05:44:36 +08:00
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
this.typeWidgets[this.type] = new clazz.default(this.appContext);
|
|
|
|
this.children.push(this.typeWidgets[this.type]);
|
2020-01-19 01:01:16 +08:00
|
|
|
|
2020-01-19 22:36:42 +08:00
|
|
|
this.$widget.append(this.typeWidgets[this.type].render());
|
2020-01-19 01:01:16 +08:00
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
this.typeWidgets[this.type].eventReceived('setTabContext', {tabContext: this.tabContext});
|
2020-01-14 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
getWidgetType(disableAutoBook) {
|
2020-01-14 04:48:44 +08:00
|
|
|
const note = this.tabContext.note;
|
|
|
|
|
|
|
|
if (!note) {
|
|
|
|
return "empty";
|
|
|
|
}
|
|
|
|
|
|
|
|
let type = note.type;
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
if (type === 'text' && !disableAutoBook
|
|
|
|
&& utils.isHtmlEmpty(note.content)
|
|
|
|
&& note.hasChildren()) {
|
|
|
|
|
2020-01-14 04:48:44 +08:00
|
|
|
type = 'book';
|
|
|
|
}
|
|
|
|
|
2020-01-19 18:03:34 +08:00
|
|
|
if (note.isProtected && !protectedSessionHolder.isProtectedSessionAvailable()) {
|
|
|
|
type = 'protected-session';
|
2020-01-14 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
2020-01-20 02:33:35 +08:00
|
|
|
|
|
|
|
async focusOnDetailListener({tabId}) {
|
|
|
|
if (this.tabContext.tabId === tabId) {
|
|
|
|
await this.refresh();
|
|
|
|
|
|
|
|
const widget = this.getTypeWidget();
|
|
|
|
widget.focus();
|
|
|
|
}
|
|
|
|
}
|
2020-01-14 04:48:44 +08:00
|
|
|
}
|