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
Connections - Editing
Drag to Connect
Click to Connect
New
Drag to Reassign
Create Node on Connection Drop
Remove Connection on Drop
Assign Node to Connection on Drop
Auto Snap
Connections - Appearance
Connection Types (Straight, Segment, Bezier, Adaptive Curve)
Custom Connection Type
Connection Behaviours
Connection Markers
Connection Content
Connection Gradients
Connections - Routing
Connection Waypoints
Connection Connectable Side
Viewport
Minimap
Zoom
Background
Auto Pan
New
Canvas Layer Ordering
New
Editor Helpers
Selection Area
Magnetic Lines
Magnetic Rects
Grid System
Add Node from Palette
Accessibility
New
Help in Positioning (Legacy)
Deprecated
Layout Engines
Dagre Layout
Dagre Auto Layout
ELK.js Layout
ELK.js Auto Layout
Reflow
Reflow on Resize
Editor State
Cut/Copy/Paste
Undo/Redo
Undo/Redo V2
Events
Drag Start/End Events
Custom Event Triggers
Control Schemes
New
Performance
Large Scene Performance
Connection Redraw Performance
Reference Apps
AI Low-Code Platform
Schema Designer
Call Center Flow
UML Diagram
Tournament Bracket
Foblex Flow

Click to Connect

Description

Create connections without dragging: click a source connector to start, the preview line follows the cursor, then click a connectable target to commit. Pressing Escape or clicking anywhere else cancels; clicking another source re-arms from it. Drag-to-connect keeps working alongside — both gestures share the same preview, snapping, validation, and emit the same fCreateConnection event.

Example

[example.html] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/libs/f-examples/connectors/click-to-connect/example.html [example.ts] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/libs/f-examples/connectors/click-to-connect/example.ts [example.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/libs/f-examples/connectors/click-to-connect/example.scss

Usage

Select the connection gesture through provideFFlow:

  • 'drag' — the default drag-to-connect only (same as omitting the feature).
  • 'click' — adds click-to-connect alongside drag.
  • A custom Type<IFConnectionFlow> installs your own gesture: implement initialize() / destroy() and drive the shared FCreateConnectionSession (begin, update, resolveTarget, complete, cancel) to reuse the preview line, snapping, connectable marking, and event emission.

The connection rules are unchanged: fConnectorDisabled, fCanBeConnectedTo, categories, and multiplicity apply to both gestures, and <f-connection-for-create> remains the opt-in for the preview.

Edit this page on GitHub