'use client'
|
import type { FC } from 'react'
|
import React from 'react'
|
import cn from 'classnames'
|
import { useWorkflow } from '../../../hooks'
|
import { BlockEnum } from '../../../types'
|
import { VarBlockIcon } from '../../../block-icon'
|
import { getNodeInfoById, isConversationVar, isENV, isSystemVar } from './variable/utils'
|
import { Line3 } from '@/app/components/base/icons/src/public/common'
|
import { Variable02 } from '@/app/components/base/icons/src/vender/solid/development'
|
import { BubbleX, Env } from '@/app/components/base/icons/src/vender/line/others'
|
type Props = {
|
nodeId: string
|
value: string
|
className?: string
|
}
|
|
const VAR_PLACEHOLDER = '@#!@#!'
|
|
const ReadonlyInputWithSelectVar: FC<Props> = ({
|
nodeId,
|
value,
|
className,
|
}) => {
|
const { getBeforeNodesInSameBranchIncludeParent } = useWorkflow()
|
const availableNodes = getBeforeNodesInSameBranchIncludeParent(nodeId)
|
const startNode = availableNodes.find((node: any) => {
|
return node.data.type === BlockEnum.Start
|
})
|
|
const res = (() => {
|
const vars: string[] = []
|
const strWithVarPlaceholder = value.replaceAll(/{{#([^#]*)#}}/g, (_match, p1) => {
|
vars.push(p1)
|
return VAR_PLACEHOLDER
|
})
|
|
const html: JSX.Element[] = strWithVarPlaceholder.split(VAR_PLACEHOLDER).map((str, index) => {
|
if (!vars[index])
|
return <span className='relative top-[-3px] leading-[16px]' key={index}>{str}</span>
|
|
const value = vars[index].split('.')
|
const isSystem = isSystemVar(value)
|
const isEnv = isENV(value)
|
const isChatVar = isConversationVar(value)
|
const node = (isSystem ? startNode : getNodeInfoById(availableNodes, value[0]))?.data
|
const varName = `${isSystem ? 'sys.' : ''}${value[value.length - 1]}`
|
|
return (<span key={index}>
|
<span className='relative top-[-3px] leading-[16px]'>{str}</span>
|
<div className=' inline-flex h-[16px] items-center px-1.5 rounded-[5px] bg-white'>
|
{!isEnv && !isChatVar && (
|
<div className='flex items-center'>
|
<div className='p-[1px]'>
|
<VarBlockIcon
|
className='!text-gray-900'
|
type={node?.type || BlockEnum.Start}
|
/>
|
</div>
|
<div className='max-w-[60px] mx-0.5 text-xs font-medium text-gray-700 truncate' title={node?.title}>{node?.title}</div>
|
<Line3 className='mr-0.5'></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('max-w-[50px] ml-0.5 text-xs font-medium truncate', (isEnv || isChatVar) && 'text-gray-900')} title={varName}>{varName}</div>
|
</div>
|
</div>
|
</span>)
|
})
|
return html
|
})()
|
|
return (
|
<div className={cn('break-all text-xs', className)}>
|
{res}
|
</div>
|
)
|
}
|
export default React.memo(ReadonlyInputWithSelectVar)
|