2024-10-21 10:32:37 +08:00
|
|
|
import type { FC } from 'react'
|
|
|
|
import React from 'react'
|
|
|
|
import { useNodes } from 'reactflow'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import NodeVariableItem from '../variable-assigner/components/node-variable-item'
|
2025-02-17 17:05:13 +08:00
|
|
|
import type { DocExtractorNodeType } from './types'
|
2025-06-04 17:34:12 +08:00
|
|
|
import { isSystemVar } from '@/app/components/workflow/nodes/_base/components/variable/utils'
|
2024-10-21 10:32:37 +08:00
|
|
|
import { BlockEnum, type Node, type NodeProps } from '@/app/components/workflow/types'
|
|
|
|
|
|
|
|
const i18nPrefix = 'workflow.nodes.docExtractor'
|
|
|
|
|
|
|
|
const NodeComponent: FC<NodeProps<DocExtractorNodeType>> = ({
|
|
|
|
data,
|
|
|
|
}) => {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
const nodes: Node[] = useNodes()
|
|
|
|
const { variable_selector: variable } = data
|
|
|
|
|
|
|
|
if (!variable || variable.length === 0)
|
|
|
|
return null
|
|
|
|
|
|
|
|
const isSystem = isSystemVar(variable)
|
|
|
|
const node = isSystem ? nodes.find(node => node.data.type === BlockEnum.Start) : nodes.find(node => node.id === variable[0])
|
|
|
|
return (
|
|
|
|
<div className='relative px-3'>
|
2025-03-21 17:41:03 +08:00
|
|
|
<div className='system-2xs-medium-uppercase mb-1 text-text-tertiary'>{t(`${i18nPrefix}.inputVar`)}</div>
|
2024-10-21 10:32:37 +08:00
|
|
|
<NodeVariableItem
|
|
|
|
node={node as Node}
|
2025-06-04 17:34:12 +08:00
|
|
|
variable={variable}
|
2024-10-21 10:32:37 +08:00
|
|
|
className='bg-workflow-block-parma-bg'
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default React.memo(NodeComponent)
|