mirror of
https://gitee.com/antv/g6.git
synced 2024-12-15 18:11:08 +08:00
0b89bf7f86
* refactor: remove unused demos * refactor: adjust onresize handle * refactor: update 3d data resource * docs: update demos imports * refactor: handle resize uniformly and import module name * fix: fix issue that demo cannot get container * refactor: remove unused demos of algorithm and case
178 lines
4.6 KiB
JavaScript
178 lines
4.6 KiB
JavaScript
import { Graph, Extensions, extend } from '@antv/g6';
|
|
|
|
const ExtGraph = extend(Graph, {
|
|
edges: {
|
|
'cubic-horizontal-edge': Extensions.CubicHorizontalEdge,
|
|
'cubic-vertical-edge': Extensions.CubicVerticalEdge,
|
|
},
|
|
behaviors: {
|
|
'activate-relations': Extensions.ActivateRelations,
|
|
},
|
|
});
|
|
|
|
const layoutConfigs = {
|
|
LR: {
|
|
type: 'dendrogram',
|
|
direction: 'LR', // H / V / LR / RL / TB / BT
|
|
nodeSep: 40,
|
|
rankSep: 70,
|
|
},
|
|
TB: {
|
|
type: 'dendrogram',
|
|
direction: 'TB', // H / V / LR / RL / TB / BT
|
|
nodeSep: 40,
|
|
rankSep: 40,
|
|
},
|
|
};
|
|
|
|
const container = document.getElementById('container');
|
|
const width = container.scrollWidth;
|
|
const height = container.scrollHeight || 500;
|
|
|
|
fetch('https://gw.alipayobjects.com/os/antvdemo/assets/data/relations.json')
|
|
.then((res) => res.json())
|
|
.then((data) => {
|
|
data.nodes.forEach((node, i) => (node.cluster = i % 3));
|
|
const graph = new ExtGraph({
|
|
container,
|
|
width,
|
|
height,
|
|
transforms: [
|
|
{
|
|
type: 'transform-v4-data',
|
|
activeLifecycle: ['read'],
|
|
},
|
|
],
|
|
modes: {
|
|
default: ['drag-canvas', 'zoom-canvas', 'drag-node', 'collapse-expand-tree', 'activate-relations'],
|
|
},
|
|
theme: {
|
|
type: 'spec',
|
|
specification: {
|
|
node: {
|
|
dataTypeField: 'cluster',
|
|
},
|
|
},
|
|
},
|
|
node: (model) => {
|
|
return {
|
|
id: model.id,
|
|
data: {
|
|
...model.data,
|
|
type: 'rect-node',
|
|
// lodLevels: [],
|
|
keyShape: {
|
|
width: 50,
|
|
height: 20,
|
|
},
|
|
labelShape: {
|
|
text: model.id,
|
|
position: 'bottom',
|
|
maxWidth: '120%',
|
|
lod: Math.floor(Math.random() * 5 - 3),
|
|
fontSize: 8,
|
|
},
|
|
labelBackgroundShape: {},
|
|
anchorPoints:
|
|
model.data.layoutDirection === 'TB'
|
|
? [
|
|
[0.5, 0],
|
|
[0.5, 1],
|
|
]
|
|
: [
|
|
[0, 0.5],
|
|
[1, 0.5],
|
|
],
|
|
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',
|
|
keyShape: {
|
|
opacity: 0.5,
|
|
endArrow: true,
|
|
},
|
|
},
|
|
layout: layoutConfigs.LR,
|
|
autoFit: 'view',
|
|
data: {
|
|
type: 'graphData',
|
|
value: data,
|
|
},
|
|
edgeState: {
|
|
active: {
|
|
lineWidth: 3,
|
|
},
|
|
},
|
|
});
|
|
|
|
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]);
|
|
});
|
|
});
|
|
|
|
window.graph = graph;
|
|
});
|