mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +00:00 
			
		
		
		
	 7709d9df20
			
		
	
	
		7709d9df20
		
			
		
	
	
	
	
		
			
			Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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'
 | |
| import type { DocExtractorNodeType } from './types'
 | |
| import { isConversationVar, isENV, isSystemVar } from '@/app/components/workflow/nodes/_base/components/variable/utils'
 | |
| 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 isEnv = isENV(variable)
 | |
|   const isChatVar = isConversationVar(variable)
 | |
|   const node = isSystem ? nodes.find(node => node.data.type === BlockEnum.Start) : nodes.find(node => node.id === variable[0])
 | |
|   const varName = isSystem ? `sys.${variable[variable.length - 1]}` : variable.slice(1).join('.')
 | |
|   return (
 | |
|     <div className='relative px-3'>
 | |
|       <div className='system-2xs-medium-uppercase mb-1 text-text-tertiary'>{t(`${i18nPrefix}.inputVar`)}</div>
 | |
|       <NodeVariableItem
 | |
|         node={node as Node}
 | |
|         isEnv={isEnv}
 | |
|         isChatVar={isChatVar}
 | |
|         varName={varName}
 | |
|         className='bg-workflow-block-parma-bg'
 | |
|       />
 | |
|     </div>
 | |
|   )
 | |
| }
 | |
| 
 | |
| export default React.memo(NodeComponent)
 |