Merge pull request #3954 from xyflow/handle-connection-fixes

Handle connection fixes
This commit is contained in:
Moritz Klack
2024-02-29 12:54:35 +01:00
committed by GitHub
13 changed files with 94 additions and 56 deletions
@@ -1,7 +1,7 @@
import { useCallback } from 'react'; import { useCallback } from 'react';
import { ReactFlow, Node, Edge, useNodesState, useEdgesState, Position, Connection, addEdge } from '@xyflow/react'; import { ReactFlow, Node, Edge, useNodesState, useEdgesState, Position, Connection, addEdge } from '@xyflow/react';
import styles from './touch-device.module.css'; import './touch-device.css';
const initialNodes: Node[] = [ const initialNodes: Node[] = [
{ {
@@ -42,7 +42,7 @@ const TouchDeviceFlow = () => {
onConnectEnd={onConnectEnd} onConnectEnd={onConnectEnd}
onClickConnectStart={onClickConnectStart} onClickConnectStart={onClickConnectStart}
onClickConnectEnd={onClickConnectEnd} onClickConnectEnd={onClickConnectEnd}
className={styles.flow} className="touch-flow"
/> />
); );
}; };
@@ -0,0 +1,27 @@
.react-flow.touch-flow .react-flow__handle {
width: 20px;
height: 20px;
border-radius: 3px;
background-color: #9f7aea;
}
.touch-flow .react-flow__handle-right {
--translate: translate(50%, -50%);
}
.touch-flow .react-flow__handle-left {
--translate: translate(-50%, -50%);
}
@keyframes bounce {
0% {
transform: var(--translate) scale(1);
}
50% {
transform: var(--translate) scale(1.1);
}
}
.react-flow.touch-flow .react-flow__handle.clickconnecting {
animation: bounce 1600ms infinite ease-in;
}
@@ -1,19 +0,0 @@
.flow :global .react-flow__handle {
width: 20px;
height: 20px;
border-radius: 3px;
background-color: #9f7aea;
}
.flow :global .react-flow__handle.connecting {
animation: bounce 1600ms infinite ease-out;
}
@keyframes bounce {
0% {
transform: translate(0, -50%) scale(1);
}
50% {
transform: translate(0, -50%) scale(1.1);
}
}
@@ -24,10 +24,14 @@
background: #fff; background: #fff;
} }
.validationflow :global .connecting { .validationflow :global .connectingto {
background: #ff6060; background: #ff6060;
} }
.validationflow :global .react-flow__node-custominput .connectingfrom {
background: #55dd99;
}
.validationflow :global .valid { .validationflow :global .valid {
background: #55dd99; background: #55dd99;
} }
@@ -1,7 +1,11 @@
.svelte-flow__handle.connecting { .svelte-flow__handle.connectingto {
background: #ff6060; background: #ff6060;
} }
.svelte-flow__handle.connectingfrom {
background: #55dd99;
}
.svelte-flow__handle.valid { .svelte-flow__handle.valid {
background: #55dd99; background: #55dd99;
} }
+1
View File
@@ -5,6 +5,7 @@
## ⚠️ Breaking changes ## ⚠️ Breaking changes
- `useNodesData` not only returns data objects but also the type and the id of the node - `useNodesData` not only returns data objects but also the type and the id of the node
- status class names for Handle components are slightly different. It's now "connectingfrom" and "connectingto" instead of "connecting"
## Patch changes ## Patch changes
+27 -7
View File
@@ -16,6 +16,7 @@ import {
type HandleProps, type HandleProps,
type Connection, type Connection,
type HandleType, type HandleType,
ConnectionMode,
} from '@xyflow/system'; } from '@xyflow/system';
import { useStore, useStoreApi } from '../../hooks/useStore'; import { useStore, useStoreApi } from '../../hooks/useStore';
@@ -36,14 +37,24 @@ const connectingSelector =
connectionStartHandle: startHandle, connectionStartHandle: startHandle,
connectionEndHandle: endHandle, connectionEndHandle: endHandle,
connectionClickStartHandle: clickHandle, connectionClickStartHandle: clickHandle,
connectionMode,
connectionStatus,
} = state; } = state;
const connectingTo = endHandle?.nodeId === nodeId && endHandle?.handleId === handleId && endHandle?.type === type;
return { return {
connecting: connectingFrom:
(startHandle?.nodeId === nodeId && startHandle?.handleId === handleId && startHandle?.type === type) || startHandle?.nodeId === nodeId && startHandle?.handleId === handleId && startHandle?.type === type,
(endHandle?.nodeId === nodeId && endHandle?.handleId === handleId && endHandle?.type === type), connectingTo,
clickConnecting: clickConnecting:
clickHandle?.nodeId === nodeId && clickHandle?.handleId === handleId && clickHandle?.type === type, clickHandle?.nodeId === nodeId && clickHandle?.handleId === handleId && clickHandle?.type === type,
isPossibleEndHandle:
connectionMode === ConnectionMode.Strict
? startHandle?.type !== type
: nodeId !== startHandle?.nodeId || handleId !== startHandle?.handleId,
connectionInProcess: !!startHandle,
valid: connectingTo && connectionStatus === 'valid',
}; };
}; };
@@ -71,7 +82,10 @@ const HandleComponent = forwardRef<HTMLDivElement, HandleComponentProps>(
const store = useStoreApi(); const store = useStoreApi();
const nodeId = useNodeId(); const nodeId = useNodeId();
const { connectOnClick, noPanClassName, rfId } = useStore(selector, shallow); const { connectOnClick, noPanClassName, rfId } = useStore(selector, shallow);
const { connecting, clickConnecting } = useStore(connectingSelector(nodeId, handleId, type), shallow); const { connectingFrom, connectingTo, clickConnecting, isPossibleEndHandle, connectionInProcess, valid } = useStore(
connectingSelector(nodeId, handleId, type),
shallow
);
if (!nodeId) { if (!nodeId) {
store.getState().onError?.('010', errorMessages['error010']()); store.getState().onError?.('010', errorMessages['error010']());
@@ -201,10 +215,16 @@ const HandleComponent = forwardRef<HTMLDivElement, HandleComponentProps>(
connectable: isConnectable, connectable: isConnectable,
connectablestart: isConnectableStart, connectablestart: isConnectableStart,
connectableend: isConnectableEnd, connectableend: isConnectableEnd,
connecting: clickConnecting, clickconnecting: clickConnecting,
// this class is used to style the handle when the user is connecting connectingfrom: connectingFrom,
connectingto: connectingTo,
valid,
// shows where you can start a connection from
// and where you can end it while connecting
connectionindicator: connectionindicator:
isConnectable && ((isConnectableStart && !connecting) || (isConnectableEnd && connecting)), isConnectable &&
(!connectionInProcess || isPossibleEndHandle) &&
(connectionInProcess ? isConnectableEnd : isConnectableStart),
}, },
])} ])}
onMouseDown={onPointerDown} onMouseDown={onPointerDown}
+2 -4
View File
@@ -303,13 +303,11 @@ const createRFStore = ({
connectionEndHandle: null, connectionEndHandle: null,
}), }),
updateConnection: (params) => { updateConnection: (params) => {
const { connectionStatus, connectionStartHandle, connectionEndHandle, connectionPosition } = get(); const { connectionPosition } = get();
const currentConnection = { const currentConnection = {
...params,
connectionPosition: params.connectionPosition ?? connectionPosition, connectionPosition: params.connectionPosition ?? connectionPosition,
connectionStatus: params.connectionStatus ?? connectionStatus,
connectionStartHandle: params.connectionStartHandle ?? connectionStartHandle,
connectionEndHandle: params.connectionEndHandle ?? connectionEndHandle,
}; };
set(currentConnection); set(currentConnection);
+1
View File
@@ -5,6 +5,7 @@
## ⚠️ Breaking changes ## ⚠️ Breaking changes
- `useNodesData` not only returns data objects but also the type and the id of the node - `useNodesData` not only returns data objects but also the type and the id of the node
- status class names for Handle components are slightly different. It's now "connectingfrom" and "connectingto" instead of "connecting"
## Patch changes ## Patch changes
@@ -56,7 +56,8 @@
onconnect: onConnectAction, onconnect: onConnectAction,
onconnectstart: onConnectStartAction, onconnectstart: onConnectStartAction,
onconnectend: onConnectEndAction, onconnectend: onConnectEndAction,
flowId flowId,
connection
} = store; } = store;
function onPointerDown(event: MouseEvent | TouchEvent) { function onPointerDown(event: MouseEvent | TouchEvent) {
@@ -123,6 +124,16 @@
prevConnections = connections ?? new Map(); prevConnections = connections ?? new Map();
} }
$: connectingFrom =
$connection.startHandle?.nodeId === nodeId &&
$connection.startHandle?.type === type &&
$connection.startHandle?.handleId === handleId;
$: connectingTo =
$connection.endHandle?.nodeId === nodeId &&
$connection.endHandle?.type === type &&
$connection.endHandle?.handleId === handleId;
$: valid = connectingTo && $connection.status === 'valid';
// @todo implement connectablestart, connectableend // @todo implement connectablestart, connectableend
</script> </script>
@@ -141,6 +152,11 @@ The Handle component is the part of a node that can be used to connect nodes.
'nodrag', 'nodrag',
'nopan', 'nopan',
position, position,
{
valid,
connectingto: connectingTo,
connectingfrom: connectingFrom
},
className className
])} ])}
class:source={!isTarget} class:source={!isTarget}
+4
View File
@@ -223,6 +223,10 @@ svg.xy-flow__connectionline {
min-width: 5px; min-width: 5px;
min-height: 5px; min-height: 5px;
&.connectingfrom {
pointer-events: all;
}
&.connectionindicator { &.connectionindicator {
pointer-events: all; pointer-events: all;
cursor: crosshair; cursor: crosshair;
+1 -15
View File
@@ -15,7 +15,7 @@ import {
type ConnectionHandle, type ConnectionHandle,
} from '../types'; } from '../types';
import { getClosestHandle, getConnectionStatus, getHandleLookup, getHandleType, resetRecentHandle } from './utils'; import { getClosestHandle, getConnectionStatus, getHandleLookup, getHandleType } from './utils';
export type OnPointerDownParams = { export type OnPointerDownParams = {
autoPanOnConnect: boolean; autoPanOnConnect: boolean;
@@ -107,7 +107,6 @@ function onPointerDown(
return; return;
} }
let prevActiveHandle: Element;
let connectionPosition = getEventPosition(event, containerBounds); let connectionPosition = getEventPosition(event, containerBounds);
let autoPanStarted = false; let autoPanStarted = false;
let connection: Connection | null = null; let connection: Connection | null = null;
@@ -194,18 +193,6 @@ function onPointerDown(
connectionStatus: getConnectionStatus(!!closestHandle, isValid), connectionStatus: getConnectionStatus(!!closestHandle, isValid),
connectionEndHandle: result.endHandle, connectionEndHandle: result.endHandle,
}); });
if (!closestHandle && !isValid && !handleDomNode) {
return resetRecentHandle(prevActiveHandle, lib);
}
if (connection?.source !== connection?.target && handleDomNode) {
resetRecentHandle(prevActiveHandle, lib);
prevActiveHandle = handleDomNode;
handleDomNode.classList.add('connecting', `${lib}-flow__handle-connecting`);
handleDomNode.classList.toggle('valid', isValid);
handleDomNode.classList.toggle(`${lib}-flow__handle-valid`, isValid);
}
} }
function onPointerUp(event: MouseEvent | TouchEvent) { function onPointerUp(event: MouseEvent | TouchEvent) {
@@ -221,7 +208,6 @@ function onPointerDown(
onEdgeUpdateEnd?.(event); onEdgeUpdateEnd?.(event);
} }
resetRecentHandle(prevActiveHandle, lib);
cancelConnection(); cancelConnection();
cancelAnimationFrame(autoPanId); cancelAnimationFrame(autoPanId);
autoPanStarted = false; autoPanStarted = false;
+2 -6
View File
@@ -38,7 +38,7 @@ export function getClosestHandle(
let closestHandles: ConnectionHandle[] = []; let closestHandles: ConnectionHandle[] = [];
let minDistance = Infinity; let minDistance = Infinity;
handles.forEach((handle) => { for (const handle of handles) {
const distance = Math.sqrt(Math.pow(handle.x - pos.x, 2) + Math.pow(handle.y - pos.y, 2)); const distance = Math.sqrt(Math.pow(handle.x - pos.x, 2) + Math.pow(handle.y - pos.y, 2));
if (distance <= connectionRadius) { if (distance <= connectionRadius) {
if (distance < minDistance) { if (distance < minDistance) {
@@ -49,7 +49,7 @@ export function getClosestHandle(
} }
minDistance = distance; minDistance = distance;
} }
}); }
if (!closestHandles.length) { if (!closestHandles.length) {
return null; return null;
@@ -101,10 +101,6 @@ export function getHandleType(
return null; return null;
} }
export function resetRecentHandle(handleDomNode: Element, lib: string): void {
handleDomNode?.classList.remove('valid', 'connecting', `${lib}-flow__handle-valid`, `${lib}-flow__handle-connecting`);
}
export function getConnectionStatus(isInsideConnectionRadius: boolean, isHandleValid: boolean) { export function getConnectionStatus(isInsideConnectionRadius: boolean, isHandleValid: boolean) {
let connectionStatus = null; let connectionStatus = null;