2020-01-06 16:51:09 +08:00
|
|
|
|
import G6 from '../../../src'
|
|
|
|
|
import Minimap from '../../../src/plugins/minimap'
|
|
|
|
|
import Simulate from 'event-simulate'
|
2020-01-09 15:16:20 +08:00
|
|
|
|
import { timerOut } from '../util/timeOut'
|
2020-01-06 16:51:09 +08:00
|
|
|
|
|
|
|
|
|
const div = document.createElement('div');
|
|
|
|
|
div.id = 'minimap';
|
|
|
|
|
document.body.appendChild(div);
|
|
|
|
|
const container = document.createElement('div');
|
|
|
|
|
div.appendChild(container);
|
|
|
|
|
|
|
|
|
|
describe('minimap', () => {
|
|
|
|
|
|
|
|
|
|
it('minimap with default settings & destroy', () => {
|
2020-01-14 17:24:35 +08:00
|
|
|
|
const minimap = new Minimap({ size: [ 200, 200 ] });
|
|
|
|
|
const graph = new G6.Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
defaultEdge: {
|
2020-01-16 18:11:35 +08:00
|
|
|
|
type: 'line',
|
2020-01-14 17:24:35 +08:00
|
|
|
|
style: {
|
|
|
|
|
endArrow: {
|
|
|
|
|
path: 'M 10,0 L -10,-10 L -10,10 Z',
|
|
|
|
|
d: 10
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
modes: {
|
|
|
|
|
default: [{
|
|
|
|
|
type: 'drag-node',
|
|
|
|
|
delegate: false
|
|
|
|
|
}, 'zoom-canvas', 'click-select', 'drag-canvas' ]
|
|
|
|
|
},
|
|
|
|
|
plugins: [ minimap ]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
graph.addItem('node', { id: 'node1', label: 'text1', x: 50, y: 50 });
|
|
|
|
|
graph.addItem('node', { id: 'node2', label: 'text2', x: 120, y: 150 });
|
|
|
|
|
graph.addItem('node', { id: 'node3', label: 'text3', x: 150, y: 190 });
|
|
|
|
|
graph.addItem('node', { id: 'node4', label: 'text4', x: 220, y: 250 });
|
|
|
|
|
graph.addItem('edge', { id: 'edge1', source: 'node1', target: 'node2' });
|
2020-01-06 16:51:09 +08:00
|
|
|
|
const canvas = minimap.getCanvas();
|
|
|
|
|
expect(canvas).not.toBe(undefined);
|
|
|
|
|
expect(canvas.get('width')).toEqual(200);
|
|
|
|
|
expect(canvas.get('height')).toEqual(200);
|
|
|
|
|
|
|
|
|
|
const viewport = minimap.getViewport();
|
|
|
|
|
expect(viewport).not.toBe(undefined);
|
|
|
|
|
expect(viewport.className.indexOf('g6-minimap-viewport') >= 0).toBe(true);
|
|
|
|
|
expect(viewport.style.left).toEqual('0px');
|
|
|
|
|
expect(viewport.style.top).toEqual('0px');
|
|
|
|
|
expect(viewport.style.width).toEqual('200px');
|
|
|
|
|
expect(viewport.style.height).toEqual('200px');
|
|
|
|
|
|
|
|
|
|
// 缩小的时候,viewport已经最大了,不会更大
|
|
|
|
|
graph.zoom(0.5, { x: 250, y: 250 });
|
|
|
|
|
expect(viewport.style.left).toEqual('0px');
|
|
|
|
|
expect(viewport.style.top).toEqual('0px');
|
|
|
|
|
expect(viewport.style.width).toEqual('200px');
|
|
|
|
|
expect(viewport.style.height).toEqual('200px');
|
|
|
|
|
|
|
|
|
|
graph.zoom(2.5, { x: 250, y: 250 });
|
|
|
|
|
|
2020-01-13 21:05:56 +08:00
|
|
|
|
expect(viewport.style.left).toEqual('20px');
|
|
|
|
|
expect(viewport.style.top).toEqual('20px');
|
2020-01-06 16:51:09 +08:00
|
|
|
|
expect(viewport.style.width).toEqual('160px');
|
|
|
|
|
expect(viewport.style.height).toEqual('160px');
|
|
|
|
|
|
|
|
|
|
minimap.destroyPlugin();
|
|
|
|
|
|
|
|
|
|
const container: HTMLElement = div.childNodes[1] as HTMLElement;
|
|
|
|
|
expect(container.innerHTML).toEqual('');
|
|
|
|
|
|
|
|
|
|
graph.zoom(2.5, { x: 250, y: 250 });
|
2020-01-13 21:05:56 +08:00
|
|
|
|
expect(viewport.style.left).toEqual('20px');
|
|
|
|
|
expect(viewport.style.top).toEqual('20px');
|
2020-01-06 16:51:09 +08:00
|
|
|
|
expect(viewport.style.width).toEqual('160px');
|
|
|
|
|
expect(viewport.style.height).toEqual('160px');
|
|
|
|
|
});
|
2020-01-13 21:05:56 +08:00
|
|
|
|
xit('move viewport', () => {
|
2020-01-06 16:51:09 +08:00
|
|
|
|
const minimap = new Minimap({ size: [ 200, 200 ] });
|
|
|
|
|
const graph = new G6.Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
plugins: [ minimap ]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const viewport = minimap.getViewport();
|
|
|
|
|
const canvas = minimap.getCanvas();
|
|
|
|
|
|
|
|
|
|
graph.zoom(2, { x: 250, y: 250 });
|
|
|
|
|
graph.translate(100, 100);
|
|
|
|
|
|
|
|
|
|
expect(viewport.style.left).toEqual('30px');
|
|
|
|
|
expect(viewport.style.top).toEqual('30px');
|
|
|
|
|
expect(viewport.style.width).toEqual('100px');
|
|
|
|
|
expect(viewport.style.height).toEqual('100px');
|
|
|
|
|
|
|
|
|
|
const container = canvas.get('container');
|
|
|
|
|
|
|
|
|
|
Simulate.simulate(viewport, 'mousedown', {
|
|
|
|
|
clientX: 100,
|
|
|
|
|
clientY: 100,
|
|
|
|
|
target: viewport
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Simulate.simulate(container, 'mousemove', {
|
|
|
|
|
clientX: 120,
|
|
|
|
|
clientY: 120
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Simulate.simulate(container, 'mouseup', {
|
|
|
|
|
clientX: 120,
|
|
|
|
|
clientY: 120
|
|
|
|
|
});
|
|
|
|
|
|
2020-01-14 17:24:35 +08:00
|
|
|
|
// timerOut(() => {
|
|
|
|
|
// expect(viewport.style.left).toEqual('50px');
|
|
|
|
|
// expect(viewport.style.top).toEqual('50px');
|
|
|
|
|
// expect(viewport.style.width).toEqual('100px');
|
|
|
|
|
// expect(viewport.style.height).toEqual('100px');
|
|
|
|
|
|
|
|
|
|
// const matrix = graph.get('group').getMatrix();
|
|
|
|
|
// expect(matrix[0]).toEqual(2);
|
|
|
|
|
// expect(matrix[4]).toEqual(2);
|
|
|
|
|
// expect(matrix[6]).toEqual(-250);
|
|
|
|
|
// expect(matrix[7]).toEqual(-250);
|
|
|
|
|
|
|
|
|
|
// Simulate.simulate(viewport, 'mousedown', {
|
|
|
|
|
// clientX: 200,
|
|
|
|
|
// clientY: 200,
|
|
|
|
|
// target: viewport
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
// Simulate.simulate(container, 'mousemove', {
|
|
|
|
|
// clientX: 0,
|
|
|
|
|
// clientY: 0
|
|
|
|
|
// });
|
|
|
|
|
|
|
|
|
|
// timerOut(() => {
|
|
|
|
|
// expect(viewport.style.left).toEqual('100px');
|
|
|
|
|
// expect(viewport.style.top).toEqual('100px');
|
|
|
|
|
// expect(viewport.style.width).toEqual('100px');
|
|
|
|
|
// expect(viewport.style.height).toEqual('100px');
|
|
|
|
|
|
|
|
|
|
// const matrix = graph.get('group').getMatrix();
|
|
|
|
|
// expect(matrix[0]).toEqual(2);
|
|
|
|
|
// expect(matrix[4]).toEqual(2);
|
|
|
|
|
// expect(matrix[6]).toEqual(0);
|
|
|
|
|
// expect(matrix[7]).toEqual(0);
|
|
|
|
|
// graph.destroy();
|
|
|
|
|
// }, 50);
|
|
|
|
|
// }, 50);
|
2020-01-06 16:51:09 +08:00
|
|
|
|
});
|
|
|
|
|
it('delegate type of minimap', () => {
|
|
|
|
|
const minimap = new Minimap({
|
|
|
|
|
size: [ 200, 200 ],
|
|
|
|
|
type: 'delegate',
|
|
|
|
|
delegateStyle: {
|
|
|
|
|
fill: '#fff'
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const graph = new G6.Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
plugins: [ minimap ]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const nodeBBox = graph.addItem('node', { id: 'node', x: 100, y: 100, size: 16 }).getBBox();
|
|
|
|
|
|
|
|
|
|
const canvas = minimap.getCanvas();
|
|
|
|
|
const delegateShape = canvas.get('children')[0].get('children')[0];
|
|
|
|
|
|
|
|
|
|
expect(delegateShape.attr('x')).toEqual(nodeBBox.minX);
|
|
|
|
|
expect(delegateShape.attr('y')).toEqual(nodeBBox.minY);
|
|
|
|
|
expect(delegateShape.attr('width')).toEqual(nodeBBox.width);
|
|
|
|
|
expect(delegateShape.attr('height')).toEqual(nodeBBox.height);
|
|
|
|
|
expect(delegateShape.attr('fill')).toEqual('#fff');
|
|
|
|
|
expect(delegateShape.attr('stroke')).toEqual('#096dd9');
|
|
|
|
|
graph.destroy();
|
|
|
|
|
});
|
|
|
|
|
it('minimap container', () => {
|
|
|
|
|
const minimap = new Minimap({
|
|
|
|
|
container,
|
|
|
|
|
size: [ 200, 200 ],
|
|
|
|
|
className: 'test-className'
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const graph = new G6.Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
plugins: [ minimap ],
|
|
|
|
|
modes: {
|
|
|
|
|
default: [{
|
|
|
|
|
type: 'drag-node',
|
|
|
|
|
delegate: false
|
|
|
|
|
}, 'zoom-canvas', 'click-select', 'drag-canvas' ]
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const minimapContainer: HTMLElement = container.childNodes[0] as HTMLElement;
|
|
|
|
|
expect(minimapContainer.childNodes).not.toBe(undefined);
|
|
|
|
|
expect(minimapContainer.className).toEqual('test-className');
|
|
|
|
|
expect(minimapContainer.style.width).toEqual('200px');
|
|
|
|
|
expect(minimapContainer.style.width).toEqual('200px');
|
|
|
|
|
|
|
|
|
|
const minimapContainerNode = minimapContainer.childNodes[0] as HTMLElement
|
|
|
|
|
expect(minimapContainerNode.tagName).toEqual('DIV');
|
|
|
|
|
expect(minimapContainerNode.style.position).toEqual('relative');
|
|
|
|
|
expect(minimapContainerNode.childNodes[0]).toEqual(minimap.getCanvas().get('el'));
|
|
|
|
|
|
|
|
|
|
graph.destroy();
|
|
|
|
|
expect(container.innerHTML).toEqual('');
|
|
|
|
|
});
|
|
|
|
|
it('canvas minX minY < 0', () => {
|
|
|
|
|
const minimap = new Minimap({ size: [ 200, 200 ] });
|
|
|
|
|
const graph = new G6.Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
plugins: [ minimap ],
|
2020-01-14 17:24:35 +08:00
|
|
|
|
defaultNode: {
|
|
|
|
|
size: 60
|
|
|
|
|
},
|
|
|
|
|
modes: {
|
|
|
|
|
default: ['drag-node', 'drag-canvas', 'zoom-canvas']
|
|
|
|
|
}
|
2020-01-06 16:51:09 +08:00
|
|
|
|
});
|
|
|
|
|
graph.addItem('node', { id: 'node1', x: -50, y: -50 });
|
|
|
|
|
const canvas = minimap.getCanvas();
|
|
|
|
|
const matrix = canvas.getMatrix();
|
|
|
|
|
|
2020-01-13 21:05:56 +08:00
|
|
|
|
expect(matrix[6] - 30 < 1).toBe(false);
|
|
|
|
|
expect(matrix[7] - 30 < 1).toBe(false);
|
2020-01-06 16:51:09 +08:00
|
|
|
|
graph.destroy();
|
|
|
|
|
});
|
|
|
|
|
it('keyShapeOnly minimap', () => {
|
|
|
|
|
const minimap = new Minimap({ size: [ 200, 200 ], type: 'keyShape' });
|
|
|
|
|
const graph = new G6.Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
plugins: [ minimap ]
|
|
|
|
|
});
|
|
|
|
|
graph.addItem('node', { id: 'node1', label: 'text1', x: 50, y: 50 });
|
|
|
|
|
graph.addItem('node', { id: 'node2', label: 'text2', x: 120, y: 150 });
|
|
|
|
|
graph.addItem('edge', { id: 'edge1', source: 'node1', target: 'node2' });
|
|
|
|
|
|
|
|
|
|
const canvas = minimap.getCanvas();
|
|
|
|
|
const shapeGroup = canvas.get('children')[0].get('children');
|
|
|
|
|
|
|
|
|
|
// TODO wait for G
|
|
|
|
|
expect(shapeGroup.length).toEqual(3);
|
|
|
|
|
// expect(shapeGroup[0].type).toEqual('path');
|
|
|
|
|
expect(shapeGroup[0].attr('path')).not.toBe(undefined);
|
|
|
|
|
// expect(shapeGroup[1].type).toEqual('group');
|
|
|
|
|
expect(shapeGroup[1].getMatrix()[6]).toEqual(50);
|
|
|
|
|
expect(shapeGroup[1].getMatrix()[7]).toEqual(50);
|
|
|
|
|
expect(shapeGroup[1].get('children').length).toEqual(1);
|
|
|
|
|
// expect(shapeGroup[1].get('children')[0].type).toEqual('circle');
|
|
|
|
|
// expect(shapeGroup[2].type).toEqual('group');
|
|
|
|
|
expect(shapeGroup[2].getMatrix()[6]).toEqual(120);
|
|
|
|
|
expect(shapeGroup[2].getMatrix()[7]).toEqual(150);
|
|
|
|
|
expect(shapeGroup[2].get('children').length).toEqual(1);
|
|
|
|
|
// expect(shapeGroup[2].get('children')[0].type).toEqual('circle');
|
|
|
|
|
graph.destroy();
|
|
|
|
|
});
|
|
|
|
|
});
|