mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-29 17:45:12 +08:00

Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
88 lines
2.2 KiB
TypeScript
88 lines
2.2 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import Indicator from '../../indicator'
|
|
import type { Status } from './declarations'
|
|
|
|
type OperateProps = {
|
|
isOpen: boolean
|
|
status: Status
|
|
disabled?: boolean
|
|
onCancel: () => void
|
|
onSave: () => void
|
|
onAdd: () => void
|
|
onEdit: () => void
|
|
}
|
|
|
|
const Operate = ({
|
|
isOpen,
|
|
status,
|
|
disabled,
|
|
onCancel,
|
|
onSave,
|
|
onAdd,
|
|
onEdit,
|
|
}: OperateProps) => {
|
|
const { t } = useTranslation()
|
|
|
|
if (isOpen) {
|
|
return (
|
|
<div className='flex items-center'>
|
|
<div className='
|
|
mr-[5px] flex
|
|
h-7 cursor-pointer items-center rounded-md px-3
|
|
text-xs font-medium text-gray-700
|
|
' onClick={onCancel} >
|
|
{t('common.operation.cancel')}
|
|
</div>
|
|
<div className='
|
|
flex h-7
|
|
cursor-pointer items-center rounded-md bg-primary-700 px-3
|
|
text-xs font-medium text-white
|
|
' onClick={onSave}>
|
|
{t('common.operation.save')}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (status === 'add') {
|
|
return (
|
|
<div className={
|
|
`flex h-[28px] cursor-pointer items-center rounded-md border border-gray-200
|
|
bg-white px-3 text-xs font-medium text-gray-700 ${disabled && 'cursor-default opacity-50'}}`
|
|
} onClick={() => !disabled && onAdd()}>
|
|
{t('common.provider.addKey')}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (status === 'fail' || status === 'success') {
|
|
return (
|
|
<div className='flex items-center'>
|
|
{
|
|
status === 'fail' && (
|
|
<div className='mr-4 flex items-center'>
|
|
<div className='text-xs text-[#D92D20]'>{t('common.provider.invalidApiKey')}</div>
|
|
<Indicator color='red' className='ml-2' />
|
|
</div>
|
|
)
|
|
}
|
|
{
|
|
status === 'success' && (
|
|
<Indicator color='green' className='mr-4' />
|
|
)
|
|
}
|
|
<div className={
|
|
`flex h-[28px] cursor-pointer items-center rounded-md border border-gray-200
|
|
bg-white px-3 text-xs font-medium text-gray-700 ${disabled && 'cursor-default opacity-50'}}`
|
|
} onClick={() => !disabled && onEdit()}>
|
|
{t('common.provider.editKey')}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return null
|
|
}
|
|
|
|
export default Operate
|