1
0
Fork 0
mirror of synced 2024-08-10 23:51:24 +12:00

Fix pasting inside different screens and select new screen when pasting inside different screen

This commit is contained in:
Andrew Kingston 2022-07-15 10:36:53 +01:00
parent d14a9b0521
commit 190c545e25
2 changed files with 7 additions and 4 deletions

View file

@ -583,7 +583,7 @@ export const getFrontendStore = () => {
}
}
},
paste: async (targetComponent, mode) => {
paste: async (targetComponent, mode, targetScreen) => {
const state = get(store)
if (!state.componentToPaste) {
return
@ -591,7 +591,7 @@ export const getFrontendStore = () => {
let newComponentId
// Patch screen
await store.actions.screens.patch(screen => {
const patch = screen => {
// Get up to date ref to target
targetComponent = findComponent(screen.props, targetComponent._id)
if (!targetComponent) {
@ -640,13 +640,16 @@ export const getFrontendStore = () => {
const index = mode === "above" ? targetIndex : targetIndex + 1
parent._children.splice(index, 0, componentToPaste)
}
})
}
const targetScreenId = targetScreen?._id || state.selectedScreenId
await store.actions.screens.patch(patch, targetScreenId)
store.update(state => {
// Remove copied component if cutting
if (state.componentToPaste.isCut) {
delete state.componentToPaste
}
state.selectedScreenId = targetScreenId
state.selectedComponentId = newComponentId
return state
})

View file

@ -23,7 +23,7 @@
const pasteComponent = mode => {
try {
store.actions.components.paste(screen.props, mode)
store.actions.components.paste(screen.props, mode, screen)
} catch (error) {
notifications.error("Error saving component")
}