update(nodes, edges): watch source/target pos to update position so edges get properly re-rendered

* use standard computed for source/target pos in edges

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-12-20 19:29:52 +01:00
parent 212c91107f
commit 8f6ce13226
2 changed files with 14 additions and 18 deletions
+2 -2
View File
@@ -65,8 +65,8 @@ const sourceHandle = controlledComputed(
() => getHandle(edge.value.sourceNode.handleBounds.source, edge.value.sourceHandle), () => getHandle(edge.value.sourceNode.handleBounds.source, edge.value.sourceHandle),
) )
const targetHandle = computed(() => getHandle(targetNodeHandles.value, edge.value.targetHandle)) const targetHandle = computed(() => getHandle(targetNodeHandles.value, edge.value.targetHandle))
const sourcePosition = eagerComputed(() => (sourceHandle.value ? sourceHandle.value.position : Position.Bottom)) const sourcePosition = computed(() => (sourceHandle.value ? sourceHandle.value.position : Position.Bottom))
const targetPosition = eagerComputed(() => (targetHandle.value ? targetHandle.value.position : Position.Top)) const targetPosition = computed(() => (targetHandle.value ? targetHandle.value.position : Position.Top))
const edgeUpdaterRadius = computed(() => store.edgeUpdaterRadius) const edgeUpdaterRadius = computed(() => store.edgeUpdaterRadius)
onMounted(() => { onMounted(() => {
+12 -16
View File
@@ -90,27 +90,23 @@ const onDragStop: DraggableEventListener = ({ event, data: { deltaX, deltaY } })
store.hooks.nodeDragStop.trigger({ event, node: node.value }) store.hooks.nodeDragStop.trigger({ event, node: node.value })
} }
const updatePosition = (width: number, height: number) => {
const handleBounds = getHandleBounds(nodeElement.value, scale.value, id)
node.value.dimensions = {
width,
height,
}
node.value.handleBounds = handleBounds
}
store.updateNodePosition({ id: node.value.id, diff: { x: 0, y: 0 } }) store.updateNodePosition({ id: node.value.id, diff: { x: 0, y: 0 } })
onMounted(() => { onMounted(() => {
const dimensions = ref(getDimensions(nodeElement.value)) const dimensions = ref(getDimensions(nodeElement.value))
useResizeObserver(nodeElement, () => (dimensions.value = getDimensions(nodeElement.value))) useResizeObserver(nodeElement, () => (dimensions.value = getDimensions(nodeElement.value)))
watch( watch([() => node.value.type, () => node.value.sourcePosition, () => node.value.targetPosition], () =>
dimensions, nextTick(() => updatePosition(dimensions.value.width, dimensions.value.height)),
({ width: w, height: h }) => {
nextTick(() => {
if (w > 0 && h > 0) {
const handleBounds = getHandleBounds(nodeElement.value, scale.value, id)
node.value.dimensions = {
width: w,
height: h,
}
node.value.handleBounds = handleBounds
}
})
},
{ immediate: true },
) )
watch(dimensions, ({ width: w, height: h }) => nextTick(() => w > 0 && h > 0 && updatePosition(w, h)), { immediate: true })
}) })
</script> </script>
<script lang="ts"> <script lang="ts">