fix(core): use correct handlesuffix in getHandleConnections (#1880)
* fix(core): use correct handlesuffix in `getHandleConnections` Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(changeset): add --------- Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"@vue-flow/core": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Use correct handlesuffix for connection lookup in `getHandleConnections` action.
|
||||||
@@ -6,11 +6,14 @@ import { Background } from '@vue-flow/background'
|
|||||||
import { Controls } from '@vue-flow/controls'
|
import { Controls } from '@vue-flow/controls'
|
||||||
import { MiniMap } from '@vue-flow/minimap'
|
import { MiniMap } from '@vue-flow/minimap'
|
||||||
|
|
||||||
const elements = ref<Elements>([
|
const nodes = ref<Elements>([
|
||||||
{ id: '1', type: 'input', label: 'Node 1', position: { x: 250, y: 5 }, class: 'light' },
|
{ id: '1', type: 'input', label: 'Node 1', position: { x: 250, y: 5 }, class: 'light' },
|
||||||
{ id: '2', label: 'Node 2', position: { x: 100, y: 100 }, class: 'light' },
|
{ id: '2', label: 'Node 2', position: { x: 100, y: 100 }, class: 'light' },
|
||||||
{ id: '3', label: 'Node 3', position: { x: 400, y: 100 }, class: 'light' },
|
{ id: '3', label: 'Node 3', position: { x: 400, y: 100 }, class: 'light' },
|
||||||
{ id: '4', label: 'Node 4', position: { x: 400, y: 200 }, class: 'light' },
|
{ id: '4', label: 'Node 4', position: { x: 400, y: 200 }, class: 'light' },
|
||||||
|
])
|
||||||
|
|
||||||
|
const edges = ref<Elements>([
|
||||||
{ id: 'e1-2', source: '1', target: '2', animated: true },
|
{ id: 'e1-2', source: '1', target: '2', animated: true },
|
||||||
{ id: 'e1-3', source: '1', target: '3' },
|
{ id: 'e1-3', source: '1', target: '3' },
|
||||||
])
|
])
|
||||||
@@ -23,7 +26,7 @@ const { onConnect, addEdges, setViewport, toObject } = useVueFlow({
|
|||||||
onConnect(addEdges)
|
onConnect(addEdges)
|
||||||
|
|
||||||
function updatePos() {
|
function updatePos() {
|
||||||
return elements.value.forEach((el) => {
|
return nodes.value.forEach((el) => {
|
||||||
if (isNode(el)) {
|
if (isNode(el)) {
|
||||||
el.position = {
|
el.position = {
|
||||||
x: Math.random() * 400,
|
x: Math.random() * 400,
|
||||||
@@ -40,16 +43,23 @@ function resetViewport() {
|
|||||||
return setViewport({ x: 0, y: 0, zoom: 1 })
|
return setViewport({ x: 0, y: 0, zoom: 1 })
|
||||||
}
|
}
|
||||||
function toggleclass() {
|
function toggleclass() {
|
||||||
return elements.value.forEach((el) => (el.class = el.class === 'light' ? 'dark' : 'light'))
|
return nodes.value.forEach((el) => (el.class = el.class === 'light' ? 'dark' : 'light'))
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VueFlow v-model="elements" fit-view-on-init class="vue-flow-basic-example">
|
<VueFlow
|
||||||
|
:nodes="nodes"
|
||||||
|
:edges="edges"
|
||||||
|
:delete-key-code="['Backspace', 'Delete']"
|
||||||
|
fit-view-on-init
|
||||||
|
class="vue-flow-basic-example"
|
||||||
|
>
|
||||||
<Background />
|
<Background />
|
||||||
<MiniMap />
|
<MiniMap node-color="red" :nodes="nodes" :edges="edges" />
|
||||||
<Controls />
|
<Controls />
|
||||||
<Panel position="top-right" style="display: flex; gap: 5px">
|
<Panel position="top-right" style="display: flex; gap: 5px">
|
||||||
|
<input />
|
||||||
<button @click="resetViewport">reset viewport</button>
|
<button @click="resetViewport">reset viewport</button>
|
||||||
<button @click="updatePos">change pos</button>
|
<button @click="updatePos">change pos</button>
|
||||||
<button @click="toggleclass">toggle class</button>
|
<button @click="toggleclass">toggle class</button>
|
||||||
@@ -57,3 +67,10 @@ function toggleclass() {
|
|||||||
</Panel>
|
</Panel>
|
||||||
</VueFlow>
|
</VueFlow>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.vue-flow__minimap {
|
||||||
|
transform: scale(75%);
|
||||||
|
transform-origin: bottom right;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -73,7 +73,8 @@ export function useActions(state: State, nodeLookup: ComputedRef<NodeLookup>, ed
|
|||||||
}
|
}
|
||||||
|
|
||||||
const getHandleConnections: Actions['getHandleConnections'] = ({ id, type, nodeId }) => {
|
const getHandleConnections: Actions['getHandleConnections'] = ({ id, type, nodeId }) => {
|
||||||
return Array.from(state.connectionLookup.get(`${nodeId}-${type}-${id ?? null}`)?.values() ?? [])
|
const handleSuffix = id ? `-${type}-${id}` : `-${type}`
|
||||||
|
return Array.from(state.connectionLookup.get(`${nodeId}${handleSuffix}`)?.values() ?? [])
|
||||||
}
|
}
|
||||||
|
|
||||||
const findNode: Actions['findNode'] = (id) => {
|
const findNode: Actions['findNode'] = (id) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user