Files
dify/web/app/components/workflow/nodes/start/components/var-item.tsx
2024-02-23 14:25:08 +08:00

82 lines
2.9 KiB
TypeScript

'use client'
import type { FC } from 'react'
import React, { useCallback, useRef } from 'react'
import { useBoolean, useHover } from 'ahooks'
import { useTranslation } from 'react-i18next'
import InputVarTypeIcon from '../../_base/components/input-var-type-icon'
import type { InputVar } from '@/app/components/workflow/types'
import { Variable02 } from '@/app/components/base/icons/src/vender/solid/development'
import { Edit03 } from '@/app/components/base/icons/src/vender/solid/general'
import { Trash03 } from '@/app/components/base/icons/src/vender/line/general'
import ConfigVarModal from '@/app/components/app/configuration/config-var/config-modal'
type Props = {
readonly: boolean
payload: InputVar
onChange: (item: InputVar) => void
onRemove: () => void
}
const VarItem: FC<Props> = ({
readonly,
payload,
onChange,
onRemove,
}) => {
const { t } = useTranslation()
const ref = useRef(null)
const isHovering = useHover(ref)
const [isShowEditVarModal, {
setTrue: showEditVarModal,
setFalse: hideEditVarModal,
}] = useBoolean(false)
const handlePayloadChange = useCallback((payload: InputVar) => {
onChange(payload)
hideEditVarModal()
}, [onChange, hideEditVarModal])
return (
<div ref={ref} className='flex items-center h-8 justify-between px-2.5 bg-white rounded-lg border border-gray-200 shadow-xs cursor-pointer hover:shadow-md'>
<div className='flex items-center space-x-1 grow w-0'>
<Variable02 className='w-3.5 h-3.5 text-primary-500' />
<div className='shrink-0 truncate text-[13px] font-medium text-gray-700'>{payload.variable}</div>
<div className='shrink-0 text-xs font-medium text-gray-400'>·</div>
<div className='grow w-0 truncate text-[13px] font-medium text-gray-500'>{payload.label}</div>
</div>
<div className='shrink-0 ml-2 flex items-center'>
{!isHovering
? (
<>
{payload.required && (
<div className='mr-2 text-xs font-normal text-gray-500'>{t('workflow.nodes.start.required')}</div>
)}
<InputVarTypeIcon type={payload.type} className='w-3.5 h-3.5 text-gray-500' />
</>
)
: (!readonly && (
<>
<div onClick={showEditVarModal} className='mr-1 p-1 rounded-md cursor-pointer hover:bg-black/5'>
<Edit03 className='w-4 h-4 text-gray-500' />
</div>
<div onClick={onRemove} className='p-1 rounded-md cursor-pointer hover:bg-black/5'>
<Trash03 className='w-4 h-4 text-gray-500' />
</div>
</>
))}
</div>
{
isShowEditVarModal && (
<ConfigVarModal
isShow
payload={payload}
onClose={hideEditVarModal}
onConfirm={handlePayloadChange}
/>
)
}
</div>
)
}
export default React.memo(VarItem)