2023-08-29 21:58:37 +08:00
|
|
|
import { Graph, Extensions, extend } from '@antv/g6';
|
2023-08-28 20:39:59 +08:00
|
|
|
|
2023-08-29 21:58:37 +08:00
|
|
|
const ExtGraph = extend(Graph, {
|
|
|
|
edges: {
|
|
|
|
'cubic-horizontal-edge': Extensions.CubicHorizontalEdge,
|
|
|
|
'cubic-vertical-edge': Extensions.CubicVerticalEdge,
|
|
|
|
},
|
|
|
|
});
|
2023-08-28 20:39:59 +08:00
|
|
|
const layoutConfigs = {
|
|
|
|
LR: {
|
|
|
|
type: 'dendrogram',
|
|
|
|
direction: 'LR', // H / V / LR / RL / TB / BT
|
2023-08-31 22:16:30 +08:00
|
|
|
nodeSep: 36,
|
|
|
|
rankSep: 250,
|
2023-08-28 20:39:59 +08:00
|
|
|
},
|
|
|
|
TB: {
|
|
|
|
type: 'dendrogram',
|
|
|
|
direction: 'TB', // H / V / LR / RL / TB / BT
|
|
|
|
nodeSep: 40,
|
|
|
|
rankSep: 100,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const container = document.getElementById('container');
|
|
|
|
const width = container.scrollWidth;
|
|
|
|
const height = container.scrollHeight || 500;
|
|
|
|
|
|
|
|
fetch('https://gw.alipayobjects.com/os/antvdemo/assets/data/algorithm-category.json')
|
|
|
|
.then((res) => res.json())
|
|
|
|
.then((data) => {
|
2023-08-29 21:58:37 +08:00
|
|
|
const graph = new ExtGraph({
|
2023-08-28 20:39:59 +08:00
|
|
|
container,
|
|
|
|
width,
|
|
|
|
height,
|
2023-11-29 10:59:21 +08:00
|
|
|
transforms: [
|
|
|
|
{
|
|
|
|
type: 'transform-v4-data',
|
|
|
|
activeLifecycle: ['read'],
|
|
|
|
},
|
|
|
|
],
|
2023-08-28 20:39:59 +08:00
|
|
|
modes: {
|
|
|
|
default: ['drag-canvas', 'zoom-canvas', 'drag-node', 'collapse-expand-tree'],
|
|
|
|
},
|
|
|
|
node: (model) => {
|
|
|
|
const configRelatedToLayout =
|
|
|
|
model.data.layoutDirection === 'TB'
|
|
|
|
? {
|
|
|
|
labelShape: {
|
|
|
|
text: model.id,
|
|
|
|
position: 'bottom',
|
|
|
|
offsetX: 0,
|
|
|
|
},
|
|
|
|
anchorPoints: [
|
|
|
|
[0.5, 0],
|
|
|
|
[0.5, 1],
|
|
|
|
],
|
|
|
|
}
|
|
|
|
: {
|
|
|
|
labelShape: {
|
|
|
|
text: model.id,
|
|
|
|
position: model.data.childrenIds?.length ? 'left' : 'right',
|
|
|
|
offsetX: model.data.childrenIds?.length ? -10 : 10,
|
|
|
|
maxWidth: '300%',
|
|
|
|
},
|
|
|
|
anchorPoints: [
|
|
|
|
[0, 0.5],
|
|
|
|
[1, 0.5],
|
|
|
|
],
|
|
|
|
};
|
|
|
|
return {
|
|
|
|
id: model.id,
|
|
|
|
data: {
|
|
|
|
...model.data,
|
|
|
|
labelBackgroundShape: {},
|
|
|
|
...configRelatedToLayout,
|
|
|
|
animates: {
|
|
|
|
update: [
|
|
|
|
{
|
|
|
|
fields: ['x', 'y'],
|
|
|
|
duration: 500,
|
|
|
|
shapeId: 'group',
|
|
|
|
order: 0,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
hide: [
|
|
|
|
{
|
|
|
|
fields: ['opacity'],
|
|
|
|
duration: 200,
|
|
|
|
shapeId: 'keyShape',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: ['opacity'],
|
|
|
|
duration: 200,
|
|
|
|
shapeId: 'labelShape',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
show: [
|
|
|
|
{
|
|
|
|
fields: ['opacity'],
|
|
|
|
duration: 1000,
|
|
|
|
shapeId: 'keyShape',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
fields: ['opacity'],
|
|
|
|
duration: 1000,
|
|
|
|
shapeId: 'labelShape',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
edge: {
|
|
|
|
type: 'cubic-horizontal-edge',
|
|
|
|
},
|
|
|
|
layout: layoutConfigs.LR,
|
|
|
|
autoFit: 'view',
|
|
|
|
data: {
|
|
|
|
type: 'treeData',
|
|
|
|
value: data,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const btnContainer = document.createElement('div');
|
|
|
|
btnContainer.style.position = 'absolute';
|
|
|
|
container.appendChild(btnContainer);
|
|
|
|
const tip = document.createElement('span');
|
|
|
|
tip.innerHTML = '👉 Change configs:';
|
|
|
|
btnContainer.appendChild(tip);
|
|
|
|
|
|
|
|
Object.keys(layoutConfigs).forEach((name, i) => {
|
|
|
|
const btn = document.createElement('a');
|
|
|
|
btn.innerHTML = name;
|
|
|
|
btn.style.backgroundColor = 'rgba(255, 255, 255, 0.8)';
|
|
|
|
btn.style.padding = '4px';
|
|
|
|
btn.style.marginLeft = i > 0 ? '24px' : '8px';
|
|
|
|
btnContainer.appendChild(btn);
|
|
|
|
btn.addEventListener('click', () => {
|
|
|
|
const updateEdges = graph.getAllEdgesData().map((edge) => ({
|
|
|
|
id: edge.id,
|
|
|
|
data: {
|
|
|
|
type: name === 'LR' ? 'cubic-horizontal-edge' : 'cubic-vertical-edge',
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
const updateNodes = graph.getAllNodesData().map((node) => ({
|
|
|
|
id: node.id,
|
|
|
|
data: {
|
|
|
|
layoutDirection: name,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
graph.updateData('node', updateNodes);
|
|
|
|
graph.updateData('edge', updateEdges);
|
|
|
|
graph.layout(layoutConfigs[name]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-12-04 14:42:33 +08:00
|
|
|
window.graph = graph;
|
2023-08-28 20:39:59 +08:00
|
|
|
});
|