Skip to Content
代码示例Interaction

保存和恢复

如果你想要保存和恢复流程,则可以使用 React Flow 实例的 toObject 函数 或本地节点和边状态。在此示例中,你可以移动节点、添加节点并保存图表。然后重新加载页面并单击恢复以恢复你的图表。

¥If you want to save and restore a flow you can use the toObject function of the React Flow instance or your local nodes and edges state. In this example you can move nodes around, add ones and save the diagram. Then reload the page and click restore to restore your diagram.

import React, { useState, useCallback } from 'react'; import { Background, ReactFlow, ReactFlowProvider, useNodesState, useEdgesState, addEdge, useReactFlow, Panel, } from '@xyflow/react'; import '@xyflow/react/dist/style.css'; const flowKey = 'example-flow'; const getNodeId = () => `randomnode_${+new Date()}`; const initialNodes = [ { id: '1', data: { label: 'Node 1' }, position: { x: 0, y: -50 } }, { id: '2', data: { label: 'Node 2' }, position: { x: 0, y: 50 } }, ]; const initialEdges = [{ id: 'e1-2', source: '1', target: '2' }]; const SaveRestore = () => { const [nodes, setNodes, onNodesChange] = useNodesState(initialNodes); const [edges, setEdges, onEdgesChange] = useEdgesState(initialEdges); const [rfInstance, setRfInstance] = useState(null); const { setViewport } = useReactFlow(); const onConnect = useCallback( (params) => setEdges((eds) => addEdge(params, eds)), [setEdges], ); const onSave = useCallback(() => { if (rfInstance) { const flow = rfInstance.toObject(); localStorage.setItem(flowKey, JSON.stringify(flow)); } }, [rfInstance]); const onRestore = useCallback(() => { const restoreFlow = async () => { const flow = JSON.parse(localStorage.getItem(flowKey)); if (flow) { const { x = 0, y = 0, zoom = 1 } = flow.viewport; setNodes(flow.nodes || []); setEdges(flow.edges || []); setViewport({ x, y, zoom }); } }; restoreFlow(); }, [setNodes, setViewport]); const onAdd = useCallback(() => { const newNode = { id: getNodeId(), data: { label: 'Added node' }, position: { x: (Math.random() - 0.5) * 400, y: (Math.random() - 0.5) * 400, }, }; setNodes((nds) => nds.concat(newNode)); }, [setNodes]); return ( <ReactFlow nodes={nodes} edges={edges} onNodesChange={onNodesChange} onEdgesChange={onEdgesChange} onConnect={onConnect} onInit={setRfInstance} fitView fitViewOptions={{ padding: 2 }} style={{ backgroundColor: "#F7F9FB" }} > <Background /> <Panel position="top-right"> <button onClick={onSave}>save</button> <button onClick={onRestore}>restore</button> <button onClick={onAdd}>add node</button> </Panel> </ReactFlow> ); }; export default () => ( <ReactFlowProvider> <SaveRestore /> </ReactFlowProvider> );