@@ -19,7 +19,7 @@ const initGUI = () => {
19
19
if (!nodeTypeFilterControllers.has(type)) {
20
20
const ctrl = nodeTypeFilterFolder
21
21
.add(m.showNodesOfType, type)
22
- .onFinishChange(function() {
22
+ .onFinishChange(function () {
23
23
Actions.updateFilters();
24
24
});
25
25
ctrl.domElement.previousSibling.style.color = getNodeTypeColor(
@@ -254,17 +254,28 @@ function augmentGraphInfo(graph) {
254
254
node.links = [];
255
255
if (node.tags && node.tags.length > 0) {
256
256
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
+ }
266
277
graph.links.push({
267
- source: tagNode.id ,
278
+ source: tag.label ,
268
279
target: node.id,
269
280
});
270
281
});
@@ -374,6 +385,12 @@ function getLinkColor(link, model) {
374
385
const style = model.style;
375
386
switch (getLinkState(link, model)) {
376
387
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
+ }
377
394
return style.lineColor;
378
395
case 'highlighted':
379
396
return style.highlightedForeground;
0 commit comments