mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
import CollapsibleWidget from "../collapsible_widget.js";
|
|
|
|
const TPL = `
|
|
<table class="note-info-widget-table">
|
|
<style>
|
|
.note-info-widget-table {
|
|
max-width: 100%;
|
|
display: block;
|
|
overflow-x: auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.note-info-widget-table td, .note-info-widget-table th {
|
|
padding: 5px;
|
|
}
|
|
|
|
.note-info-mime {
|
|
max-width: 13em;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|
|
|
|
<tr>
|
|
<th>Note ID:</th>
|
|
<td class="note-info-note-id"></td>
|
|
<th>Type:</th>
|
|
<td>
|
|
<span class="note-info-type"></span>
|
|
|
|
<span class="note-info-mime"></span>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Created:</th>
|
|
<td class="note-info-date-created"></td>
|
|
<th>Modified:</th>
|
|
<td class="note-info-date-modified"></td>
|
|
</tr>
|
|
</table>
|
|
`;
|
|
|
|
export default class NoteInfoWidget extends CollapsibleWidget {
|
|
isEnabled() {
|
|
return super.isEnabled() && !this.note.hasLabel('noteInfoWidgetDisabled');
|
|
}
|
|
|
|
get widgetTitle() { return "Note info"; }
|
|
|
|
async doRenderBody() {
|
|
this.$body.html(TPL);
|
|
|
|
this.$noteId = this.$body.find(".note-info-note-id");
|
|
this.$dateCreated = this.$body.find(".note-info-date-created");
|
|
this.$dateModified = this.$body.find(".note-info-date-modified");
|
|
this.$type = this.$body.find(".note-info-type");
|
|
this.$mime = this.$body.find(".note-info-mime");
|
|
}
|
|
|
|
async refreshWithNote(note) {
|
|
const noteComplement = await this.tabContext.getNoteComplement();
|
|
|
|
this.$noteId.text(note.noteId);
|
|
this.$dateCreated
|
|
.text(noteComplement.dateCreated.substr(0, 16))
|
|
.attr("title", noteComplement.dateCreated);
|
|
|
|
this.$dateModified
|
|
.text(noteComplement.combinedDateModified.substr(0, 16))
|
|
.attr("title", noteComplement.combinedDateModified);
|
|
|
|
this.$type.text(note.type);
|
|
|
|
if (note.mime) {
|
|
this.$mime.text('(' + note.mime + ')');
|
|
}
|
|
else {
|
|
this.$mime.empty();
|
|
}
|
|
}
|
|
|
|
entitiesReloadedEvent({loadResults}) {
|
|
if (loadResults.isNoteReloaded(this.noteId) || loadResults.isNoteContentReloaded(this.noteId)) {
|
|
this.refresh();
|
|
}
|
|
}
|
|
}
|