mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 23:29:02 +02:00
chore(client/ts): port file
This commit is contained in:
parent
659e551cdd
commit
90ca4e923e
@ -1,6 +1,8 @@
|
|||||||
import openService from "../../services/open.js";
|
import openService from "../../services/open.js";
|
||||||
import TypeWidget from "./type_widget.js";
|
import TypeWidget from "./type_widget.js";
|
||||||
import { t } from "../../services/i18n.js";
|
import { t } from "../../services/i18n.js";
|
||||||
|
import type { EventData } from "../../components/app_context.js";
|
||||||
|
import type FNote from "../../entities/fnote.js";
|
||||||
|
|
||||||
const TPL = `
|
const TPL = `
|
||||||
<div class="note-detail-file note-detail-printable">
|
<div class="note-detail-file note-detail-printable">
|
||||||
@ -37,6 +39,13 @@ const TPL = `
|
|||||||
</div>`;
|
</div>`;
|
||||||
|
|
||||||
export default class FileTypeWidget extends TypeWidget {
|
export default class FileTypeWidget extends TypeWidget {
|
||||||
|
|
||||||
|
private $previewContent!: JQuery<HTMLElement>;
|
||||||
|
private $previewNotAvailable!: JQuery<HTMLElement>;
|
||||||
|
private $pdfPreview!: JQuery<HTMLElement>;
|
||||||
|
private $videoPreview!: JQuery<HTMLElement>;
|
||||||
|
private $audioPreview!: JQuery<HTMLElement>;
|
||||||
|
|
||||||
static getType() {
|
static getType() {
|
||||||
return "file";
|
return "file";
|
||||||
}
|
}
|
||||||
@ -52,10 +61,10 @@ export default class FileTypeWidget extends TypeWidget {
|
|||||||
super.doRender();
|
super.doRender();
|
||||||
}
|
}
|
||||||
|
|
||||||
async doRefresh(note) {
|
async doRefresh(note: FNote) {
|
||||||
this.$widget.show();
|
this.$widget.show();
|
||||||
|
|
||||||
const blob = await this.note.getBlob();
|
const blob = await this.note?.getBlob();
|
||||||
|
|
||||||
this.$previewContent.empty().hide();
|
this.$previewContent.empty().hide();
|
||||||
this.$pdfPreview.attr("src", "").empty().hide();
|
this.$pdfPreview.attr("src", "").empty().hide();
|
||||||
@ -63,7 +72,7 @@ export default class FileTypeWidget extends TypeWidget {
|
|||||||
this.$videoPreview.hide();
|
this.$videoPreview.hide();
|
||||||
this.$audioPreview.hide();
|
this.$audioPreview.hide();
|
||||||
|
|
||||||
if (blob.content) {
|
if (blob?.content) {
|
||||||
this.$previewContent.show().scrollTop(0);
|
this.$previewContent.show().scrollTop(0);
|
||||||
this.$previewContent.text(blob.content);
|
this.$previewContent.text(blob.content);
|
||||||
} else if (note.mime === "application/pdf") {
|
} else if (note.mime === "application/pdf") {
|
||||||
@ -72,20 +81,20 @@ export default class FileTypeWidget extends TypeWidget {
|
|||||||
this.$videoPreview
|
this.$videoPreview
|
||||||
.show()
|
.show()
|
||||||
.attr("src", openService.getUrlForDownload(`api/notes/${this.noteId}/open-partial`))
|
.attr("src", openService.getUrlForDownload(`api/notes/${this.noteId}/open-partial`))
|
||||||
.attr("type", this.note.mime)
|
.attr("type", this.note?.mime ?? "")
|
||||||
.css("width", this.$widget.width());
|
.css("width", this.$widget.width() ?? 0);
|
||||||
} else if (note.mime.startsWith("audio/")) {
|
} else if (note.mime.startsWith("audio/")) {
|
||||||
this.$audioPreview
|
this.$audioPreview
|
||||||
.show()
|
.show()
|
||||||
.attr("src", openService.getUrlForDownload(`api/notes/${this.noteId}/open-partial`))
|
.attr("src", openService.getUrlForDownload(`api/notes/${this.noteId}/open-partial`))
|
||||||
.attr("type", this.note.mime)
|
.attr("type", this.note?.mime ?? "")
|
||||||
.css("width", this.$widget.width());
|
.css("width", this.$widget.width() ?? 0);
|
||||||
} else {
|
} else {
|
||||||
this.$previewNotAvailable.show();
|
this.$previewNotAvailable.show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async entitiesReloadedEvent({ loadResults }) {
|
async entitiesReloadedEvent({ loadResults }: EventData<"entitiesReloaded">) {
|
||||||
if (loadResults.isNoteReloaded(this.noteId)) {
|
if (loadResults.isNoteReloaded(this.noteId)) {
|
||||||
this.refresh();
|
this.refresh();
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user