1
0
Fork 0
mirror of synced 2024-07-27 17:16:23 +12:00

Fix issues dropping components from new component panel

This commit is contained in:
Andrew Kingston 2022-10-14 18:24:47 +01:00
parent bebe2f62c3
commit 1a210e3ee6
2 changed files with 5 additions and 9 deletions

View file

@ -245,6 +245,7 @@
drop.parent, drop.parent,
drop.index drop.index
) )
return
} }
// Convert parent + index into target + mode // Convert parent + index into target + mode

View file

@ -2,10 +2,6 @@ import { writable, derived } from "svelte/store"
const createDndStore = () => { const createDndStore = () => {
const initialState = { const initialState = {
// Flags for whether we are inserting a new component or not
isNewComponent: false,
newComponentType: null,
// Info about the dragged component // Info about the dragged component
source: null, source: null,
@ -24,8 +20,8 @@ const createDndStore = () => {
}) })
} }
const startDraggingNewComponent = ({ type, definition }) => { const startDraggingNewComponent = ({ component, definition }) => {
if (!type || !definition) { if (!component || !definition) {
return return
} }
@ -35,13 +31,12 @@ const createDndStore = () => {
store.set({ store.set({
...initialState, ...initialState,
isNewComponent: true,
newComponentType: type,
source: { source: {
id: null, id: null,
parent: null, parent: null,
bounds: { height, width }, bounds: { height, width },
index: null, index: null,
newComponentType: component,
}, },
}) })
} }
@ -91,5 +86,5 @@ export const dndBounds = derived(
) )
export const dndIsNewComponent = derived( export const dndIsNewComponent = derived(
dndStore, dndStore,
$dndStore => $dndStore.isNewComponent $dndStore => $dndStore.source?.newComponentType != null
) )