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
New
Connection Waypoints
New
Connection Gradients
Updated
Connection Connectable Side
New
Extensions
Add Node from Palette
Selection Area
Help in Positioning (Legacy)
Deprecated
Magnetic Lines
New
Magnetic Rects
New
Grid System
Minimap
Zoom
Updated
Background
Updated
Advanced
Large Scene Performance
Updated
Connection Redraw Performance
Updated
Cut/Copy/Paste
New
Undo/Redo
Undo/Redo V2
New
Dagre Layout (Directed Graph)
ELKJS Layout (Directed Graph)
Drag Start/End Events
Custom Event Triggers
Reference Apps
AI Low-Code Platform
New
DB Management
UML Diagram
Tournament Bracket
Foblex Flow

Cut, Copy, and Paste Example

Description

Add familiar cut, copy, and paste interactions to a node editor while keeping IDs, offsets, and connections consistent. This pattern matters once users need to duplicate or reorganize larger graph fragments quickly.

Example

[component.html] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/advanced/copy-paste/copy-paste.html [component.ts] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/advanced/copy-paste/copy-paste.ts [component.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/advanced/copy-paste/copy-paste.scss [common.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/_flow-common.scss

What this example shows

  • Copy selected nodes and the connections that stay valid inside the copied fragment.
  • Cut nodes by copying them and then removing them from the diagram.
  • Paste clipboard content with regenerated IDs and a slight position offset.
  • Rebuild connections only when both source and target nodes exist in the pasted selection.

Clipboard content is stored in local state, and new IDs are generated during paste so the graph remains valid.

When to use it

  • Users expect desktop-like editing shortcuts.
  • The editor needs fast duplication of nodes and their connections.
  • Teams frequently reorganize parts of a workflow by reusing existing graph fragments.
Edit this page on GitHub