trilium/src/public/javascripts/widgets/note_revisions.js

66 lines
2 KiB
JavaScript
Raw Normal View History

2019-07-26 04:31:09 +08:00
import server from "../services/server.js";
import StandardWidget from "./standard_widget.js";
2019-07-26 04:31:09 +08:00
const TPL = `
<ul class="note-revision-list" style="max-height: 150px; overflow: auto;">
</ul>
`;
class NoteRevisionsWidget extends StandardWidget {
2019-08-17 16:45:20 +08:00
getWidgetTitle() { return "Note revisions"; }
2019-07-26 04:31:09 +08:00
getHelp() {
return {
title: "Note revisions track changes in the note across the time.",
url: "https://github.com/zadam/trilium/wiki/Note-revisions"
};
}
2019-08-30 05:08:30 +08:00
getHeaderActions() {
const $showFullButton = $("<a>").append("show dialog").addClass('widget-header-action');
$showFullButton.click(async () => {
const attributesDialog = await import("../dialogs/note_revisions.js");
attributesDialog.showCurrentNoteRevisions(this.ctx.note.noteId);
2019-08-30 05:08:30 +08:00
});
return [$showFullButton];
}
async doRenderBody() {
2019-11-02 02:21:48 +08:00
const revisionItems = await server.get(`notes/${this.ctx.note.noteId}/revisions`);
2019-07-26 04:31:09 +08:00
if (revisionItems.length === 0) {
this.$body.text("No revisions yet...");
2019-07-26 04:31:09 +08:00
return;
}
this.$body.html(TPL);
2019-07-26 04:31:09 +08:00
const $list = this.$body.find('.note-revision-list');
2019-07-26 04:31:09 +08:00
for (const item of revisionItems) {
const $listItem = $('<li>').append($("<a>", {
2019-07-26 04:31:09 +08:00
'data-action': 'note-revision',
'data-note-path': this.ctx.note.noteId,
'data-note-revision-id': item.noteRevisionId,
href: 'javascript:'
2019-11-02 02:21:48 +08:00
}).text(item.dateLastEdited.substr(0, 16)));
if (item.contentLength !== null) {
2019-11-09 15:53:13 +08:00
$listItem.append($("<span>").text(` (${item.contentLength} bytes)`))
}
$list.append($listItem);
2019-07-26 04:31:09 +08:00
}
}
eventReceived(name, data) {
if (name === 'syncData') {
if (data.find(sd => sd.entityName === 'note_revisions' && sd.noteId === this.ctx.note.noteId)) {
this.doRenderBody();
}
}
}
2019-07-26 04:31:09 +08:00
}
export default NoteRevisionsWidget;