mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-02-17 22:08:25 +08:00
165 lines
3.4 KiB
JavaScript
165 lines
3.4 KiB
JavaScript
// 视图操作类
|
|
class View {
|
|
// 构造函数
|
|
constructor(opt = {}) {
|
|
this.opt = opt
|
|
this.mindMap = this.opt.mindMap
|
|
this.scale = 1
|
|
this.sx = 0
|
|
this.sy = 0
|
|
this.x = 0
|
|
this.y = 0
|
|
this.firstDrag = true
|
|
this.setTransformData(this.mindMap.opt.viewData)
|
|
this.bind()
|
|
}
|
|
|
|
// 绑定
|
|
bind() {
|
|
// 快捷键
|
|
this.mindMap.keyCommand.addShortcut('Control+=', () => {
|
|
this.enlarge()
|
|
})
|
|
this.mindMap.keyCommand.addShortcut('Control+-', () => {
|
|
this.narrow()
|
|
})
|
|
this.mindMap.keyCommand.addShortcut('Control+Enter', () => {
|
|
this.reset()
|
|
})
|
|
this.mindMap.svg.on('dblclick', () => {
|
|
this.reset()
|
|
})
|
|
// 拖动视图
|
|
this.mindMap.event.on('mousedown', () => {
|
|
this.sx = this.x
|
|
this.sy = this.y
|
|
})
|
|
this.mindMap.event.on('drag', (e, event) => {
|
|
if (e.ctrlKey) {
|
|
// 按住ctrl键拖动为多选
|
|
return
|
|
}
|
|
if (this.firstDrag) {
|
|
this.firstDrag = false
|
|
// 清除激活节点
|
|
if (this.mindMap.renderer.activeNodeList.length > 0) {
|
|
this.mindMap.execCommand('CLEAR_ACTIVE_NODE')
|
|
}
|
|
}
|
|
this.x = this.sx + event.mousemoveOffset.x
|
|
this.y = this.sy + event.mousemoveOffset.y
|
|
this.transform()
|
|
})
|
|
this.mindMap.event.on('mouseup', () => {
|
|
this.firstDrag = true
|
|
})
|
|
// 放大缩小视图
|
|
this.mindMap.event.on('mousewheel', (e, dir) => {
|
|
// // 放大
|
|
if (dir === 'down') {
|
|
this.enlarge()
|
|
} else {
|
|
// 缩小
|
|
this.narrow()
|
|
}
|
|
})
|
|
}
|
|
|
|
// 获取当前变换状态数据
|
|
getTransformData() {
|
|
return {
|
|
transform: this.mindMap.draw.transform(),
|
|
state: {
|
|
scale: this.scale,
|
|
x: this.x,
|
|
y: this.y,
|
|
sx: this.sx,
|
|
sy: this.sy
|
|
}
|
|
}
|
|
}
|
|
|
|
// 动态设置变换状态数据
|
|
setTransformData(viewData) {
|
|
if (viewData) {
|
|
Object.keys(viewData.state).forEach(prop => {
|
|
this[prop] = viewData.state[prop]
|
|
})
|
|
this.mindMap.draw.transform({
|
|
...viewData.transform
|
|
})
|
|
this.mindMap.emit('view_data_change', this.getTransformData())
|
|
this.mindMap.emit('scale', this.scale)
|
|
}
|
|
}
|
|
|
|
// 平移x方向
|
|
translateX(step) {
|
|
this.x += step
|
|
this.transform()
|
|
}
|
|
|
|
// 平移x方式到
|
|
translateXTo(x) {
|
|
this.x = x
|
|
this.transform()
|
|
}
|
|
|
|
// 平移y方向
|
|
translateY(step) {
|
|
this.y += step
|
|
this.transform()
|
|
}
|
|
|
|
// 平移y方向到
|
|
translateYTo(y) {
|
|
this.y = y
|
|
this.transform()
|
|
}
|
|
|
|
// 应用变换
|
|
transform() {
|
|
this.mindMap.draw.transform({
|
|
scale: this.scale,
|
|
// origin: 'center center',
|
|
translate: [this.x, this.y]
|
|
})
|
|
this.mindMap.emit('view_data_change', this.getTransformData())
|
|
}
|
|
|
|
// 恢复
|
|
reset() {
|
|
this.scale = 1
|
|
this.x = 0
|
|
this.y = 0
|
|
this.transform()
|
|
}
|
|
|
|
// 缩小
|
|
narrow() {
|
|
if (this.scale - this.mindMap.opt.scaleRatio > 0.1) {
|
|
this.scale -= this.mindMap.opt.scaleRatio
|
|
} else {
|
|
this.scale = 0.1
|
|
}
|
|
this.transform()
|
|
this.mindMap.emit('scale', this.scale)
|
|
}
|
|
|
|
// 放大
|
|
enlarge() {
|
|
this.scale += this.mindMap.opt.scaleRatio
|
|
this.transform()
|
|
this.mindMap.emit('scale', this.scale)
|
|
}
|
|
|
|
// 设置缩放
|
|
setScale(scale) {
|
|
this.scale = scale
|
|
this.transform()
|
|
this.mindMap.emit('scale', this.scale)
|
|
}
|
|
}
|
|
|
|
export default View
|