42 lines
1.2 KiB
JavaScript
Raw Normal View History

import StandardWidget from "./standard_widget.js";
2019-07-21 21:55:48 +02:00
let linkMapContainerIdCtr = 1;
const TPL = `
<div style="outline: none; overflow: hidden;">
<div class="link-map-container"></div>
</div>
`;
class LinkMapWidget extends StandardWidget {
2019-08-17 10:45:20 +02:00
getWidgetTitle() { return "Link map"; }
2019-07-24 22:52:51 +02:00
2019-08-17 10:45:20 +02:00
getHeaderActions() {
2019-07-24 22:52:51 +02:00
const $showFullButton = $("<a>").append("show full").addClass('widget-header-action');
$showFullButton.click(async () => {
const linkMapDialog = await import("../dialogs/link_map.js");
2019-07-24 22:52:51 +02:00
linkMapDialog.showDialog();
});
2019-08-17 10:45:20 +02:00
return [$showFullButton];
2019-07-21 21:55:48 +02:00
}
async doRenderBody() {
this.$body.html(TPL);
2019-08-15 10:04:03 +02:00
2019-08-27 20:20:00 +02:00
const $linkMapContainer = this.$body.find('.link-map-container');
$linkMapContainer.attr("id", "link-map-container-" + linkMapContainerIdCtr++);
2019-08-27 22:19:32 +02:00
$linkMapContainer.css("height", "300px");
2019-07-21 21:55:48 +02:00
2019-08-27 20:20:00 +02:00
const LinkMapServiceClass = (await import('../services/link_map.js')).default;
2019-07-21 21:55:48 +02:00
2019-08-27 22:19:32 +02:00
const linkMapService = new LinkMapServiceClass(this.ctx.note, $linkMapContainer, {
maxDepth: 1,
zoom: 0.7
});
2019-07-21 21:55:48 +02:00
2019-08-27 20:20:00 +02:00
await linkMapService.render();
2019-07-21 21:55:48 +02:00
}
}
export default LinkMapWidget;