mirror of
https://gitee.com/antv/g6.git
synced 2024-12-15 10:01:09 +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
195 lines
4.6 KiB
JavaScript
195 lines
4.6 KiB
JavaScript
import { Graph, Extensions, extend } from '@antv/g6';
|
|
|
|
const ExtGraph = extend(Graph, {
|
|
edges: {
|
|
'cubic-horizontal-edge': Extensions.CubicHorizontalEdge,
|
|
},
|
|
});
|
|
|
|
const layoutConfigs = {
|
|
'Two Side': {
|
|
type: 'mindmap',
|
|
direction: 'H',
|
|
getHeight: () => {
|
|
return 16;
|
|
},
|
|
getWidth: () => {
|
|
return 16;
|
|
},
|
|
getVGap: () => {
|
|
return 10;
|
|
},
|
|
getHGap: () => {
|
|
return 100;
|
|
},
|
|
getSide: undefined,
|
|
},
|
|
Right: {
|
|
type: 'mindmap',
|
|
direction: 'H',
|
|
getHeight: () => {
|
|
return 16;
|
|
},
|
|
getWidth: () => {
|
|
return 16;
|
|
},
|
|
getVGap: () => {
|
|
return 10;
|
|
},
|
|
getHGap: () => {
|
|
return 100;
|
|
},
|
|
getSide: () => {
|
|
return 'right';
|
|
},
|
|
},
|
|
Left: {
|
|
type: 'mindmap',
|
|
direction: 'H',
|
|
getHeight: () => {
|
|
return 16;
|
|
},
|
|
getWidth: () => {
|
|
return 16;
|
|
},
|
|
getVGap: () => {
|
|
return 10;
|
|
},
|
|
getHGap: () => {
|
|
return 100;
|
|
},
|
|
getSide: () => {
|
|
return 'left';
|
|
},
|
|
},
|
|
};
|
|
|
|
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) => {
|
|
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'],
|
|
},
|
|
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['Two Side'],
|
|
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 updateNodes = graph.getAllNodesData().map((node) => ({
|
|
id: node.id,
|
|
data: {
|
|
layoutDirection: name,
|
|
},
|
|
}));
|
|
graph.updateData('node', updateNodes);
|
|
graph.layout(layoutConfigs[name]);
|
|
});
|
|
});
|
|
|
|
window.graph = graph;
|
|
});
|