123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- import {
- memo,
- useEffect,
- useState,
- } from 'react'
- import { useTranslation } from 'react-i18next'
- import {
- COMMAND_PRIORITY_EDITOR,
- } from 'lexical'
- import { mergeRegister } from '@lexical/utils'
- import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'
- import {
- RiErrorWarningFill,
- } from '@remixicon/react'
- import { useSelectOrDelete } from '../../hooks'
- import type { WorkflowNodesMap } from './node'
- import { WorkflowVariableBlockNode } from './node'
- import {
- DELETE_WORKFLOW_VARIABLE_BLOCK_COMMAND,
- UPDATE_WORKFLOW_NODES_MAP,
- } from './index'
- import cn from '@/utils/classnames'
- import { Variable02 } from '@/app/components/base/icons/src/vender/solid/development'
- import { BubbleX, Env } from '@/app/components/base/icons/src/vender/line/others'
- import { VarBlockIcon } from '@/app/components/workflow/block-icon'
- import { Line3 } from '@/app/components/base/icons/src/public/common'
- import { isConversationVar, isENV, isSystemVar } from '@/app/components/workflow/nodes/_base/components/variable/utils'
- import Tooltip from '@/app/components/base/tooltip'
- type WorkflowVariableBlockComponentProps = {
- nodeKey: string
- variables: string[]
- workflowNodesMap: WorkflowNodesMap
- }
- const WorkflowVariableBlockComponent = ({
- nodeKey,
- variables,
- workflowNodesMap = {},
- }: WorkflowVariableBlockComponentProps) => {
- const { t } = useTranslation()
- const [editor] = useLexicalComposerContext()
- const [ref, isSelected] = useSelectOrDelete(nodeKey, DELETE_WORKFLOW_VARIABLE_BLOCK_COMMAND)
- const variablesLength = variables.length
- const varName = (
- () => {
- const isSystem = isSystemVar(variables)
- const varName = variablesLength >= 3 ? (variables).slice(-2).join('.') : variables[variablesLength - 1]
- return `${isSystem ? 'sys.' : ''}${varName}`
- }
- )()
- const [localWorkflowNodesMap, setLocalWorkflowNodesMap] = useState<WorkflowNodesMap>(workflowNodesMap)
- const node = localWorkflowNodesMap![variables[0]]
- const isEnv = isENV(variables)
- const isChatVar = isConversationVar(variables)
- useEffect(() => {
- if (!editor.hasNodes([WorkflowVariableBlockNode]))
- throw new Error('WorkflowVariableBlockPlugin: WorkflowVariableBlock not registered on editor')
- return mergeRegister(
- editor.registerCommand(
- UPDATE_WORKFLOW_NODES_MAP,
- (workflowNodesMap: WorkflowNodesMap) => {
- setLocalWorkflowNodesMap(workflowNodesMap)
- return true
- },
- COMMAND_PRIORITY_EDITOR,
- ),
- )
- }, [editor])
- const Item = (
- <div
- className={cn(
- 'mx-0.5 relative group/wrap flex items-center h-[18px] pl-0.5 pr-[3px] rounded-[5px] border select-none',
- isSelected ? ' border-[#84ADFF] bg-[#F5F8FF]' : ' border-black/5 bg-white',
- !node && !isEnv && !isChatVar && '!border-[#F04438] !bg-[#FEF3F2]',
- )}
- ref={ref}
- >
- {!isEnv && !isChatVar && (
- <div className='flex items-center'>
- {
- node?.type && (
- <div className='p-[1px]'>
- <VarBlockIcon
- className='!text-gray-500'
- type={node?.type}
- />
- </div>
- )
- }
- <div className='shrink-0 mx-0.5 max-w-[60px] text-xs font-medium text-gray-500 truncate' title={node?.title} style={{
- }}>{node?.title}</div>
- <Line3 className='mr-0.5 text-gray-300'></Line3>
- </div>
- )}
- <div className='flex items-center text-primary-600'>
- {!isEnv && !isChatVar && <Variable02 className='shrink-0 w-3.5 h-3.5' />}
- {isEnv && <Env className='shrink-0 w-3.5 h-3.5 text-util-colors-violet-violet-600' />}
- {isChatVar && <BubbleX className='w-3.5 h-3.5 text-util-colors-teal-teal-700' />}
- <div className={cn('shrink-0 ml-0.5 text-xs font-medium truncate', (isEnv || isChatVar) && 'text-gray-900')} title={varName}>{varName}</div>
- {
- !node && !isEnv && !isChatVar && (
- <RiErrorWarningFill className='ml-0.5 w-3 h-3 text-[#D92D20]' />
- )
- }
- </div>
- </div>
- )
- if (!node && !isEnv && !isChatVar) {
- return (
- <Tooltip popupContent={t('workflow.errorMsg.invalidVariable')}>
- {Item}
- </Tooltip>
- )
- }
- return Item
- }
- export default memo(WorkflowVariableBlockComponent)
|