2020-05-06 16:57:07 +08:00
|
|
|
|
|
|
|
import {createTransform, createBoundingRect} from './utils/parser';
|
2020-05-07 13:35:25 +08:00
|
|
|
import Vue from 'vue';
|
|
|
|
import store from '@/store/index_APP_TARGET';
|
2020-05-06 16:57:07 +08:00
|
|
|
|
|
|
|
class TransformHandle {
|
|
|
|
constructor(painter) {
|
|
|
|
this.$painter = painter;
|
|
|
|
|
|
|
|
this.parentLevel = painter.getParentLevel();
|
|
|
|
|
2020-05-07 09:04:28 +08:00
|
|
|
this.rect = { x: 0, y: 0, width: 0, height: 0 };
|
2020-05-06 16:57:07 +08:00
|
|
|
this.transform = [createTransform({ scaleRate: 1, offsetX: 0, offsetY: 0 })];
|
|
|
|
}
|
|
|
|
|
2020-05-07 09:04:28 +08:00
|
|
|
checkVisible(view) {
|
2020-05-06 16:57:07 +08:00
|
|
|
return createBoundingRect(view).intersect(this.rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 视图进行缩放/平移
|
|
|
|
transformView(view) {
|
|
|
|
if (view) {
|
|
|
|
for (let i = 0; i < this.transform.length; i++) {
|
|
|
|
view.transform = this.transform[i];
|
2020-05-07 13:35:25 +08:00
|
|
|
view.decomposeTransform(); // 修改 transform 后同步位置
|
|
|
|
const propConvert = Vue.prototype.$theme.loadPropConvert(store.state.map.map.skinVO.code);
|
|
|
|
if (propConvert.handleScreenProps && propConvert.handleScreenProps(view)) {
|
|
|
|
view.hide();
|
|
|
|
return;
|
|
|
|
}
|
2020-05-06 16:57:07 +08:00
|
|
|
if (this.checkVisible(view)) { view.show(); return; } else { view.hide(); }
|
|
|
|
}
|
2020-05-07 13:35:25 +08:00
|
|
|
view.dirty(); // 更新
|
2020-05-06 16:57:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 处理所有视图缩放/平移
|
|
|
|
transformAll() {
|
|
|
|
this.traverse(this.transformView, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 重新计算显示图形
|
|
|
|
revisibleAll() {
|
|
|
|
this.traverse(this.revisibleView, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 更新偏移量
|
2020-05-07 09:04:28 +08:00
|
|
|
updateTransform(list, opts) {
|
2020-05-08 16:12:03 +08:00
|
|
|
this.rect = { x: opts.x, y: opts.y, width: opts.width, height: opts.height };
|
2020-05-06 16:57:07 +08:00
|
|
|
this.transform = [];
|
2020-05-08 16:12:03 +08:00
|
|
|
list.forEach(item => {
|
2020-05-06 16:57:07 +08:00
|
|
|
this.transform.push(createTransform(item));
|
|
|
|
});
|
|
|
|
this.transformAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 更新画布尺寸
|
|
|
|
updateZrSize(opts) {
|
|
|
|
this.rect = { x: 0, y: 0, width: opts.width, height: opts.height };
|
|
|
|
this.revisibleAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
// 遍历group执行回调
|
|
|
|
traverse(cb, context) {
|
|
|
|
this.parentLevel.eachChild(level => {
|
|
|
|
level.eachChild((view) => {
|
|
|
|
cb.call(context, view);
|
|
|
|
}, context);
|
|
|
|
}, context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default TransformHandle;
|