improvement(edges): drag edge over block#2596
Merged
icecrasher321 merged 2 commits intostagingfrom Dec 27, 2025
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryThis PR implements the ability to connect workflow edges by dragging from one block and dropping onto another, improving the user experience when creating connections between blocks. Key Changes:
Technical Implementation: Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant ReactFlow
participant onConnectStart
participant connectionSourceRef
participant onConnectEnd
participant findNodeAtPosition
participant onConnect
User->>ReactFlow: Start dragging edge from handle
ReactFlow->>onConnectStart: Trigger with event & params
onConnectStart->>connectionSourceRef: Store nodeId & handleId
onConnectStart->>onConnectStart: Set error connection flag if handleId === 'error'
User->>ReactFlow: Drag edge over canvas
Note over User,ReactFlow: User drags connection line
User->>ReactFlow: Release edge over a block
ReactFlow->>onConnectEnd: Trigger with MouseEvent/TouchEvent
onConnectEnd->>onConnectEnd: Reset error connection flag
onConnectEnd->>connectionSourceRef: Retrieve stored source info
alt Source exists
onConnectEnd->>onConnectEnd: Get cursor position (clientX, clientY)
onConnectEnd->>ReactFlow: screenToFlowPosition(cursor)
ReactFlow-->>onConnectEnd: Return flow coordinates
onConnectEnd->>findNodeAtPosition: Find node at flow position
findNodeAtPosition->>findNodeAtPosition: Loop through nodes, check bounds
findNodeAtPosition->>findNodeAtPosition: Skip subflowNode types
findNodeAtPosition-->>onConnectEnd: Return target node or undefined
alt Valid target found & different from source
onConnectEnd->>onConnect: Create connection with target handle='target'
onConnect->>onConnect: Validate connection rules
onConnect->>onConnect: Add edge to workflow
else No valid target
Note over onConnectEnd: Connection cancelled
end
end
onConnectEnd->>connectionSourceRef: Clear stored source (set to null)
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Connect edge when you drag over block.
Type of Change
Testing
Tested manually
Checklist