mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import type { NodeProps } from 'reactflow'
|
|
import type { Node } from '../types'
|
|
import { memo, useMemo } from 'react'
|
|
import { CUSTOM_NODE } from '../constants'
|
|
import BasePanel from './_base/components/workflow-panel'
|
|
import BaseNode from './_base/node'
|
|
import { NodeComponentMap, PanelComponentMap } from './components'
|
|
|
|
const CustomNode = (props: NodeProps) => {
|
|
const nodeData = props.data
|
|
const NodeComponent = useMemo(() => NodeComponentMap[nodeData.type], [nodeData.type])!
|
|
|
|
return (
|
|
<>
|
|
<BaseNode id={props.id} data={props.data}>
|
|
<NodeComponent />
|
|
</BaseNode>
|
|
</>
|
|
)
|
|
}
|
|
CustomNode.displayName = 'CustomNode'
|
|
|
|
type PanelProps = {
|
|
type: Node['type']
|
|
id: Node['id']
|
|
data: Node['data']
|
|
}
|
|
export const Panel = memo((props: PanelProps) => {
|
|
const nodeClass = props.type
|
|
const nodeData = props.data
|
|
const PanelComponent = useMemo(() => {
|
|
if (nodeClass === CUSTOM_NODE) return PanelComponentMap[nodeData.type]
|
|
return () => null
|
|
}, [nodeClass, nodeData.type])!
|
|
|
|
if (nodeClass === CUSTOM_NODE) {
|
|
return (
|
|
<BasePanel key={`${props.id}-${nodeData.type}`} id={props.id} data={props.data}>
|
|
<PanelComponent />
|
|
</BasePanel>
|
|
)
|
|
}
|
|
|
|
return null
|
|
})
|
|
|
|
Panel.displayName = 'Panel'
|
|
|
|
export default memo(CustomNode)
|