| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  | import React, { useEffect } from 'react' | 
					
						
							|  |  |  | import { useTranslation } from 'react-i18next' | 
					
						
							|  |  |  | import { v4 as uuid4 } from 'uuid' | 
					
						
							| 
									
										
										
										
											2024-08-26 13:00:02 +08:00
										 |  |  | import { RiCloseLine } from '@remixicon/react' | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  | import { useContext } from 'use-context-selector' | 
					
						
							|  |  |  | import Button from '@/app/components/base/button' | 
					
						
							| 
									
										
										
										
											2024-10-21 10:32:37 +08:00
										 |  |  | import Input from '@/app/components/base/input' | 
					
						
							| 
									
										
										
										
											2024-08-26 13:00:02 +08:00
										 |  |  | import Tooltip from '@/app/components/base/tooltip' | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  | 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' | 
					
						
							| 
									
										
										
										
											2024-08-23 15:08:34 +08:00
										 |  |  | import { checkKeys } from '@/utils/var' | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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>() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-23 15:08:34 +08:00
										 |  |  |   const checkVariableName = (value: string) => { | 
					
						
							|  |  |  |     const { isValid, errorMessageKey } = checkKeys([value], false) | 
					
						
							|  |  |  |     if (!isValid) { | 
					
						
							|  |  |  |       notify({ | 
					
						
							|  |  |  |         type: 'error', | 
					
						
							|  |  |  |         message: t(`appDebug.varKeyError.${errorMessageKey}`, { key: t('workflow.env.modal.name') }), | 
					
						
							|  |  |  |       }) | 
					
						
							|  |  |  |       return false | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const handleSave = () => { | 
					
						
							| 
									
										
										
										
											2024-08-23 15:08:34 +08:00
										 |  |  |     if (!checkVariableName(name)) | 
					
						
							|  |  |  |       return | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |     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'> | 
					
						
							| 
									
										
										
										
											2024-08-13 14:44:10 +08:00
										 |  |  |           <div className='mb-1 h-6 flex items-center text-text-secondary system-sm-semibold'>{t('workflow.env.modal.type')}</div> | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |           <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> | 
					
						
							| 
									
										
										
										
											2024-08-26 13:00:02 +08:00
										 |  |  |               <Tooltip | 
					
						
							|  |  |  |                 popupContent={ | 
					
						
							|  |  |  |                   <div className='w-[240px]'> | 
					
						
							|  |  |  |                     {t('workflow.env.modal.secretTip')} | 
					
						
							|  |  |  |                   </div> | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 triggerClassName='ml-0.5 w-3.5 h-3.5' | 
					
						
							|  |  |  |               /> | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |             </div> | 
					
						
							|  |  |  |           </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |         {/* name */} | 
					
						
							|  |  |  |         <div className='mb-4'> | 
					
						
							| 
									
										
										
										
											2024-08-13 14:44:10 +08:00
										 |  |  |           <div className='mb-1 h-6 flex items-center text-text-secondary system-sm-semibold'>{t('workflow.env.modal.name')}</div> | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |           <div className='flex'> | 
					
						
							| 
									
										
										
										
											2024-10-21 10:32:37 +08:00
										 |  |  |             <Input | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |               placeholder={t('workflow.env.modal.namePlaceholder') || ''} | 
					
						
							|  |  |  |               value={name} | 
					
						
							| 
									
										
										
										
											2024-08-23 15:08:34 +08:00
										 |  |  |               onChange={e => setName(e.target.value || '')} | 
					
						
							|  |  |  |               onBlur={e => checkVariableName(e.target.value)} | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |               type='text' | 
					
						
							|  |  |  |             /> | 
					
						
							|  |  |  |           </div> | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  |         {/* value */} | 
					
						
							|  |  |  |         <div className=''> | 
					
						
							| 
									
										
										
										
											2024-08-13 14:44:10 +08:00
										 |  |  |           <div className='mb-1 h-6 flex items-center text-text-secondary system-sm-semibold'>{t('workflow.env.modal.value')}</div> | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |           <div className='flex'> | 
					
						
							| 
									
										
										
										
											2024-10-21 10:32:37 +08:00
										 |  |  |             <Input | 
					
						
							| 
									
										
										
										
											2024-07-22 15:29:39 +08:00
										 |  |  |               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 |