mirror of
https://github.com/langgenius/dify.git
synced 2026-03-25 21:23:51 +08:00
128 lines
2.8 KiB
TypeScript
128 lines
2.8 KiB
TypeScript
import type { FC } from 'react'
|
|
import {
|
|
memo,
|
|
// useEffect,
|
|
} from 'react'
|
|
import { useKeyPress } from 'ahooks'
|
|
import ReactFlow, {
|
|
Background,
|
|
ReactFlowProvider,
|
|
useEdgesState,
|
|
// useNodesInitialized,
|
|
useNodesState,
|
|
} from 'reactflow'
|
|
import 'reactflow/dist/style.css'
|
|
// import './style.css'
|
|
import type {
|
|
Edge,
|
|
Node,
|
|
} from './types'
|
|
import { useWorkflow } from './hooks'
|
|
import Header from './header'
|
|
import CustomNode from './nodes'
|
|
import ZoomInOut from './zoom-in-out'
|
|
import CustomEdge from './custom-edge'
|
|
import CustomConnectionLine from './custom-connection-line'
|
|
import Panel from './panel'
|
|
import Features from './features'
|
|
import { useStore } from './store'
|
|
|
|
const nodeTypes = {
|
|
custom: CustomNode,
|
|
}
|
|
const edgeTypes = {
|
|
custom: CustomEdge,
|
|
}
|
|
|
|
type WorkflowProps = {
|
|
nodes: Node[]
|
|
edges: Edge[]
|
|
}
|
|
const Workflow: FC<WorkflowProps> = memo(({
|
|
nodes: initialNodes,
|
|
edges: initialEdges,
|
|
}) => {
|
|
const showFeaturesPanel = useStore(state => state.showFeaturesPanel)
|
|
const [nodes] = useNodesState(initialNodes)
|
|
const [edges, _, onEdgesChange] = useEdgesState(initialEdges)
|
|
// const nodesInitialized = useNodesInitialized()
|
|
|
|
console.log(nodes)
|
|
|
|
const {
|
|
// handleLayout,
|
|
|
|
handleNodeDragStart,
|
|
handleNodeDrag,
|
|
handleNodeDragStop,
|
|
handleNodeEnter,
|
|
handleNodeLeave,
|
|
handleNodeClick,
|
|
handleNodeConnect,
|
|
|
|
handleEdgeEnter,
|
|
handleEdgeLeave,
|
|
handleEdgeDelete,
|
|
} = useWorkflow()
|
|
|
|
// useEffect(() => {
|
|
// if (nodesInitialized)
|
|
// handleLayout()
|
|
// }, [nodesInitialized, handleLayout])
|
|
|
|
useKeyPress('Backspace', handleEdgeDelete)
|
|
|
|
return (
|
|
<div className='relative w-full h-full'>
|
|
<Header />
|
|
<Panel />
|
|
<ZoomInOut />
|
|
{
|
|
showFeaturesPanel && <Features />
|
|
}
|
|
<ReactFlow
|
|
nodeTypes={nodeTypes}
|
|
edgeTypes={edgeTypes}
|
|
nodes={nodes}
|
|
edges={edges}
|
|
onNodeDragStart={handleNodeDragStart}
|
|
onNodeDrag={handleNodeDrag}
|
|
onNodeDragStop={handleNodeDragStop}
|
|
onNodeMouseEnter={handleNodeEnter}
|
|
onNodeMouseLeave={handleNodeLeave}
|
|
onNodeClick={handleNodeClick}
|
|
onConnect={handleNodeConnect}
|
|
onEdgeMouseEnter={handleEdgeEnter}
|
|
onEdgeMouseLeave={handleEdgeLeave}
|
|
onEdgesChange={onEdgesChange}
|
|
multiSelectionKeyCode={null}
|
|
connectionLineComponent={CustomConnectionLine}
|
|
deleteKeyCode={null}
|
|
>
|
|
<Background
|
|
gap={[14, 14]}
|
|
size={1}
|
|
/>
|
|
</ReactFlow>
|
|
</div>
|
|
)
|
|
})
|
|
|
|
Workflow.displayName = 'Workflow'
|
|
|
|
const WorkflowWrap: FC<WorkflowProps> = ({
|
|
nodes,
|
|
edges,
|
|
}) => {
|
|
return (
|
|
<ReactFlowProvider>
|
|
<Workflow
|
|
nodes={nodes}
|
|
edges={edges}
|
|
/>
|
|
</ReactFlowProvider>
|
|
)
|
|
}
|
|
|
|
export default memo(WorkflowWrap)
|