2021-09-22 21:11:36 +02:00
|
|
|
import libraryLoader from "../services/library_loader.js";
|
|
|
|
import server from "../services/server.js";
|
|
|
|
import attributeService from "../services/attributes.js";
|
|
|
|
import hoistedNoteService from "../services/hoisted_note.js";
|
|
|
|
import appContext from "../services/app_context.js";
|
|
|
|
import NoteContextAwareWidget from "./note_context_aware_widget.js";
|
|
|
|
|
|
|
|
const TPL = `<div class="note-map-widget" style="position: relative;">
|
2021-05-28 23:52:42 +02:00
|
|
|
<style>
|
2021-09-22 21:11:36 +02:00
|
|
|
.type-special .note-detail, .note-detail-note-map {
|
|
|
|
height: 100%;
|
2021-05-28 23:52:42 +02:00
|
|
|
}
|
2021-05-29 22:52:32 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
.map-type-switcher {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
background-color: var(--accented-background-color);
|
2021-05-28 23:52:42 +02:00
|
|
|
z-index: 1000;
|
|
|
|
}
|
2021-06-02 21:23:40 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
.map-type-switcher .bx {
|
|
|
|
font-size: x-large;
|
2021-06-02 21:23:40 +02:00
|
|
|
}
|
2021-05-28 23:52:42 +02:00
|
|
|
</style>
|
2021-06-02 21:23:40 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
<div class="btn-group btn-group-sm map-type-switcher" role="group">
|
|
|
|
<button type="button" class="btn btn-secondary" title="Link Map" data-type="link"><span class="bx bx-network-chart"></span></button>
|
|
|
|
<button type="button" class="btn btn-secondary" title="Tree map" data-type="tree"><span class="bx bx-sitemap"></span></button>
|
|
|
|
</div>
|
2021-06-27 12:53:05 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
<div class="note-map-container"></div>
|
|
|
|
</div>`;
|
2021-05-28 23:19:11 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
export default class NoteMapWidget extends NoteContextAwareWidget {
|
2021-05-28 23:19:11 +02:00
|
|
|
doRender() {
|
|
|
|
this.$widget = $(TPL);
|
2021-05-31 21:20:30 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.$container = this.$widget.find(".note-map-container");
|
2021-05-31 23:38:47 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
window.addEventListener('resize', () => this.setFullHeight(), false);
|
2021-05-31 21:20:30 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.$widget.find(".map-type-switcher button").on("click", async e => {
|
|
|
|
const type = $(e.target).closest("button").attr("data-type");
|
2021-05-31 23:38:47 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
await attributeService.setLabel(this.noteId, 'mapType', type);
|
2021-05-31 21:20:30 +02:00
|
|
|
});
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
super.doRender();
|
2021-05-31 23:38:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
setFullHeight() {
|
2021-09-22 21:11:36 +02:00
|
|
|
if (!this.graph) { // no graph has been even rendered
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-05-31 23:38:47 +02:00
|
|
|
const {top} = this.$widget[0].getBoundingClientRect();
|
|
|
|
|
|
|
|
const height = $(window).height() - top;
|
|
|
|
const width = this.$widget.width();
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.$widget.find('.note-map-container')
|
2021-05-31 23:38:47 +02:00
|
|
|
.css("height", height)
|
|
|
|
.css("width", this.$widget.width());
|
|
|
|
|
|
|
|
this.graph
|
|
|
|
.height(height)
|
|
|
|
.width(width);
|
2021-05-28 23:19:11 +02:00
|
|
|
}
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
async refreshWithNote() {
|
|
|
|
this.$widget.show();
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.mapType = this.note.getLabelValue("mapType") === "tree" ? "tree" : "link";
|
2021-06-01 22:03:38 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.setFullHeight();
|
2021-06-02 21:23:40 +02:00
|
|
|
|
2021-05-31 21:31:07 +02:00
|
|
|
await libraryLoader.requireLibrary(libraryLoader.FORCE_GRAPH);
|
|
|
|
|
|
|
|
this.graph = ForceGraph()(this.$container[0])
|
|
|
|
.width(this.$container.width())
|
|
|
|
.height(this.$container.height())
|
|
|
|
.onZoom(zoom => this.setZoomLevel(zoom.k))
|
2021-09-22 21:11:36 +02:00
|
|
|
.d3AlphaDecay(0.01)
|
|
|
|
.d3VelocityDecay(0.08)
|
2021-05-31 21:31:07 +02:00
|
|
|
.nodeCanvasObject((node, ctx) => this.paintNode(node, this.stringToColor(node.type), ctx))
|
|
|
|
.nodePointerAreaPaint((node, ctx) => this.paintNode(node, this.stringToColor(node.type), ctx))
|
|
|
|
.nodePointerAreaPaint((node, color, ctx) => {
|
|
|
|
ctx.fillStyle = color;
|
|
|
|
ctx.beginPath();
|
2021-09-22 21:11:36 +02:00
|
|
|
ctx.arc(node.x, node.y, this.noteIdToSizeMap[node.id], 0, 2 * Math.PI, false);
|
2021-05-31 21:31:07 +02:00
|
|
|
ctx.fill();
|
|
|
|
})
|
2021-09-22 21:11:36 +02:00
|
|
|
.nodeLabel(node => node.name)
|
|
|
|
.maxZoom(7)
|
|
|
|
.warmupTicks(10)
|
|
|
|
.linkDirectionalArrowLength(5)
|
2021-05-31 21:31:07 +02:00
|
|
|
.linkDirectionalArrowRelPos(1)
|
2021-09-22 21:11:36 +02:00
|
|
|
.linkWidth(1)
|
2021-06-02 21:23:40 +02:00
|
|
|
.linkColor(() => this.css.mutedTextColor)
|
2021-05-31 21:31:07 +02:00
|
|
|
.onNodeClick(node => this.nodeClicked(node));
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
if (this.mapType === 'link') {
|
|
|
|
this.graph
|
|
|
|
.linkLabel(l => `${l.source.name} - <strong>${l.name}</strong> - ${l.target.name}`)
|
|
|
|
.linkCanvasObject((link, ctx) => this.paintLink(link, ctx))
|
|
|
|
.linkCanvasObjectMode(() => "after");
|
|
|
|
}
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.graph.d3Force('link').distance(40);
|
|
|
|
this.graph.d3Force('center').strength(0.01);
|
2021-05-31 21:31:07 +02:00
|
|
|
this.graph.d3Force('charge').strength(-30);
|
2021-09-22 21:11:36 +02:00
|
|
|
this.graph.d3Force('charge').distanceMax(1000);
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
let mapRootNoteId = this.note.getLabelValue("mapRootNoteId");
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
if (mapRootNoteId === 'hoisted') {
|
|
|
|
mapRootNoteId = hoistedNoteService.getHoistedNoteId();
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
2021-09-22 21:11:36 +02:00
|
|
|
else if (!mapRootNoteId) {
|
|
|
|
mapRootNoteId = appContext.tabManager.getActiveContext().parentNoteId;
|
|
|
|
}
|
|
|
|
|
|
|
|
const data = await this.loadNotesAndRelations(mapRootNoteId);
|
|
|
|
|
|
|
|
this.renderData(data);
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
stringToColor(str) {
|
|
|
|
let hash = 0;
|
|
|
|
for (let i = 0; i < str.length; i++) {
|
|
|
|
hash = str.charCodeAt(i) + ((hash << 5) - hash);
|
2021-06-01 22:03:38 +02:00
|
|
|
}
|
2021-09-22 21:11:36 +02:00
|
|
|
let colour = '#';
|
|
|
|
for (let i = 0; i < 3; i++) {
|
|
|
|
const value = (hash >> (i * 8)) & 0xFF;
|
|
|
|
colour += ('00' + value.toString(16)).substr(-2);
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
2021-09-22 21:11:36 +02:00
|
|
|
return colour;
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
2021-05-28 23:19:11 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
rgb2hex(rgb) {
|
|
|
|
return `#${rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/)
|
|
|
|
.slice(1)
|
|
|
|
.map(n => parseInt(n, 10).toString(16).padStart(2, '0'))
|
|
|
|
.join('')}`
|
|
|
|
}
|
2021-05-28 23:19:11 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
setZoomLevel(level) {
|
|
|
|
this.zoomLevel = level;
|
|
|
|
}
|
2021-06-01 22:03:38 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
paintNode(node, color, ctx) {
|
|
|
|
const {x, y} = node;
|
|
|
|
const size = this.noteIdToSizeMap[node.id];
|
2021-06-01 22:03:38 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
ctx.fillStyle = node.id === this.noteId ? 'red' : color;
|
|
|
|
ctx.beginPath();
|
|
|
|
ctx.arc(x, y, size, 0, 2 * Math.PI, false);
|
|
|
|
ctx.fill();
|
2021-05-31 23:38:47 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
const toRender = this.zoomLevel > 2
|
|
|
|
|| (this.zoomLevel > 1 && size > 6)
|
|
|
|
|| (this.zoomLevel > 0.3 && size > 10);
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
if (!toRender) {
|
|
|
|
return;
|
|
|
|
}
|
2021-05-31 23:38:47 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
if (!node.expanded) {
|
|
|
|
ctx.fillStyle = this.css.textColor;
|
|
|
|
ctx.font = 10 + 'px ' + this.css.fontFamily;
|
|
|
|
ctx.textAlign = 'center';
|
|
|
|
ctx.textBaseline = 'middle';
|
|
|
|
ctx.fillText("+", x, y + 0.5);
|
|
|
|
}
|
2021-06-01 22:03:38 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
ctx.fillStyle = this.css.textColor;
|
|
|
|
ctx.font = size + 'px ' + this.css.fontFamily;
|
|
|
|
ctx.textAlign = 'center';
|
|
|
|
ctx.textBaseline = 'middle';
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
let title = node.name;
|
|
|
|
|
|
|
|
if (title.length > 15) {
|
|
|
|
title = title.substr(0, 15) + "...";
|
2021-06-01 22:03:38 +02:00
|
|
|
}
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
ctx.fillText(title, x, y + Math.round(size * 1.5));
|
2021-05-28 23:19:11 +02:00
|
|
|
}
|
|
|
|
|
2021-05-31 21:31:07 +02:00
|
|
|
paintLink(link, ctx) {
|
2021-06-02 21:39:18 +02:00
|
|
|
if (this.zoomLevel < 5) {
|
2021-05-31 21:31:07 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-02 21:23:40 +02:00
|
|
|
ctx.font = '3px ' + this.css.fontFamily;
|
2021-05-31 21:31:07 +02:00
|
|
|
ctx.textAlign = 'center';
|
|
|
|
ctx.textBaseline = 'middle';
|
2021-06-02 21:23:40 +02:00
|
|
|
ctx.fillStyle = this.css.mutedTextColor;
|
2021-05-31 21:31:07 +02:00
|
|
|
|
|
|
|
const {source, target} = link;
|
|
|
|
|
|
|
|
const x = (source.x + target.x) / 2;
|
|
|
|
const y = (source.y + target.y) / 2;
|
|
|
|
|
|
|
|
ctx.save();
|
|
|
|
ctx.translate(x, y);
|
|
|
|
|
|
|
|
const deltaY = source.y - target.y;
|
|
|
|
const deltaX = source.x - target.x;
|
|
|
|
|
|
|
|
let angle = Math.atan2(deltaY, deltaX);
|
|
|
|
let moveY = 2;
|
|
|
|
|
|
|
|
if (angle < -Math.PI / 2 || angle > Math.PI / 2) {
|
|
|
|
angle += Math.PI;
|
|
|
|
moveY = -2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.rotate(angle);
|
|
|
|
ctx.fillText(link.name, 0, moveY);
|
|
|
|
ctx.restore();
|
|
|
|
}
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
async loadNotesAndRelations(mapRootNoteId) {
|
|
|
|
this.linkIdToLinkMap = {};
|
|
|
|
this.noteIdToLinkCountMap = {};
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
const resp = await server.post(`note-map/${mapRootNoteId}/${this.mapType}`);
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.noteIdToLinkCountMap = resp.noteIdToLinkCountMap;
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
this.calculateSizes(resp.noteIdToDescendantCountMap);
|
|
|
|
|
|
|
|
for (const link of resp.links) {
|
|
|
|
this.linkIdToLinkMap[link.id] = link;
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
const noteIdToLinkIdMap = {};
|
|
|
|
noteIdToLinkIdMap[this.noteId] = new Set(); // for case there are no relations
|
|
|
|
const linksGroupedBySourceTarget = {};
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
for (const link of Object.values(this.linkIdToLinkMap)) {
|
|
|
|
noteIdToLinkIdMap[link.sourceNoteId] = noteIdToLinkIdMap[link.sourceNoteId] || new Set();
|
|
|
|
noteIdToLinkIdMap[link.sourceNoteId].add(link.id);
|
2021-05-31 21:31:07 +02:00
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
noteIdToLinkIdMap[link.targetNoteId] = noteIdToLinkIdMap[link.targetNoteId] || new Set();
|
|
|
|
noteIdToLinkIdMap[link.targetNoteId].add(link.id);
|
|
|
|
|
|
|
|
const key = `${link.sourceNoteId}-${link.targetNoteId}`;
|
|
|
|
|
|
|
|
if (key in linksGroupedBySourceTarget) {
|
|
|
|
if (!linksGroupedBySourceTarget[key].names.includes(link.name)) {
|
|
|
|
linksGroupedBySourceTarget[key].names.push(link.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
linksGroupedBySourceTarget[key] = {
|
|
|
|
id: key,
|
|
|
|
sourceNoteId: link.sourceNoteId,
|
|
|
|
targetNoteId: link.targetNoteId,
|
|
|
|
names: [link.name]
|
|
|
|
}
|
|
|
|
}
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
return {
|
|
|
|
nodes: resp.notes.map(([noteId, title, type]) => ({
|
|
|
|
id: noteId,
|
|
|
|
name: title,
|
|
|
|
type: type,
|
|
|
|
expanded: true
|
|
|
|
})),
|
|
|
|
links: Object.values(linksGroupedBySourceTarget).map(link => ({
|
|
|
|
id: link.id,
|
|
|
|
source: link.sourceNoteId,
|
|
|
|
target: link.targetNoteId,
|
|
|
|
name: link.names.join(", ")
|
|
|
|
}))
|
|
|
|
};
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
calculateSizes(noteIdToDescendantCountMap) {
|
|
|
|
this.noteIdToSizeMap = {};
|
|
|
|
|
|
|
|
for (const noteId in noteIdToDescendantCountMap) {
|
|
|
|
this.noteIdToSizeMap[noteId] = 4;
|
|
|
|
|
|
|
|
const count = noteIdToDescendantCountMap[noteId];
|
|
|
|
|
|
|
|
if (count > 0) {
|
|
|
|
this.noteIdToSizeMap[noteId] += 1 + Math.round(Math.log(count) / Math.log(1.5));
|
|
|
|
}
|
2021-05-31 21:31:07 +02:00
|
|
|
}
|
2021-09-22 21:11:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
renderData(data, zoomToFit = true, zoomPadding = 10) {
|
|
|
|
this.graph.graphData(data);
|
|
|
|
|
|
|
|
if (zoomToFit && data.nodes.length > 1) {
|
|
|
|
setTimeout(() => this.graph.zoomToFit(400, zoomPadding), 1000);
|
2021-05-28 23:19:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 21:11:36 +02:00
|
|
|
cleanup() {
|
|
|
|
this.$container.html('');
|
2021-06-02 21:23:40 +02:00
|
|
|
}
|
|
|
|
|
2021-05-28 23:19:11 +02:00
|
|
|
entitiesReloadedEvent({loadResults}) {
|
2021-09-22 21:11:36 +02:00
|
|
|
if (loadResults.getAttributes(this.componentId).find(attr => attr.name === 'mapType' && attributeService.isAffecting(attr, this.note))) {
|
2021-06-01 22:03:38 +02:00
|
|
|
this.refresh();
|
2021-05-28 23:19:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|