fix: 解决组件移动未加入历史栈
This commit is contained in:
parent
a7edef16f4
commit
0db49d055f
@ -12,6 +12,7 @@
|
|||||||
"@types/color": "^3.0.3",
|
"@types/color": "^3.0.3",
|
||||||
"@types/crypto-js": "^4.1.1",
|
"@types/crypto-js": "^4.1.1",
|
||||||
"@types/keymaster": "^1.6.30",
|
"@types/keymaster": "^1.6.30",
|
||||||
|
"@types/lodash": "^4.14.184",
|
||||||
"animate.css": "^4.1.1",
|
"animate.css": "^4.1.1",
|
||||||
"axios": "^0.27.2",
|
"axios": "^0.27.2",
|
||||||
"color": "^4.2.3",
|
"color": "^4.2.3",
|
||||||
|
@ -313,6 +313,21 @@ export const useChartEditStore = defineStore({
|
|||||||
loadingError()
|
loadingError()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// * 重置组件位置
|
||||||
|
resetComponentPostion(item: CreateComponentType | CreateComponentGroupType):void{
|
||||||
|
const index = this.fetchTargetIndex(item.id)
|
||||||
|
if(index > -1){
|
||||||
|
const componentInstance = this.getComponentList[index]
|
||||||
|
componentInstance.attr = Object.assign(componentInstance.attr, {
|
||||||
|
x: item.attr.x,
|
||||||
|
y: item.attr.y
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// * 移动组件
|
||||||
|
moveComponentList(item: CreateComponentType | CreateComponentGroupType){
|
||||||
|
chartHistoryStore.createMoveHistory([item])
|
||||||
|
},
|
||||||
// * 更新组件列表某一项的值
|
// * 更新组件列表某一项的值
|
||||||
updateComponentList(index: number, newData: CreateComponentType | CreateComponentGroupType) {
|
updateComponentList(index: number, newData: CreateComponentType | CreateComponentGroupType) {
|
||||||
if (index < 1 && index > this.getComponentList.length) return
|
if (index < 1 && index > this.getComponentList.length) return
|
||||||
@ -530,6 +545,15 @@ export const useChartEditStore = defineStore({
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 处理移动
|
||||||
|
const isMove = HistoryItem.actionType === HistoryActionTypeEnum.MOVE
|
||||||
|
if(isMove){
|
||||||
|
historyData.forEach(item => {
|
||||||
|
this.resetComponentPostion(item)
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// 处理层级
|
// 处理层级
|
||||||
const isTop = HistoryItem.actionType === HistoryActionTypeEnum.TOP
|
const isTop = HistoryItem.actionType === HistoryActionTypeEnum.TOP
|
||||||
const isBottom = HistoryItem.actionType === HistoryActionTypeEnum.BOTTOM
|
const isBottom = HistoryItem.actionType === HistoryActionTypeEnum.BOTTOM
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d'
|
import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d'
|
||||||
import { EditCanvasType } from '@/store/modules/chartEditStore/chartEditStore.d'
|
import { EditCanvasType } from '@/store/modules/chartEditStore/chartEditStore.d'
|
||||||
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||||
import { loadingStart, loadingFinish, loadingError } from '@/utils'
|
import { loadingStart, loadingFinish, loadingError } from '@/utils'
|
||||||
import { editHistoryMax } from '@/settings/designSetting'
|
import { editHistoryMax } from '@/settings/designSetting'
|
||||||
import {
|
import {
|
||||||
@ -10,6 +11,7 @@ import {
|
|||||||
HistoryItemType,
|
HistoryItemType,
|
||||||
ChartHistoryStoreType
|
ChartHistoryStoreType
|
||||||
} from './chartHistoryStore.d'
|
} from './chartHistoryStore.d'
|
||||||
|
import { cloneDeep } from 'lodash'
|
||||||
|
|
||||||
export const useChartHistoryStore = defineStore({
|
export const useChartHistoryStore = defineStore({
|
||||||
id: 'useChartHistoryStore',
|
id: 'useChartHistoryStore',
|
||||||
@ -95,12 +97,33 @@ export const useChartHistoryStore = defineStore({
|
|||||||
// 排除画布初始化
|
// 排除画布初始化
|
||||||
if (this.getBackStack.length > 1) {
|
if (this.getBackStack.length > 1) {
|
||||||
const targetData = this.popBackStackItem()
|
const targetData = this.popBackStackItem()
|
||||||
if (!targetData) {
|
// 移动时逻辑单独处理
|
||||||
loadingFinish()
|
const isMove = targetData?.actionType === HistoryActionTypeEnum.MOVE
|
||||||
return
|
if(isMove){
|
||||||
|
const chartEditStore = useChartEditStore()
|
||||||
|
// 将当前状态存入前进栈
|
||||||
|
const curTargetData:HistoryItemType = cloneDeep(targetData)
|
||||||
|
curTargetData.historyData.forEach(item => {
|
||||||
|
if(item.id){
|
||||||
|
const index = chartEditStore.fetchTargetIndex(item.id)
|
||||||
|
if(index > -1){
|
||||||
|
const componentInstance = chartEditStore.getComponentList[index]
|
||||||
|
item.attr = Object.assign(item.attr, {
|
||||||
|
x: componentInstance.attr.x,
|
||||||
|
y: componentInstance.attr.y
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.pushForwardStack(curTargetData)
|
||||||
|
}else{
|
||||||
|
if (!targetData) {
|
||||||
|
loadingFinish()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 移除记录到前进栈
|
||||||
|
this.pushForwardStack(targetData)
|
||||||
}
|
}
|
||||||
// 移除记录到前进堆
|
|
||||||
this.pushForwardStack(targetData)
|
|
||||||
loadingFinish()
|
loadingFinish()
|
||||||
return targetData
|
return targetData
|
||||||
}
|
}
|
||||||
@ -115,12 +138,34 @@ export const useChartHistoryStore = defineStore({
|
|||||||
loadingStart()
|
loadingStart()
|
||||||
if (this.getForwardStack.length) {
|
if (this.getForwardStack.length) {
|
||||||
const targetData = this.popForwardStack()
|
const targetData = this.popForwardStack()
|
||||||
if (!targetData) {
|
// 移动时逻辑单独处理
|
||||||
loadingFinish()
|
const isMove = targetData?.actionType === HistoryActionTypeEnum.MOVE
|
||||||
return
|
if(isMove){
|
||||||
|
const chartEditStore = useChartEditStore()
|
||||||
|
// 将当前状态存入后退栈
|
||||||
|
const curTargetData:HistoryItemType = cloneDeep(targetData)
|
||||||
|
curTargetData.historyData.forEach(item => {
|
||||||
|
if(item.id){
|
||||||
|
const index = chartEditStore.fetchTargetIndex(item.id)
|
||||||
|
if(index > -1){
|
||||||
|
const componentInstance = chartEditStore.getComponentList[index]
|
||||||
|
item.attr = Object.assign(item.attr, {
|
||||||
|
x: componentInstance.attr.x,
|
||||||
|
y: componentInstance.attr.y
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
this.pushBackStackItem(curTargetData, true)
|
||||||
|
}else{
|
||||||
|
if (!targetData) {
|
||||||
|
loadingFinish()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// 放入后退栈
|
||||||
|
this.pushBackStackItem(targetData, true)
|
||||||
}
|
}
|
||||||
// 放入后退栈
|
|
||||||
this.pushBackStackItem(targetData, true)
|
|
||||||
loadingFinish()
|
loadingFinish()
|
||||||
return targetData
|
return targetData
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ import { useContextMenu } from '@/views/chart/hooks/useContextMenu.hook'
|
|||||||
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
|
||||||
import { EditCanvasTypeEnum } from '@/store/modules/chartEditStore/chartEditStore.d'
|
import { EditCanvasTypeEnum } from '@/store/modules/chartEditStore/chartEditStore.d'
|
||||||
import { loadingStart, loadingFinish, loadingError } from '@/utils'
|
import { loadingStart, loadingFinish, loadingError } from '@/utils'
|
||||||
import throttle from 'lodash/throttle'
|
import { throttle, cloneDeep } from 'lodash'
|
||||||
|
|
||||||
const chartEditStore = useChartEditStore()
|
const chartEditStore = useChartEditStore()
|
||||||
const { onClickOutSide } = useContextMenu()
|
const { onClickOutSide } = useContextMenu()
|
||||||
@ -222,6 +222,16 @@ export const useMouseHandle = () => {
|
|||||||
const startX = e.screenX
|
const startX = e.screenX
|
||||||
const startY = e.screenY
|
const startY = e.screenY
|
||||||
|
|
||||||
|
// 记录历史位置
|
||||||
|
let prevComponentInstance:CreateComponentType | CreateComponentGroupType
|
||||||
|
chartEditStore.getTargetChart.selectId.forEach(id => {
|
||||||
|
if (!targetMap.has(id)) return
|
||||||
|
|
||||||
|
const index = chartEditStore.fetchTargetIndex(id)
|
||||||
|
// 拿到初始位置数据
|
||||||
|
prevComponentInstance = cloneDeep(chartEditStore.getComponentList[index])
|
||||||
|
})
|
||||||
|
|
||||||
// 记录初始位置
|
// 记录初始位置
|
||||||
chartEditStore.setMousePosition(undefined, undefined, startX, startY)
|
chartEditStore.setMousePosition(undefined, undefined, startX, startY)
|
||||||
|
|
||||||
@ -267,6 +277,10 @@ export const useMouseHandle = () => {
|
|||||||
const mouseup = () => {
|
const mouseup = () => {
|
||||||
chartEditStore.setMousePosition(0, 0, 0, 0)
|
chartEditStore.setMousePosition(0, 0, 0, 0)
|
||||||
chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_DRAG, false)
|
chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_DRAG, false)
|
||||||
|
// 加入历史栈
|
||||||
|
if(prevComponentInstance){
|
||||||
|
chartEditStore.moveComponentList(prevComponentInstance)
|
||||||
|
}
|
||||||
document.removeEventListener('mousemove', mousemove)
|
document.removeEventListener('mousemove', mousemove)
|
||||||
document.removeEventListener('mouseup', mouseup)
|
document.removeEventListener('mouseup', mouseup)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user