feat(nodes): add option to pass a valid target pos / valid source pos func to nodes

* edge updater cannot discern a valid connection by itself so we allow an option to pass a valid connection func to nodes which will then be used to determine if updating connection is valid
* it is optional, by default all connections are valid

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-25 15:21:36 +01:00
parent 95fc013613
commit 9e941966a4
13 changed files with 83 additions and 42 deletions
+6 -3
View File
@@ -1,9 +1,12 @@
<script lang="ts" setup>
import { Position, Handle, Connection } from '~/index'
import { Position, Handle, ValidConnectionFunc } from '~/index'
const isValidConnection = (connection: Connection) => connection.target === 'B'
interface CustomInputProps {
isValidTargetPos: ValidConnectionFunc
}
const props = defineProps<CustomInputProps>()
</script>
<template>
<div>Only connectable with B</div>
<Handle type="source" :position="Position.Right" :is-valid-connection="isValidConnection" />
<Handle type="source" :position="Position.Right" :is-valid-connection="props.isValidTargetPos" />
</template>