mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-07 12:40:48 +08:00

Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
152 lines
7.7 KiB
TypeScript
152 lines
7.7 KiB
TypeScript
import React, { useEffect } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { v4 as uuid4 } from 'uuid'
|
|
import { RiCloseLine, RiQuestionLine } from '@remixicon/react'
|
|
import { useContext } from 'use-context-selector'
|
|
import Button from '@/app/components/base/button'
|
|
import TooltipPlus from '@/app/components/base/tooltip-plus'
|
|
import { ToastContext } from '@/app/components/base/toast'
|
|
import { useStore } from '@/app/components/workflow/store'
|
|
import type { EnvironmentVariable } from '@/app/components/workflow/types'
|
|
import cn from '@/utils/classnames'
|
|
|
|
export type ModalPropsType = {
|
|
env?: EnvironmentVariable
|
|
onClose: () => void
|
|
onSave: (env: EnvironmentVariable) => void
|
|
}
|
|
const VariableModal = ({
|
|
env,
|
|
onClose,
|
|
onSave,
|
|
}: ModalPropsType) => {
|
|
const { t } = useTranslation()
|
|
const { notify } = useContext(ToastContext)
|
|
const envList = useStore(s => s.environmentVariables)
|
|
const envSecrets = useStore(s => s.envSecrets)
|
|
const [type, setType] = React.useState<'string' | 'number' | 'secret'>('string')
|
|
const [name, setName] = React.useState('')
|
|
const [value, setValue] = React.useState<any>()
|
|
|
|
const handleNameChange = (v: string) => {
|
|
if (!v)
|
|
return setName('')
|
|
if (!/^[a-zA-Z0-9_]+$/.test(v))
|
|
return notify({ type: 'error', message: 'name is can only contain letters, numbers and underscores' })
|
|
if (/^[0-9]/.test(v))
|
|
return notify({ type: 'error', message: 'name can not start with a number' })
|
|
setName(v)
|
|
}
|
|
|
|
const handleSave = () => {
|
|
if (!name)
|
|
return notify({ type: 'error', message: 'name can not be empty' })
|
|
if (!value)
|
|
return notify({ type: 'error', message: 'value can not be empty' })
|
|
if (!env && envList.some(env => env.name === name))
|
|
return notify({ type: 'error', message: 'name is existed' })
|
|
onSave({
|
|
id: env ? env.id : uuid4(),
|
|
value_type: type,
|
|
name,
|
|
value: type === 'number' ? Number(value) : value,
|
|
})
|
|
onClose()
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (env) {
|
|
setType(env.value_type)
|
|
setName(env.name)
|
|
setValue(env.value_type === 'secret' ? envSecrets[env.id] : env.value)
|
|
}
|
|
}, [env, envSecrets])
|
|
|
|
return (
|
|
<div
|
|
className={cn('flex flex-col w-[360px] bg-components-panel-bg rounded-2xl h-full border-[0.5px] border-components-panel-border shadow-2xl')}
|
|
>
|
|
<div className='shrink-0 flex items-center justify-between mb-3 p-4 pb-0 text-text-primary system-xl-semibold'>
|
|
{!env ? t('workflow.env.modal.title') : t('workflow.env.modal.editTitle')}
|
|
<div className='flex items-center'>
|
|
<div
|
|
className='flex items-center justify-center w-6 h-6 cursor-pointer'
|
|
onClick={onClose}
|
|
>
|
|
<RiCloseLine className='w-4 h-4 text-text-tertiary' />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className='px-4 py-2'>
|
|
{/* type */}
|
|
<div className='mb-4'>
|
|
<div className='mb-1 h-6 flex items-center text-text-secondary system-sm-semibold'>{t('workflow.env.modal.type')}</div>
|
|
<div className='flex gap-2'>
|
|
<div className={cn(
|
|
'w-[106px] flex items-center justify-center p-2 radius-md bg-components-option-card-option-bg border border-components-option-card-option-border text-text-secondary system-sm-regular cursor-pointer hover:shadow-xs hover:bg-components-option-card-option-bg-hover hover:border-components-option-card-option-border-hover',
|
|
type === 'string' && 'text-text-primary system-sm-medium border-[1.5px] shadow-xs bg-components-option-card-option-selected-bg border-components-option-card-option-selected-border hover:border-components-option-card-option-selected-border',
|
|
)} onClick={() => setType('string')}>String</div>
|
|
<div className={cn(
|
|
'w-[106px] flex items-center justify-center p-2 radius-md bg-components-option-card-option-bg border border-components-option-card-option-border text-text-secondary system-sm-regular cursor-pointer hover:shadow-xs hover:bg-components-option-card-option-bg-hover hover:border-components-option-card-option-border-hover',
|
|
type === 'number' && 'text-text-primary font-medium border-[1.5px] shadow-xs bg-components-option-card-option-selected-bg border-components-option-card-option-selected-border hover:border-components-option-card-option-selected-border',
|
|
)} onClick={() => {
|
|
setType('number')
|
|
if (!(/^[0-9]$/).test(value))
|
|
setValue('')
|
|
}}>Number</div>
|
|
<div className={cn(
|
|
'w-[106px] flex items-center justify-center p-2 radius-md bg-components-option-card-option-bg border border-components-option-card-option-border text-text-secondary system-sm-regular cursor-pointer hover:shadow-xs hover:bg-components-option-card-option-bg-hover hover:border-components-option-card-option-border-hover',
|
|
type === 'secret' && 'text-text-primary font-medium border-[1.5px] shadow-xs bg-components-option-card-option-selected-bg border-components-option-card-option-selected-border hover:border-components-option-card-option-selected-border',
|
|
)} onClick={() => setType('secret')}>
|
|
<span>Secret</span>
|
|
<TooltipPlus popupContent={
|
|
<div className='w-[240px]'>
|
|
{t('workflow.env.modal.secretTip')}
|
|
</div>
|
|
}>
|
|
<RiQuestionLine className='ml-0.5 w-[14px] h-[14px] text-text-quaternary' />
|
|
</TooltipPlus>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/* name */}
|
|
<div className='mb-4'>
|
|
<div className='mb-1 h-6 flex items-center text-text-secondary system-sm-semibold'>{t('workflow.env.modal.name')}</div>
|
|
<div className='flex'>
|
|
<input
|
|
tabIndex={0}
|
|
className='block px-3 w-full h-8 bg-components-input-bg-normal system-sm-regular radius-md border border-transparent appearance-none outline-none caret-primary-600 hover:border-components-input-border-hover hover:bg-components-input-bg-hover focus:bg-components-input-bg-active focus:border-components-input-border-active focus:shadow-xs placeholder:system-sm-regular placeholder:text-components-input-text-placeholder'
|
|
placeholder={t('workflow.env.modal.namePlaceholder') || ''}
|
|
value={name}
|
|
onChange={e => handleNameChange(e.target.value)}
|
|
type='text'
|
|
/>
|
|
</div>
|
|
</div>
|
|
{/* value */}
|
|
<div className=''>
|
|
<div className='mb-1 h-6 flex items-center text-text-secondary system-sm-semibold'>{t('workflow.env.modal.value')}</div>
|
|
<div className='flex'>
|
|
<input
|
|
tabIndex={0}
|
|
className='block px-3 w-full h-8 bg-components-input-bg-normal system-sm-regular radius-md border border-transparent appearance-none outline-none caret-primary-600 hover:border-components-input-border-hover hover:bg-components-input-bg-hover focus:bg-components-input-bg-active focus:border-components-input-border-active focus:shadow-xs placeholder:system-sm-regular placeholder:text-components-input-text-placeholder'
|
|
placeholder={t('workflow.env.modal.valuePlaceholder') || ''}
|
|
value={value}
|
|
onChange={e => setValue(e.target.value)}
|
|
type={type !== 'number' ? 'text' : 'number'}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className='p-4 pt-2 flex flex-row-reverse rounded-b-2xl'>
|
|
<div className='flex gap-2'>
|
|
<Button onClick={onClose}>{t('common.operation.cancel')}</Button>
|
|
<Button variant='primary' onClick={handleSave}>{t('common.operation.save')}</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default VariableModal
|