refactor(core): simplify useHandle

This commit is contained in:
braks
2022-10-10 21:33:44 +02:00
committed by Braks
parent e9d6ec1673
commit 2684272308
3 changed files with 91 additions and 66 deletions
+14 -15
View File
@@ -6,7 +6,9 @@ import { ConnectionMode } from '../../types'
import type { HandleProps } from '../../types/handle' import type { HandleProps } from '../../types/handle'
import { getDimensions } from '../../utils' import { getDimensions } from '../../utils'
const { type = 'source', position = 'top' as Position, connectable = true, id, isValidConnection } = defineProps<HandleProps>() const { position = 'top' as Position, connectable = true, id, isValidConnection, ...props } = defineProps<HandleProps>()
const type = toRef(props, 'type', 'source')
const { connectionStartHandle, connectionMode, vueFlowRef, nodesConnectable } = $(useVueFlow()) const { connectionStartHandle, connectionMode, vueFlowRef, nodesConnectable } = $(useVueFlow())
@@ -16,6 +18,13 @@ const handle = ref<HTMLDivElement>()
const handleId = $computed(() => id ?? (connectionMode === ConnectionMode.Strict ? null : `${nodeId}__handle-${position}`)) const handleId = $computed(() => id ?? (connectionMode === ConnectionMode.Strict ? null : `${nodeId}__handle-${position}`))
const { onMouseDown, onClick } = useHandle({
nodeId,
handleId,
isValidConnection,
type,
})
const isConnectable = computed(() => { const isConnectable = computed(() => {
if (isString(connectable) && connectable === 'single') { if (isString(connectable) && connectable === 'single') {
return !connectedEdges.value.some((edge) => edge[type] === nodeId && edge[`${type}Handle`] === handleId) return !connectedEdges.value.some((edge) => edge[type] === nodeId && edge[`${type}Handle`] === handleId)
@@ -26,18 +35,8 @@ const isConnectable = computed(() => {
return connectable return connectable
}) })
const { onMouseDown, onClick } = useHandle()
const onMouseDownHandler = (event: MouseEvent) => {
onMouseDown(event, handleId, nodeId, type === 'target', isValidConnection, undefined)
}
const onClickHandler = (event: MouseEvent) => {
onClick(event, handleId ?? null, nodeId, type, isValidConnection)
}
onMounted(() => { onMounted(() => {
const existingBounds = node.handleBounds[type]?.find((b) => b.id === handleId) const existingBounds = node.handleBounds[type.value]?.find((b) => b.id === handleId)
if (!vueFlowRef || existingBounds) return if (!vueFlowRef || existingBounds) return
const viewportNode = vueFlowRef.querySelector('.vue-flow__transformationpane') const viewportNode = vueFlowRef.querySelector('.vue-flow__transformationpane')
@@ -59,7 +58,7 @@ onMounted(() => {
...getDimensions(handle.value), ...getDimensions(handle.value),
} }
node.handleBounds[type] = [...(node.handleBounds[type] ?? []), nextBounds] node.handleBounds[type.value] = [...(node.handleBounds[type.value] ?? []), nextBounds]
}) })
</script> </script>
@@ -90,8 +89,8 @@ export default {
connectionStartHandle.type === type, connectionStartHandle.type === type,
}, },
]" ]"
@mousedown="onMouseDownHandler" @mousedown="onMouseDown"
@click="onClickHandler" @click="onClick"
> >
<slot :id="id" /> <slot :id="id" />
</div> </div>
+44 -32
View File
@@ -1,6 +1,7 @@
import type { MaybeRef } from '@vueuse/core'
import { isFunction } from '@vueuse/core' import { isFunction } from '@vueuse/core'
import useVueFlow from './useVueFlow' import useVueFlow from './useVueFlow'
import { getHostForElement } from '~/utils' import { connectionExists, getHostForElement } from '~/utils'
import type { Connection, Getters, GraphEdge, HandleType, ValidConnectionFunc } from '~/types' import type { Connection, Getters, GraphEdge, HandleType, ValidConnectionFunc } from '~/types'
import { ConnectionMode } from '~/types' import { ConnectionMode } from '~/types'
@@ -11,6 +12,16 @@ interface Result {
isHoveringHandle: boolean isHoveringHandle: boolean
} }
interface UseHandleProps {
handleId: MaybeRef<string | null>
nodeId: MaybeRef<string>
type: MaybeRef<HandleType>
isValidConnection?: ValidConnectionFunc
elementEdgeUpdaterType?: MaybeRef<HandleType>
onEdgeUpdate?: (connection: Connection) => void
onEdgeUpdateEnd?: () => void
}
// checks if element below mouse is a handle and returns connection in form of an object { source: 123, target: 312 } // checks if element below mouse is a handle and returns connection in form of an object { source: 123, target: 312 }
export const checkElementBelowIsValid = ( export const checkElementBelowIsValid = (
event: MouseEvent, event: MouseEvent,
@@ -76,7 +87,21 @@ const resetRecentHandle = (hoveredHandle: Element): void => {
hoveredHandle?.classList.remove('vue-flow__handle-connecting') hoveredHandle?.classList.remove('vue-flow__handle-connecting')
} }
export default () => { /**
* This composable can be used to create custom Handle components
*
* It provides an `onClick` and `onMouseDown` handler that you can bind to your custom handle, so it will behave like the default handle.
*
*/
export default function useHandle({
handleId,
nodeId,
isValidConnection,
type,
elementEdgeUpdaterType,
onEdgeUpdateEnd,
onEdgeUpdate,
}: UseHandleProps) {
const { const {
edges, edges,
connectOnClick, connectOnClick,
@@ -91,24 +116,17 @@ export default () => {
vueFlowRef, vueFlowRef,
} = $(useVueFlow()) } = $(useVueFlow())
const isTarget = $computed(() => unref(type) === 'target')
let recentHoveredHandle: Element let recentHoveredHandle: Element
const onMouseDown = ( const onMouseDown = (event: MouseEvent) => {
event: MouseEvent,
handleId: string | null,
nodeId: string,
isTarget: boolean,
isValidConnection?: ValidConnectionFunc,
elementEdgeUpdaterType?: HandleType,
onEdgeUpdate?: (connection: Connection) => void,
onEdgeUpdateEnd?: () => void,
) => {
const doc = getHostForElement(event.target as HTMLElement) const doc = getHostForElement(event.target as HTMLElement)
if (!doc) return if (!doc) return
let validConnectFunc = isValidConnection let validConnectFunc = isValidConnection
const node = getNode(nodeId) const node = getNode(unref(nodeId))
if (node && (typeof node.connectable === 'undefined' ? nodesConnectable : node.connectable) === false) return if (node && (typeof node.connectable === 'undefined' ? nodesConnectable : node.connectable) === false) return
@@ -128,9 +146,9 @@ export default () => {
startConnection( startConnection(
{ {
nodeId, nodeId: unref(nodeId),
handleId, handleId: unref(handleId),
type: handleType, type: unref(handleType),
}, },
{ {
x: event.clientX - containerBounds.left, x: event.clientX - containerBounds.left,
@@ -148,9 +166,9 @@ export default () => {
const { connection, elementBelow, isValid, isHoveringHandle } = checkElementBelowIsValid( const { connection, elementBelow, isValid, isHoveringHandle } = checkElementBelowIsValid(
event, event,
connectionMode, connectionMode,
isTarget, unref(isTarget),
nodeId, unref(nodeId),
handleId, unref(handleId),
validConnectFunc, validConnectFunc,
doc, doc,
edges, edges,
@@ -172,9 +190,9 @@ export default () => {
const { connection, isValid } = checkElementBelowIsValid( const { connection, isValid } = checkElementBelowIsValid(
event, event,
connectionMode, connectionMode,
isTarget, unref(isTarget),
nodeId, unref(nodeId),
handleId, unref(handleId),
validConnectFunc, validConnectFunc,
doc, doc,
edges, edges,
@@ -202,25 +220,19 @@ export default () => {
doc.addEventListener('mouseup', onMouseUp as EventListenerOrEventListenerObject) doc.addEventListener('mouseup', onMouseUp as EventListenerOrEventListenerObject)
} }
const onClick = ( const onClick = (event: MouseEvent) => {
event: MouseEvent,
handleId: string | null,
nodeId: string,
handleType: HandleType,
isValidConnection?: ValidConnectionFunc,
) => {
if (!connectOnClick) return if (!connectOnClick) return
if (!connectionStartHandle) { if (!connectionStartHandle) {
startConnection({ nodeId, type: handleType, handleId }, undefined, event) startConnection({ nodeId: unref(nodeId), type: unref(type), handleId: unref(handleId) }, undefined, event)
} else { } else {
let validConnectFunc: ValidConnectionFunc = isValidConnection ?? (() => true) let validConnectFunc: ValidConnectionFunc = isValidConnection ?? (() => true)
const node = getNode(nodeId) const node = getNode(unref(nodeId))
if (node && (typeof node.connectable === 'undefined' ? nodesConnectable : node.connectable) === false) return if (node && (typeof node.connectable === 'undefined' ? nodesConnectable : node.connectable) === false) return
if (!isValidConnection) { if (!isValidConnection) {
if (node) validConnectFunc = (handleType !== 'target' ? node.isValidTargetPos : node.isValidSourcePos) ?? (() => true) if (node) validConnectFunc = (!isTarget ? node.isValidTargetPos : node.isValidSourcePos) ?? (() => true)
} }
const doc = getHostForElement(event.target as HTMLElement) const doc = getHostForElement(event.target as HTMLElement)
@@ -4,7 +4,7 @@ import EdgeWrapper from '../../components/Edges/Wrapper'
import ConnectionLine from '../../components/ConnectionLine/ConnectionLine.vue' import ConnectionLine from '../../components/ConnectionLine/ConnectionLine.vue'
import { useEdgeHooks, useHandle, useVueFlow } from '../../composables' import { useEdgeHooks, useHandle, useVueFlow } from '../../composables'
import { connectionExists, groupEdgesByZLevel } from '../../utils' import { connectionExists, groupEdgesByZLevel } from '../../utils'
import type { EdgeComponent, EdgeUpdatable, GraphEdge } from '../../types' import type { Connection, EdgeComponent, EdgeUpdatable, GraphEdge, HandleType } from '../../types'
import { Slots } from '../../context' import { Slots } from '../../context'
import MarkerDefinitions from './MarkerDefinitions.vue' import MarkerDefinitions from './MarkerDefinitions.vue'
@@ -153,29 +153,43 @@ const onEdgeUpdaterTargetMouseDown = (event: MouseEvent, edge: GraphEdge) => {
handleEdgeUpdater(event, edge, false) handleEdgeUpdater(event, edge, false)
} }
const { onMouseDown } = useHandle() const nodeId = ref('')
const handleId = ref<string | null>(null)
const type = ref<HandleType>('source')
const elementEdgeUpdaterType = ref<HandleType>('source')
const toUpdate = ref<GraphEdge>()
const mouseEvent = ref<MouseEvent>()
const onEdgeUpdate = (connection: Connection) => {
if (!connectionExists(connection, getEdges) && toUpdate.value)
hooks[toUpdate.value.id].emit.update({ edge: toUpdate.value, connection })
}
const onEdgeUpdateEnd = () => {
if (!toUpdate.value || !mouseEvent.value) return
hooks[toUpdate.value.id].emit.updateEnd({ event: mouseEvent.value, edge: toUpdate.value })
updating.value = ''
}
const { onMouseDown } = useHandle({
nodeId,
handleId,
type,
isValidConnection: undefined,
elementEdgeUpdaterType,
onEdgeUpdate,
onEdgeUpdateEnd,
})
const handleEdgeUpdater = (event: MouseEvent, edge: GraphEdge, isSourceHandle: boolean) => { const handleEdgeUpdater = (event: MouseEvent, edge: GraphEdge, isSourceHandle: boolean) => {
const nodeId = isSourceHandle ? edge.target : edge.source nodeId.value = isSourceHandle ? edge.target : edge.source
const handleId = (isSourceHandle ? edge.targetHandle : edge.sourceHandle) ?? '' handleId.value = (isSourceHandle ? edge.targetHandle : edge.sourceHandle) ?? ''
type.value = isSourceHandle ? 'target' : 'source'
elementEdgeUpdaterType.value = type.value
toUpdate.value = edge
mouseEvent.value = event
hooks[edge.id].emit.updateStart({ event, edge }) hooks[edge.id].emit.updateStart({ event, edge })
onMouseDown( onMouseDown(event)
event,
handleId,
nodeId,
isSourceHandle,
undefined,
isSourceHandle ? 'target' : 'source',
(connection) => {
if (!connectionExists(connection, getEdges)) hooks[edge.id].emit.update({ edge, connection })
},
() => {
hooks[edge.id].emit.updateEnd({ event, edge })
updating.value = ''
},
)
} }
const getClass = (edge: GraphEdge) => { const getClass = (edge: GraphEdge) => {