1
0
Fork 0
mirror of synced 2024-09-20 11:27:56 +12:00

Add reactivity to settings bar grid style buttons

This commit is contained in:
Andrew Kingston 2024-08-03 11:15:10 +01:00
parent 8a6d4c0bf6
commit 4bdb408a39
No known key found for this signature in database
4 changed files with 34 additions and 16 deletions

View file

@ -208,6 +208,7 @@
draggable,
definition,
errored: errorState,
draggable,
}
// Update component context

View file

@ -7,22 +7,9 @@
export let icon
export let title
export let componentId
export let computedStyles
// Needs to update in real time
let currentValue
$: fetchCurrentValue(componentId, style)
$: active = currentValue === value
const fetchCurrentValue = (id, style) => {
const node = document.getElementsByClassName(`${id}-dom`)[0]?.parentNode
if (!node) {
return null
}
const styles = getComputedStyle(node)
currentValue = styles.getPropertyValue(style)
}
$: active = computedStyles?.getPropertyValue(style) === value
</script>
<!-- svelte-ignore a11y-no-static-element-interactions -->

View file

@ -17,10 +17,13 @@
let interval
let self
let measured = false
let observer
let computedStyles
// TODO: respect dependsOn keys
$: componentId = $builderStore.selectedComponentId
$: measured, observeComputedStyles(componentId)
$: component = $componentStore.selectedComponent
$: definition = $componentStore.selectedComponentDefinition
$: parent = findComponentParent($builderStore.screen.props, componentId)
@ -131,6 +134,21 @@
}
const debouncedUpdate = Utils.domDebounce(updatePosition)
const observeComputedStyles = id => {
observer?.disconnect()
const node = document.getElementsByClassName(`${id}-dom`)[0]?.parentNode
if (node) {
observer = new MutationObserver(() => {
computedStyles = getComputedStyle(node)
})
observer.observe(node, {
attributes: true,
attributeFilter: ["style"],
})
computedStyles = getComputedStyle(node)
}
}
onMount(() => {
debouncedUpdate()
interval = setInterval(debouncedUpdate, 100)
@ -140,6 +158,7 @@
onDestroy(() => {
clearInterval(interval)
document.removeEventListener("scroll", debouncedUpdate, true)
observer?.disconnect()
})
</script>
@ -157,6 +176,7 @@
icon="AlignLeft"
title="Align left"
{componentId}
{computedStyles}
/>
<GridStylesButton
style={gridHAlignVar}
@ -164,6 +184,7 @@
icon="AlignCenter"
title="Align center"
{componentId}
{computedStyles}
/>
<GridStylesButton
style={gridHAlignVar}
@ -171,6 +192,7 @@
icon="AlignRight"
title="Align right"
{componentId}
{computedStyles}
/>
<GridStylesButton
style={gridHAlignVar}
@ -178,6 +200,7 @@
icon="MoveLeftRight"
title="Stretch horizontally"
{componentId}
{computedStyles}
/>
<div class="divider" />
<GridStylesButton
@ -186,6 +209,7 @@
icon="AlignTop"
title="Align top"
{componentId}
{computedStyles}
/>
<GridStylesButton
style={gridVAlignVar}
@ -193,6 +217,7 @@
icon="AlignMiddle"
title="Align middle"
{componentId}
{computedStyles}
/>
<GridStylesButton
style={gridVAlignVar}
@ -200,6 +225,7 @@
icon="AlignBottom"
title="Align bottom"
{componentId}
{computedStyles}
/>
<GridStylesButton
style={gridVAlignVar}
@ -207,6 +233,7 @@
icon="MoveUpDown"
title="Stretch vertically"
{componentId}
{computedStyles}
/>
<div class="divider" />
{/if}

View file

@ -71,7 +71,7 @@ export const gridLayout = (node, metadata) => {
// Applies the required listeners, CSS and classes to a component DOM node
const applyMetadata = metadata => {
const { id, styles, interactive, errored, definition } = metadata
const { id, styles, interactive, errored, definition, draggable } = metadata
// Callback to select the component when clicking on the wrapper
selectComponent = e => {
@ -116,6 +116,9 @@ export const gridLayout = (node, metadata) => {
if (interactive) {
node.addEventListener("click", selectComponent, false)
}
// Add draggable attribute
node.setAttribute("draggable", !!draggable)
}
// Removes the previously set up listeners