import { useCallback, MouseEvent, useEffect } from 'react'; import ReactFlow, { Node, addEdge, Background, MiniMap, useReactFlow, ReactFlowProvider, Connection, Edge, useNodesState, useEdgesState, } from 'react-flow-renderer'; const initialNodes: Node[] = [ { id: '1', type: 'input', data: { label: 'Node 1' }, position: { x: 250, y: 5 }, className: 'light' }, { id: '2', data: { label: 'Node 2' }, position: { x: 100, y: 100 }, className: 'light' }, { id: '3', data: { label: 'Node 3' }, position: { x: 400, y: 100 }, className: 'light' }, { id: '4', data: { label: 'Node 4' }, position: { x: 400, y: 200 }, className: 'light' }, ]; const initialEdges: Edge[] = [ { id: 'e1-2', source: '1', target: '2', animated: true }, { id: 'e1-3', source: '1', target: '3' }, ]; let id = 5; const getId = () => `${id++}`; const UseZoomPanHelperFlow = () => { const [nodes, setNodes, onNodesChange] = useNodesState(initialNodes); const [edges, setEdges, onEdgesChange] = useEdgesState(initialEdges); const onConnect = (params: Connection | Edge) => setEdges((eds) => addEdge(params, eds)); const { project, setCenter, zoomIn, zoomOut, fitView, addNodes, setNodes: setNodesHook, addEdges } = useReactFlow(); const onPaneClick = useCallback( (evt: MouseEvent) => { const projectedPosition = project({ x: evt.clientX, y: evt.clientY - 40 }); setNodes((nds) => nds.concat({ id: getId(), position: projectedPosition, data: { label: `${projectedPosition.x}-${projectedPosition.y}`, }, }) ); }, [project, setNodes] ); const onNodeClick = useCallback( (_: MouseEvent, node: Node) => { const { x, y } = node.position; setCenter(x, y, { zoom: 1, duration: 1200 }); }, [setCenter] ); const onAddNode = useCallback(() => { const newNode = { id: getId(), position: { x: Math.random() * 500, y: Math.random() * 500 }, data: { label: 'New Node', }, }; addNodes(newNode); }, [addNodes]); useEffect(() => { addEdges({ id: 'e3-4', source: '3', target: '4' }); }, [addEdges]); const onResetNodes = useCallback(() => setNodesHook(initialNodes), [setNodesHook]); return ( zoomIn({ duration: 1200 })}>zoomIn zoomOut({ duration: 0 })}>zoomOut fitView({ duration: 1200, padding: 0.3 })}>fitView add node reset nodes ); }; const WrappedFlow = () => ( ); export default WrappedFlow;