169 lines
5.1 KiB
JavaScript
169 lines
5.1 KiB
JavaScript
|
/**
|
||
|
* 三叉树
|
||
|
*/
|
||
|
SV.registerLayouter('TriTree', {
|
||
|
defineOptions() {
|
||
|
return {
|
||
|
/**
|
||
|
* 结点
|
||
|
*/
|
||
|
element: {
|
||
|
default: {
|
||
|
type: 'tri-tree-node',
|
||
|
size: [60, 30],
|
||
|
label: '[data]',
|
||
|
style: {
|
||
|
fill: '#ff2e63',
|
||
|
stroke: "#333",
|
||
|
cursor: 'pointer'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
/**
|
||
|
* 箭头
|
||
|
*/
|
||
|
link: {
|
||
|
child: {
|
||
|
type: 'line',
|
||
|
sourceAnchor: index => index,
|
||
|
targetAnchor: 3,
|
||
|
style: {
|
||
|
stroke: '#333',
|
||
|
//边的响应范围
|
||
|
lineAppendWidth: 6,
|
||
|
cursor: 'pointer',
|
||
|
endArrow: 'default',
|
||
|
startArrow: {
|
||
|
//参数:半径、偏移量
|
||
|
path: G6.Arrow.circle(2, -1),
|
||
|
fill: '#333'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
parent: {
|
||
|
type: 'line',
|
||
|
sourceAnchor: 4,
|
||
|
targetAnchor: 2,
|
||
|
style: {
|
||
|
stroke: '#A9A9A9',
|
||
|
//边的响应范围
|
||
|
lineAppendWidth: 6,
|
||
|
cursor: 'pointer',
|
||
|
endArrow: 'default',
|
||
|
startArrow: {
|
||
|
//参数:半径、偏移量
|
||
|
path: G6.Arrow.circle(2, -1),
|
||
|
fill: '#333'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
/**
|
||
|
* 指针
|
||
|
*/
|
||
|
marker: {
|
||
|
external: {
|
||
|
type: "pointer",
|
||
|
anchor: 3,
|
||
|
offset: 14,
|
||
|
style: {
|
||
|
fill: '#f08a5d'
|
||
|
},
|
||
|
labelOptions: {
|
||
|
style: {
|
||
|
// stroke:
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
/**
|
||
|
* 布局
|
||
|
*/
|
||
|
layout: {
|
||
|
xInterval: 40,
|
||
|
yInterval: 40,
|
||
|
},
|
||
|
/**
|
||
|
* 动画
|
||
|
*/
|
||
|
//animation: {
|
||
|
// enable: true,
|
||
|
// duration: 750,
|
||
|
// timingFunction: 'easePolyOut'
|
||
|
//}
|
||
|
};
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 对子树进行递归布局
|
||
|
*/
|
||
|
layoutItem(node, parent, index, layoutOptions) {
|
||
|
// 次双亲不进行布局
|
||
|
if(!node) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
let bound = node.getBound(), //获取包围盒
|
||
|
width = bound.width,
|
||
|
height = bound.height,
|
||
|
group = new Group(node); //创建分组
|
||
|
|
||
|
//有双亲,设置结点的位置
|
||
|
if(parent) {
|
||
|
// 纵坐标
|
||
|
node.set('y', parent.get('y') + layoutOptions.yInterval + height);
|
||
|
// 左节点横坐标
|
||
|
if(index === 0) {
|
||
|
node.set('x', parent.get('x') - layoutOptions.xInterval / 2 - width / 2);
|
||
|
}
|
||
|
// 右结点横坐标
|
||
|
if(index === 1) {
|
||
|
node.set('x', parent.get('x') + layoutOptions.xInterval / 2 + width / 2);
|
||
|
}
|
||
|
}
|
||
|
//有孩子
|
||
|
if(node.child && (node.child[0] || node.child[1])) {
|
||
|
let leftChild = node.child[0],
|
||
|
rightChild = node.child[1],
|
||
|
leftGroup = this.layoutItem(leftChild, node, 0, layoutOptions),
|
||
|
rightGroup = this.layoutItem(rightChild, node, 1, layoutOptions),
|
||
|
intersection = null,
|
||
|
move = 0;
|
||
|
|
||
|
// 处理左子树中子树相交问题
|
||
|
if(leftGroup && rightChild) {
|
||
|
//求出包围盒相交部分
|
||
|
intersection = Bound.intersect(leftGroup.getBound(), rightGroup.getBound());
|
||
|
move = 0;
|
||
|
//处理
|
||
|
if(intersection && intersection.width > 0) {
|
||
|
move = (intersection.width + layoutOptions.xInterval) / 2;
|
||
|
// console.log(move,intersection.width,layoutOptions.xInterval);
|
||
|
leftGroup.translate(-move, 0);
|
||
|
rightGroup.translate(move, 0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//加入分组
|
||
|
if(leftGroup) {
|
||
|
group.add(leftGroup);
|
||
|
}
|
||
|
if(rightGroup) {
|
||
|
group.add(rightGroup)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
//返回分组
|
||
|
return group;
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 布局函数
|
||
|
* @param {*} elements
|
||
|
* @param {*} layoutOptions
|
||
|
*/
|
||
|
layout(elements, layoutOptions) {
|
||
|
let root = elements[0];
|
||
|
this.layoutItem(root, null, -1, layoutOptions);
|
||
|
}
|
||
|
});
|