import { useCallback } 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 } = useReactFlow(); const onPaneClick = useCallback( (evt) => { 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] ); const onNodeClick = useCallback( (_, element) => { const { x, y } = element.position; setCenter(x, y, { zoom: 1, duration: 1200 }); }, [setCenter] ); return (
); }; const WrappedFlow = () => ( ); export default WrappedFlow;