Skip to content

Commit cad0c38

Browse files
Showing tag relationships in foam graph (#1436)
1 parent bdb95a0 commit cad0c38

File tree

1 file changed

+28
-11
lines changed
  • packages/foam-vscode/static/dataviz

1 file changed

+28
-11
lines changed

packages/foam-vscode/static/dataviz/graph.js

+28-11
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const initGUI = () => {
1919
if (!nodeTypeFilterControllers.has(type)) {
2020
const ctrl = nodeTypeFilterFolder
2121
.add(m.showNodesOfType, type)
22-
.onFinishChange(function() {
22+
.onFinishChange(function () {
2323
Actions.updateFilters();
2424
});
2525
ctrl.domElement.previousSibling.style.color = getNodeTypeColor(
@@ -254,17 +254,28 @@ function augmentGraphInfo(graph) {
254254
node.links = [];
255255
if (node.tags && node.tags.length > 0) {
256256
node.tags.forEach(tag => {
257-
const tagNode = {
258-
id: tag.label,
259-
title: tag.label,
260-
type: 'tag',
261-
properties: {},
262-
neighbors: [],
263-
links: [],
264-
};
265-
graph.nodeInfo[tag.label] = tagNode;
257+
subtags = tag.label.split('/');
258+
for (let i = 0; i < subtags.length; i++) {
259+
const label = subtags.slice(0, i + 1).join('/');
260+
const tagNode = {
261+
id: label,
262+
title: label,
263+
type: 'tag',
264+
properties: {},
265+
neighbors: [],
266+
links: [],
267+
};
268+
graph.nodeInfo[tagNode.id] = tagNode;
269+
if (i > 0) {
270+
const parent = subtags.slice(0, i).join('/');
271+
graph.links.push({
272+
source: parent,
273+
target: label,
274+
});
275+
}
276+
}
266277
graph.links.push({
267-
source: tagNode.id,
278+
source: tag.label,
268279
target: node.id,
269280
});
270281
});
@@ -374,6 +385,12 @@ function getLinkColor(link, model) {
374385
const style = model.style;
375386
switch (getLinkState(link, model)) {
376387
case 'regular':
388+
if (
389+
model.graph.nodeInfo[link.source.id].type === 'tag' &&
390+
model.graph.nodeInfo[link.target.id].type === 'tag'
391+
) {
392+
return getNodeTypeColor('tag', model);
393+
}
377394
return style.lineColor;
378395
case 'highlighted':
379396
return style.highlightedForeground;

0 commit comments

Comments
 (0)