1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Refactor to use generic flag for dragging and hide settings bar when dragging

This commit is contained in:
Andrew Kingston 2021-09-17 14:17:50 +01:00
parent 01e33b4bf8
commit a6186dbd39
4 changed files with 10 additions and 12 deletions

View file

@ -21,6 +21,7 @@
// Update state
dragTarget = e.target.dataset.componentId
builderStore.actions.selectComponent(dragTarget)
builderStore.actions.setDragging(true)
// Highlight being dragged by setting opacity
const child = getDOMNodeForComponent(e.target)
@ -34,15 +35,13 @@
// Reset state and styles
dropTarget = null
dropInfo = null
builderStore.actions.setDragging(false)
// Reset opacity style
const child = getDOMNodeForComponent(e.target)
if (child) {
child.style.opacity = ""
}
// Re-enable the hover indicator
builderStore.actions.showHoverIndicator(true)
}
// Callback when on top of a component
@ -96,11 +95,11 @@
element.dataset.droppable &&
element.dataset.id !== dragTarget
) {
// Disable hover selection again to ensure it's always disabled.
// Ensure the dragging flag is always set.
// There's a bit of a race condition between the app reinitialisation
// after selecting the DND component and setting this the first time
if (get(builderStore).showHoverIndicator) {
builderStore.actions.showHoverIndicator(false)
if (!get(builderStore).isDragging) {
builderStore.actions.setDragging(true)
}
// Store target ID

View file

@ -30,7 +30,7 @@
</script>
<IndicatorSet
componentId={$builderStore.showHoverIndicator ? componentId : null}
componentId={$builderStore.isDragging ? null : componentId}
color="var(--spectrum-global-color-static-blue-200)"
transition
{zIndex}

View file

@ -16,7 +16,7 @@
let measured = false
$: definition = $builderStore.selectedComponentDefinition
$: showBar = definition?.showSettingsBar
$: showBar = definition?.showSettingsBar && !$builderStore.isDragging
$: settings = definition?.settings?.filter(setting => setting.showInBar) ?? []
const updatePosition = () => {

View file

@ -23,7 +23,7 @@ const createBuilderStore = () => {
theme: null,
customTheme: null,
previewDevice: "desktop",
showHoverIndicator: true,
isDragging: false,
}
const writableStore = writable(initialState)
const derivedStore = derived(writableStore, $state => {
@ -77,16 +77,15 @@ const createBuilderStore = () => {
mode,
})
},
showHoverIndicator: show => {
setDragging: dragging => {
writableStore.update(state => {
state.showHoverIndicator = show
state.isDragging = dragging
return state
})
},
}
return {
...writableStore,
set: state => writableStore.set({ ...initialState, ...state }),
subscribe: derivedStore.subscribe,
actions,
}