2020-02-14 10:10:54 +08:00
|
|
|
|
import '../../../src/behavior';
|
|
|
|
|
import '../../../src/shape';
|
|
|
|
|
import Graph from '../../../src/graph/graph';
|
2019-12-19 20:27:48 +08:00
|
|
|
|
import { Event } from '@antv/g-canvas';
|
|
|
|
|
|
|
|
|
|
const div = document.createElement('div');
|
|
|
|
|
div.id = 'zoom-spec';
|
|
|
|
|
document.body.appendChild(div);
|
|
|
|
|
|
|
|
|
|
class G6Event extends Event {
|
2020-02-14 10:10:54 +08:00
|
|
|
|
wheelDelta: number;
|
2019-12-19 20:27:48 +08:00
|
|
|
|
}
|
|
|
|
|
function createWheelEvent(canvas, delta, x, y) {
|
|
|
|
|
const bbox = canvas.getBoundingClientRect();
|
|
|
|
|
const e = new G6Event('wheel', {});
|
|
|
|
|
e.clientX = bbox.left + x;
|
|
|
|
|
e.clientY = bbox.top + y;
|
|
|
|
|
e.wheelDelta = delta;
|
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function approximateEqual(a, b) {
|
|
|
|
|
return Math.abs(a - b) < 0.0001;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
describe('zoom-canvas', () => {
|
|
|
|
|
it('zoom canvas', () => {
|
|
|
|
|
const graph = new Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
modes: {
|
2020-02-14 10:10:54 +08:00
|
|
|
|
default: ['zoom-canvas'],
|
2019-12-19 20:27:48 +08:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
const e = createWheelEvent(graph.get('canvas').get('el'), 100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
let matrix = graph.get('group').getMatrix();
|
|
|
|
|
expect(approximateEqual(matrix[0], 1.1)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[4], 1.1)).toBe(true);
|
2020-01-03 20:42:59 +08:00
|
|
|
|
expect(approximateEqual(matrix[6], -10)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[7], -10)).toBe(true);
|
2019-12-19 20:27:48 +08:00
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
matrix = graph.get('group').getMatrix();
|
|
|
|
|
expect(approximateEqual(matrix[0], 1.21)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[4], 1.21)).toBe(true);
|
2020-01-03 20:42:59 +08:00
|
|
|
|
expect(approximateEqual(matrix[6], -21)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[7], -21)).toBe(true);
|
2019-12-19 20:27:48 +08:00
|
|
|
|
graph.destroy();
|
|
|
|
|
});
|
2020-06-08 19:08:35 +08:00
|
|
|
|
it('event not prevented', () => {
|
|
|
|
|
const graph = new Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
modes: {
|
|
|
|
|
default: [
|
|
|
|
|
{
|
|
|
|
|
type: 'zoom-canvas',
|
|
|
|
|
shouldUpdate: e => {
|
|
|
|
|
expect(e.defaultPrevented).toBe(false);
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
const e = createWheelEvent(graph.get('canvas').get('el'), 100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
graph.destroy();
|
|
|
|
|
});
|
2020-01-02 14:47:41 +08:00
|
|
|
|
it('prevent update', () => {
|
|
|
|
|
const graph = new Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
modes: {
|
2020-02-14 10:10:54 +08:00
|
|
|
|
default: [
|
|
|
|
|
{
|
|
|
|
|
type: 'zoom-canvas',
|
|
|
|
|
shouldUpdate: e => {
|
|
|
|
|
expect(e).not.toBe(undefined);
|
|
|
|
|
return false;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2020-01-02 14:47:41 +08:00
|
|
|
|
});
|
|
|
|
|
const e = createWheelEvent(graph.get('canvas').get('el'), 100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
let matrix = graph.get('group').getMatrix();
|
|
|
|
|
expect(matrix).toBe(null);
|
|
|
|
|
graph.destroy();
|
|
|
|
|
});
|
2019-12-19 20:27:48 +08:00
|
|
|
|
it('max zoom & min zoom', () => {
|
|
|
|
|
const graph = new Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
modes: {
|
2020-02-14 10:10:54 +08:00
|
|
|
|
default: [
|
|
|
|
|
{
|
|
|
|
|
type: 'zoom-canvas',
|
|
|
|
|
maxZoom: 5,
|
|
|
|
|
minZoom: 0.5,
|
|
|
|
|
},
|
|
|
|
|
],
|
2019-12-19 20:27:48 +08:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
graph.zoom(5);
|
|
|
|
|
let e = createWheelEvent(graph.get('canvas').get('el'), -100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
let matrix = graph.get('group').getMatrix();
|
|
|
|
|
expect(matrix[0]).toEqual(4.5);
|
|
|
|
|
expect(matrix[4]).toEqual(4.5);
|
|
|
|
|
graph.zoom(0.1);
|
|
|
|
|
e = createWheelEvent(graph.get('canvas').get('el'), 100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
matrix = graph.get('group').getMatrix();
|
|
|
|
|
expect(matrix[0]).toEqual(0.45);
|
|
|
|
|
expect(matrix[4]).toEqual(0.45);
|
|
|
|
|
});
|
|
|
|
|
it('unbind zoom', () => {
|
|
|
|
|
const graph = new Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
modes: {
|
2020-02-14 10:10:54 +08:00
|
|
|
|
default: ['zoom-canvas'],
|
|
|
|
|
custom: [],
|
2019-12-19 20:27:48 +08:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
const e = createWheelEvent(graph.get('canvas').get('el'), -100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
let matrix = graph.get('group').getMatrix();
|
|
|
|
|
expect(approximateEqual(matrix[0], 0.9)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[4], 0.9)).toBe(true);
|
2020-01-03 20:42:59 +08:00
|
|
|
|
expect(matrix[6]).toEqual(10);
|
|
|
|
|
expect(matrix[7]).toEqual(10);
|
2019-12-19 20:27:48 +08:00
|
|
|
|
graph.setMode('custom');
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
matrix = graph.get('group').getMatrix();
|
|
|
|
|
expect(approximateEqual(matrix[0], 0.9)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[4], 0.9)).toBe(true);
|
2020-01-03 20:42:59 +08:00
|
|
|
|
expect(matrix[6]).toEqual(10);
|
|
|
|
|
expect(matrix[7]).toEqual(10);
|
2019-12-19 20:27:48 +08:00
|
|
|
|
});
|
2020-03-18 14:00:54 +08:00
|
|
|
|
|
2020-03-18 17:49:48 +08:00
|
|
|
|
it('zoom with optimize', () => {
|
2020-03-18 14:00:54 +08:00
|
|
|
|
const graph = new Graph({
|
|
|
|
|
container: div,
|
|
|
|
|
width: 500,
|
|
|
|
|
height: 500,
|
|
|
|
|
modes: {
|
|
|
|
|
default: [{
|
|
|
|
|
type: 'zoom-canvas',
|
|
|
|
|
enableOptimize: true
|
|
|
|
|
}]
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let e = createWheelEvent(graph.get('canvas').get('el'), 100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
let matrix = graph.get('group').getMatrix();
|
|
|
|
|
console.log(matrix)
|
|
|
|
|
expect(approximateEqual(matrix[0], 1.1)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[4], 1.1)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[6], -10)).toBe(true);
|
|
|
|
|
expect(approximateEqual(matrix[7], -10)).toBe(true);
|
|
|
|
|
|
|
|
|
|
const data = {
|
|
|
|
|
nodes: [
|
|
|
|
|
{
|
|
|
|
|
id: 'node1',
|
|
|
|
|
x: 100,
|
|
|
|
|
y: 100,
|
|
|
|
|
label: 'label'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 'node2',
|
|
|
|
|
x: 100,
|
|
|
|
|
y: 200,
|
|
|
|
|
label: 'label2'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
edges: [
|
|
|
|
|
{
|
|
|
|
|
source: 'node1',
|
|
|
|
|
target: 'node2',
|
|
|
|
|
label: 'edge'
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
graph.data(data)
|
|
|
|
|
graph.render()
|
|
|
|
|
|
|
|
|
|
// 默认 zoom=1,会显示所有元素
|
|
|
|
|
let node1 = graph.findById('node1')
|
|
|
|
|
let container = node1.getContainer()
|
|
|
|
|
container.get('children').map(child => {
|
|
|
|
|
expect(child.get('visible')).toBe(true)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
graph.zoom(0.5)
|
|
|
|
|
e = createWheelEvent(graph.get('canvas').get('el'), 100, 100, 100);
|
|
|
|
|
graph.emit('wheel', e);
|
|
|
|
|
|
|
|
|
|
// 只显示 keyShape
|
|
|
|
|
node1 = graph.findById('node1')
|
|
|
|
|
container = node1.getContainer()
|
|
|
|
|
expect(node1.getKeyShape().get('visible')).toBe(true)
|
|
|
|
|
container.get('children').map(child => {
|
2020-06-08 19:08:35 +08:00
|
|
|
|
if (!child.get('isKeyShape')) {
|
2020-03-18 14:00:54 +08:00
|
|
|
|
expect(child.get('visible')).toBe(false)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
graph.destroy()
|
|
|
|
|
})
|
2019-12-19 20:27:48 +08:00
|
|
|
|
});
|