Foblex Flow
Introduction
Overview
Nodes
Custom Nodes
Drag Handle
Node Selection
Resize Handle
Rotate Handle
Grouping
Drag to Group
Connectors
Node as Connector
Connector Inside Node
Connector Outlet
Limiting Connections
Connection Rules
Connectable Side
Updated
Connections
Drag to Connect
Drag to Reassign
Create Node on Connection Drop
Remove Connection on Drop
Assign Node to Connection on Drop
Auto Snap
Connection Types (Straight, Segment, Bezier, Adaptive Curve)
Custom Connection Type
Connection Behaviours
Connection Markers
Connection Content
Updated
Connection Waypoints
New
Connection Gradients
Updated
Connection Connectable Side
New
Extensions
Auto Pan
New
Add Node from Palette
Selection Area
Help in Positioning (Legacy)
Deprecated
Magnetic Lines
New
Magnetic Rects
New
Grid System
Minimap
Zoom
Background
Plugins
Dagre Layout
New
Dagre Auto Layout
New
ELK.js Layout
New
ELK.js Auto Layout
New
Advanced
Large Scene Performance
Connection Redraw Performance
Updated
Cut/Copy/Paste
Undo/Redo
Undo/Redo V2
Drag Start/End Events
Custom Event Triggers
Reference Apps
AI Low-Code Platform
Updated
Schema Designer
Updated
Call Center Flow
Updated
UML Diagram
Updated
Tournament Bracket
Updated
Foblex Flow

Assign Node to Connection on Drop

Description

This example shows how to drop a node onto an existing connection and insert that node into the graph. Instead of forcing users to delete an edge and reconnect everything by hand, the editor treats the connection itself as a valid drop target.

That pattern is useful in workflow builders, AI pipeline editors, ETL tools, and internal low-code products where users frequently add a new step between two already connected nodes.

The important part is not just the visual effect. A good implementation updates the graph structure, preserves a predictable drag-and-drop flow, and makes "insert between steps" feel like a first-class action.

Example

[example.html] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/libs/f-examples/connections/assign-node-to-connection-on-drop/example.html [example.ts] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/libs/f-examples/connections/assign-node-to-connection-on-drop/example.ts [example.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/libs/f-examples/connections/assign-node-to-connection-on-drop/example.scss

When to use it

  • Insert approval, transform, or retry steps into an existing chain.
  • Let users enrich a workflow without rebuilding the entire edge path.
  • Support palette-driven editing in denser diagrams.

This example focuses on edge hit-testing during drop, connection reassignment, and a smoother editing UX for real node-based interfaces.

Related docs

Edit this page on GitHub