|
|
|
@ -4,7 +4,7 @@ import { useNodes } from 'reactflow'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import NodeVariableItem from '../variable-assigner/components/node-variable-item'
|
|
|
|
import NodeVariableItem from '../variable-assigner/components/node-variable-item'
|
|
|
|
import type { AssignerNodeType } from './types'
|
|
|
|
import type { AssignerNodeType } from './types'
|
|
|
|
import { isConversationVar, isENV, isSystemVar } from '@/app/components/workflow/nodes/_base/components/variable/utils'
|
|
|
|
import { isSystemVar } from '@/app/components/workflow/nodes/_base/components/variable/utils'
|
|
|
|
import { BlockEnum, type Node, type NodeProps } from '@/app/components/workflow/types'
|
|
|
|
import { BlockEnum, type Node, type NodeProps } from '@/app/components/workflow/types'
|
|
|
|
|
|
|
|
|
|
|
|
const i18nPrefix = 'workflow.nodes.assigner'
|
|
|
|
const i18nPrefix = 'workflow.nodes.assigner'
|
|
|
|
@ -38,18 +38,13 @@ const NodeComponent: FC<NodeProps<AssignerNodeType>> = ({
|
|
|
|
if (!variable || variable.length === 0)
|
|
|
|
if (!variable || variable.length === 0)
|
|
|
|
return null
|
|
|
|
return null
|
|
|
|
const isSystem = isSystemVar(variable)
|
|
|
|
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 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 (
|
|
|
|
return (
|
|
|
|
<NodeVariableItem
|
|
|
|
<NodeVariableItem
|
|
|
|
key={index}
|
|
|
|
key={index}
|
|
|
|
node={node as Node}
|
|
|
|
node={node as Node}
|
|
|
|
isEnv={isEnv}
|
|
|
|
variable={variable}
|
|
|
|
isChatVar={isChatVar}
|
|
|
|
|
|
|
|
writeMode={value.operation}
|
|
|
|
writeMode={value.operation}
|
|
|
|
varName={varName}
|
|
|
|
|
|
|
|
className='bg-workflow-block-parma-bg'
|
|
|
|
className='bg-workflow-block-parma-bg'
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
)
|
|
|
|
@ -63,19 +58,13 @@ const NodeComponent: FC<NodeProps<AssignerNodeType>> = ({
|
|
|
|
if (!variable || variable.length === 0)
|
|
|
|
if (!variable || variable.length === 0)
|
|
|
|
return null
|
|
|
|
return null
|
|
|
|
const isSystem = isSystemVar(variable)
|
|
|
|
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 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 (
|
|
|
|
return (
|
|
|
|
<div className='relative flex flex-col items-start gap-0.5 self-stretch px-3 py-1'>
|
|
|
|
<div className='relative flex flex-col items-start gap-0.5 self-stretch px-3 py-1'>
|
|
|
|
<NodeVariableItem
|
|
|
|
<NodeVariableItem
|
|
|
|
node={node as Node}
|
|
|
|
node={node as Node}
|
|
|
|
isEnv={isEnv}
|
|
|
|
variable={variable}
|
|
|
|
isChatVar={isChatVar}
|
|
|
|
|
|
|
|
varName={varName}
|
|
|
|
|
|
|
|
writeMode={writeMode}
|
|
|
|
writeMode={writeMode}
|
|
|
|
className='bg-workflow-block-parma-bg'
|
|
|
|
className='bg-workflow-block-parma-bg'
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|