mirror of
https://github.com/langgenius/dify.git
synced 2025-08-11 10:47:24 +00:00
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import { useNodes } from 'reactflow'
|
|
import { useTranslation } from 'react-i18next'
|
|
import type { DocExtractorNodeType } from './types'
|
|
import { isSystemVar } from '@/app/components/workflow/nodes/_base/components/variable/utils'
|
|
import { BlockEnum, type Node, type NodeProps } from '@/app/components/workflow/types'
|
|
import {
|
|
VariableLabelInNode,
|
|
} from '@/app/components/workflow/nodes/_base/components/variable/variable-label'
|
|
|
|
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'>
|
|
<div className='system-2xs-medium-uppercase mb-1 text-text-tertiary'>{t(`${i18nPrefix}.inputVar`)}</div>
|
|
<VariableLabelInNode
|
|
variables={variable}
|
|
nodeType={node?.data.type}
|
|
nodeTitle={node?.data.title}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(NodeComponent)
|