diff --git a/examples/react/src/App/routes.ts b/examples/react/src/App/routes.ts
index 76ab08e4..444586ca 100644
--- a/examples/react/src/App/routes.ts
+++ b/examples/react/src/App/routes.ts
@@ -28,6 +28,7 @@ import NodeTypesObjectChange from '../examples/NodeTypesObjectChange';
import Overview from '../examples/Overview';
import Provider from '../examples/Provider';
import SaveRestore from '../examples/SaveRestore';
+import SetNodesBatching from '../examples/SetNodesBatching';
import Stress from '../examples/Stress';
import Subflow from '../examples/Subflow';
import SwitchFlow from '../examples/Switch';
@@ -226,6 +227,11 @@ const routes: IRoute[] = [
path: 'save-restore',
component: SaveRestore,
},
+ {
+ name: 'SetNodes Batching',
+ path: 'setnodes-batching',
+ component: SetNodesBatching,
+ },
{
name: 'Stress',
path: 'stress',
diff --git a/examples/react/src/examples/SetNodesBatching/index.tsx b/examples/react/src/examples/SetNodesBatching/index.tsx
new file mode 100644
index 00000000..2dc602eb
--- /dev/null
+++ b/examples/react/src/examples/SetNodesBatching/index.tsx
@@ -0,0 +1,70 @@
+import { useCallback } from 'react';
+import {
+ ReactFlow,
+ MiniMap,
+ Background,
+ BackgroundVariant,
+ Controls,
+ ReactFlowProvider,
+ Node,
+ Edge,
+ useReactFlow,
+ Panel,
+} from '@xyflow/react';
+
+const a = { id: 'a', data: { label: 'A' }, position: { x: 250, y: 5 } };
+const b = { id: 'b', data: { label: 'B' }, position: { x: 100, y: 100 } };
+const c = { id: 'c', data: { label: 'C' }, position: { x: 400, y: 100 } };
+
+const SetNotesBatchingFlow = () => {
+ const { setNodes, updateNode } = useReactFlow();
+
+ const triggerMultipleSetNodes = useCallback(() => {
+ setNodes([a]);
+ setNodes((nodes) => [...nodes, b]);
+ setNodes((nodes) => [...nodes, c]);
+ setNodes((nodes) =>
+ nodes.map((node) =>
+ node.id === 'a' ? { ...node, position: { x: node.position.x + 20, y: node.position.y + 20 } } : node
+ )
+ );
+ }, []);
+
+ const triggerMultipleUpdateNodes = useCallback(() => {
+ triggerMultipleSetNodes();
+ updateNode('a', (a) => ({ position: { x: a.position.x + 20, y: a.position.y + 20 } }));
+ updateNode('b', (b) => ({ position: { x: b.position.x + 20, y: b.position.y + 20 } }));
+ updateNode('c', (c) => ({ position: { x: c.position.x + 20, y: c.position.y + 20 } }));
+ updateNode('a', (a) => ({ data: { ...a.data, label: `A ${Date.now()}` } }));
+ updateNode('b', (b) => ({ data: { ...b.data, label: `B ${Date.now()}` } }));
+ updateNode('c', (c) => ({ data: { ...c.data, label: `C ${Date.now()}` } }));
+ }, []);
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default function App() {
+ return (
+
+
+
+ );
+}