mirror of
https://github.com/langgenius/dify.git
synced 2025-08-28 19:16:21 +00:00
251 lines
8.3 KiB
TypeScript
251 lines
8.3 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { useCallback, useEffect } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import cn from 'classnames'
|
|
import {
|
|
RiDeleteBinLine,
|
|
} from '@remixicon/react'
|
|
import VarReferencePicker from '../../_base/components/variable/var-reference-picker'
|
|
import { isComparisonOperatorNeedTranslate } from '../utils'
|
|
import { VarType } from '../../../types'
|
|
import type { Condition } from '@/app/components/workflow/nodes/if-else/types'
|
|
import { ComparisonOperator, LogicalOperator } from '@/app/components/workflow/nodes/if-else/types'
|
|
import type { ValueSelector, Var } from '@/app/components/workflow/types'
|
|
import { RefreshCw05 } from '@/app/components/base/icons/src/vender/line/arrows'
|
|
import Selector from '@/app/components/workflow/nodes/_base/components/selector'
|
|
import Toast from '@/app/components/base/toast'
|
|
|
|
const i18nPrefix = 'workflow.nodes.ifElse'
|
|
|
|
const Line = (
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="163" height="2" viewBox="0 0 163 2" fill="none">
|
|
<path d="M0 1H162.5" stroke="url(#paint0_linear_641_36452)" />
|
|
<defs>
|
|
<linearGradient id="paint0_linear_641_36452" x1="162.5" y1="9.99584" x2="6.6086e-06" y2="9.94317" gradientUnits="userSpaceOnUse">
|
|
<stop stopColor="#F3F4F6" />
|
|
<stop offset="1" stopColor="#F3F4F6" stopOpacity="0" />
|
|
</linearGradient>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
|
|
const getOperators = (type?: VarType) => {
|
|
switch (type) {
|
|
case VarType.string:
|
|
return [
|
|
ComparisonOperator.contains,
|
|
ComparisonOperator.notContains,
|
|
ComparisonOperator.startWith,
|
|
ComparisonOperator.endWith,
|
|
ComparisonOperator.is,
|
|
ComparisonOperator.isNot,
|
|
ComparisonOperator.empty,
|
|
ComparisonOperator.notEmpty,
|
|
]
|
|
case VarType.number:
|
|
return [
|
|
ComparisonOperator.equal,
|
|
ComparisonOperator.notEqual,
|
|
ComparisonOperator.largerThan,
|
|
ComparisonOperator.lessThan,
|
|
ComparisonOperator.largerThanOrEqual,
|
|
ComparisonOperator.lessThanOrEqual,
|
|
ComparisonOperator.is,
|
|
ComparisonOperator.isNot,
|
|
ComparisonOperator.empty,
|
|
ComparisonOperator.notEmpty,
|
|
]
|
|
case VarType.arrayString:
|
|
case VarType.arrayNumber:
|
|
return [
|
|
ComparisonOperator.contains,
|
|
ComparisonOperator.notContains,
|
|
ComparisonOperator.empty,
|
|
ComparisonOperator.notEmpty,
|
|
]
|
|
case VarType.array:
|
|
case VarType.arrayObject:
|
|
return [
|
|
ComparisonOperator.empty,
|
|
ComparisonOperator.notEmpty,
|
|
]
|
|
default:
|
|
return [
|
|
ComparisonOperator.is,
|
|
ComparisonOperator.isNot,
|
|
ComparisonOperator.empty,
|
|
ComparisonOperator.notEmpty,
|
|
]
|
|
}
|
|
}
|
|
|
|
type ItemProps = {
|
|
readonly: boolean
|
|
nodeId: string
|
|
payload: Condition
|
|
varType?: VarType
|
|
onChange: (newItem: Condition) => void
|
|
canRemove: boolean
|
|
onRemove?: () => void
|
|
isShowLogicalOperator?: boolean
|
|
logicalOperator: LogicalOperator
|
|
onLogicalOperatorToggle: () => void
|
|
filterVar: (varPayload: Var) => boolean
|
|
}
|
|
|
|
const Item: FC<ItemProps> = ({
|
|
readonly,
|
|
nodeId,
|
|
payload,
|
|
varType = VarType.string,
|
|
onChange,
|
|
canRemove,
|
|
onRemove = () => { },
|
|
isShowLogicalOperator,
|
|
logicalOperator,
|
|
onLogicalOperatorToggle,
|
|
filterVar,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const isValueReadOnly = payload.comparison_operator ? [ComparisonOperator.empty, ComparisonOperator.notEmpty, ComparisonOperator.isNull, ComparisonOperator.isNotNull].includes(payload.comparison_operator) : false
|
|
|
|
const handleVarReferenceChange = useCallback((value: ValueSelector | string) => {
|
|
onChange({
|
|
...payload,
|
|
variable_selector: value as ValueSelector,
|
|
})
|
|
}, [onChange, payload])
|
|
|
|
// change to default operator if the variable type is changed
|
|
useEffect(() => {
|
|
if (varType && payload.comparison_operator) {
|
|
if (!getOperators(varType).includes(payload.comparison_operator)) {
|
|
onChange({
|
|
...payload,
|
|
comparison_operator: getOperators(varType)[0],
|
|
})
|
|
}
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [varType, payload])
|
|
|
|
const handleValueChange = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
|
|
onChange({
|
|
...payload,
|
|
value: e.target.value,
|
|
})
|
|
}, [onChange, payload])
|
|
|
|
const handleComparisonOperatorChange = useCallback((v: ComparisonOperator) => {
|
|
onChange({
|
|
...payload,
|
|
comparison_operator: v,
|
|
})
|
|
}, [onChange, payload])
|
|
|
|
return (
|
|
<div className='space-y-2'>
|
|
{isShowLogicalOperator && (
|
|
<div className='flex items-center justify-center select-none'>
|
|
<div className='flex items-center '>
|
|
{Line}
|
|
<div
|
|
className='shrink-0 mx-1 flex items-center h-[22px] pl-2 pr-1.5 border border-gray-200 rounded-lg bg-white shadow-xs space-x-0.5 text-primary-600 cursor-pointer'
|
|
onClick={onLogicalOperatorToggle}
|
|
>
|
|
<div className='text-xs font-semibold uppercase'>{t(`${i18nPrefix}.${logicalOperator === LogicalOperator.and ? 'and' : 'or'}`)}</div>
|
|
<RefreshCw05 className='w-3 h-3' />
|
|
</div>
|
|
<div className=' rotate-180'>
|
|
{Line}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
<div className='flex items-center space-x-1'>
|
|
<VarReferencePicker
|
|
nodeId={nodeId}
|
|
readonly={readonly}
|
|
isShowNodeName
|
|
className='min-w-[162px] flex-grow'
|
|
value={payload.variable_selector}
|
|
onChange={handleVarReferenceChange}
|
|
filterVar={filterVar}
|
|
/>
|
|
|
|
<Selector
|
|
popupClassName='top-[34px]'
|
|
itemClassName='capitalize'
|
|
trigger={
|
|
<div
|
|
onClick={(e) => {
|
|
if (readonly) {
|
|
e.stopPropagation()
|
|
return
|
|
}
|
|
if (!payload.variable_selector || payload.variable_selector.length === 0) {
|
|
e.stopPropagation()
|
|
Toast.notify({
|
|
message: t(`${i18nPrefix}.notSetVariable`),
|
|
type: 'error',
|
|
})
|
|
}
|
|
}}
|
|
className={cn(!readonly && 'cursor-pointer', 'shrink-0 w-[100px] whitespace-nowrap flex items-center h-8 justify-between px-2.5 rounded-lg bg-gray-100 capitalize')}
|
|
>
|
|
{
|
|
!payload.comparison_operator
|
|
? <div className='text-[13px] font-normal text-gray-400'>{t(`${i18nPrefix}.operator`)}</div>
|
|
: <div className='text-[13px] font-normal text-gray-900'>{isComparisonOperatorNeedTranslate(payload.comparison_operator) ? t(`${i18nPrefix}.comparisonOperator.${payload.comparison_operator}`) : payload.comparison_operator}</div>
|
|
}
|
|
|
|
</div>
|
|
}
|
|
readonly={readonly}
|
|
value={payload.comparison_operator || ''}
|
|
options={getOperators(varType).map((o) => {
|
|
return {
|
|
label: isComparisonOperatorNeedTranslate(o) ? t(`${i18nPrefix}.comparisonOperator.${o}`) : o,
|
|
value: o,
|
|
}
|
|
})}
|
|
onChange={handleComparisonOperatorChange}
|
|
/>
|
|
|
|
<input
|
|
readOnly={readonly || isValueReadOnly || !varType}
|
|
onClick={() => {
|
|
if (readonly)
|
|
return
|
|
|
|
if (!varType) {
|
|
Toast.notify({
|
|
message: t(`${i18nPrefix}.notSetVariable`),
|
|
type: 'error',
|
|
})
|
|
}
|
|
}}
|
|
value={!isValueReadOnly ? payload.value : ''}
|
|
onChange={handleValueChange}
|
|
placeholder={(!readonly && !isValueReadOnly) ? t(`${i18nPrefix}.enterValue`)! : ''}
|
|
className='min-w-[80px] flex-grow h-8 leading-8 px-2.5 rounded-lg border-0 bg-gray-100 text-gray-900 text-[13px] placeholder:text-gray-400 focus:outline-none focus:ring-1 focus:ring-inset focus:ring-gray-200'
|
|
type='text'
|
|
/>
|
|
{!readonly && (
|
|
<div
|
|
className={cn(canRemove ? 'text-gray-500 bg-gray-100 hover:bg-gray-200 cursor-pointer' : 'bg-gray-25 text-gray-300', 'p-2 rounded-lg ')}
|
|
onClick={canRemove ? onRemove : () => { }}
|
|
>
|
|
<RiDeleteBinLine className='w-4 h-4 ' />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div >
|
|
|
|
)
|
|
}
|
|
export default React.memo(Item)
|