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

58 lines
1.7 KiB
JavaScript
Raw Normal View History

import StandardWidget from "./standard_widget.js";
2019-07-22 03:55:48 +08:00
let linkMapContainerIdCtr = 1;
const TPL = `
2019-08-31 02:15:59 +08:00
<div class="link-map-widget">
2019-07-22 03:55:48 +08:00
<div class="link-map-container"></div>
</div>
`;
class LinkMapWidget extends StandardWidget {
2019-08-17 16:45:20 +08:00
getWidgetTitle() { return "Link map"; }
2019-07-25 04:52:51 +08:00
2019-08-17 16:45:20 +08:00
getHeaderActions() {
2019-07-25 04:52:51 +08:00
const $showFullButton = $("<a>").append("show full").addClass('widget-header-action');
$showFullButton.click(async () => {
const linkMapDialog = await import("../dialogs/link_map.js");
2019-07-25 04:52:51 +08:00
linkMapDialog.showDialog();
});
2019-08-17 16:45:20 +08:00
return [$showFullButton];
2019-07-22 03:55:48 +08:00
}
async doRenderBody() {
this.$body.html(TPL);
2019-08-15 16:04:03 +08:00
2019-08-28 02:20:00 +08:00
const $linkMapContainer = this.$body.find('.link-map-container');
$linkMapContainer.attr("id", "link-map-container-" + linkMapContainerIdCtr++);
2019-08-28 04:19:32 +08:00
$linkMapContainer.css("height", "300px");
2019-07-22 03:55:48 +08:00
2019-08-28 02:20:00 +08:00
const LinkMapServiceClass = (await import('../services/link_map.js')).default;
2019-07-22 03:55:48 +08:00
2019-08-29 03:15:16 +08:00
this.linkMapService = new LinkMapServiceClass(this.ctx.note, $linkMapContainer, {
2019-08-28 04:19:32 +08:00
maxDepth: 1,
2019-08-31 02:15:59 +08:00
zoom: 0.6
2019-08-28 04:19:32 +08:00
});
2019-07-22 03:55:48 +08:00
2019-08-29 03:15:16 +08:00
await this.linkMapService.render();
}
cleanup() {
if (this.linkMapService) {
this.linkMapService.cleanup();
}
2019-07-22 03:55:48 +08:00
}
2019-08-30 05:08:30 +08:00
syncDataReceived(syncData) {
if (syncData.find(sd => sd.entityName === 'attributes' && sd.noteId === this.ctx.note.noteId)) {
// no need to invalidate attributes since the Attribute class listens to this as well
// (and is guaranteed to run first)
if (this.linkMapService) {
this.linkMapService.loadNotesAndRelations();
}
}
}
2019-07-22 03:55:48 +08:00
}
export default LinkMapWidget;