mirror of
https://github.com/langgenius/dify.git
synced 2025-07-14 04:31:07 +00:00
65 lines
1.3 KiB
TypeScript
65 lines
1.3 KiB
TypeScript
import {
|
|
memo,
|
|
useMemo,
|
|
} from 'react'
|
|
import type { NodeProps } from 'reactflow'
|
|
import type { Node } from '../types'
|
|
import { CUSTOM_NODE } from '../constants'
|
|
import {
|
|
NodeComponentMap,
|
|
PanelComponentMap,
|
|
} from './constants'
|
|
import BaseNode from './_base/node'
|
|
import BasePanel from './_base/components/workflow-panel'
|
|
|
|
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'
|
|
|
|
export 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}
|
|
id={props.id}
|
|
data={props.data}
|
|
>
|
|
<PanelComponent />
|
|
</BasePanel>
|
|
)
|
|
}
|
|
|
|
return null
|
|
})
|
|
|
|
Panel.displayName = 'Panel'
|
|
|
|
export default memo(CustomNode)
|