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

Ensure transitions work properly when showing and hiding DND candidate positions

This commit is contained in:
Andrew Kingston 2021-09-16 15:49:58 +01:00
parent 2fc9672bfa
commit 52c4beda8f
2 changed files with 5 additions and 5 deletions

View file

@ -25,9 +25,7 @@
// Highlight being dragged by setting opacity
const child = getDOMNodeForComponent(e.target)
console.log(child)
if (child) {
console.log("set opacity")
child.style.opacity = "0.5"
}
}
@ -163,7 +161,8 @@
/>
<DNDPositionIndicator
dropInfo={dropMode !== "inside" ? dropInfo : null}
componentId={dropTarget}
{dropInfo}
mode={dropMode}
color="var(--spectrum-global-color-static-green-500)"
zIndex="940"

View file

@ -1,6 +1,7 @@
<script>
import Indicator from "./Indicator.svelte"
export let componentId
export let dropInfo
export let mode
export let zIndex
@ -24,8 +25,8 @@
}
</script>
{#key mode}
{#if dimensions}
{#key `${componentId}-${mode}`}
{#if dimensions && mode !== "inside"}
<Indicator
left={dimensions.left}
top={dimensions.top}