mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-30 18:33:30 +00:00 
			
		
		
		
	 7709d9df20
			
		
	
	
		7709d9df20
		
			
		
	
	
	
	
		
			
			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>
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import React, { useState } from 'react'
 | |
| import type { FC } from 'react'
 | |
| import { useTranslation } from 'react-i18next'
 | |
| import { RiBookOpenLine } from '@remixicon/react'
 | |
| import type { CreateExternalAPIReq, FormSchema } from '../declarations'
 | |
| import Input from '@/app/components/base/input'
 | |
| import cn from '@/utils/classnames'
 | |
| 
 | |
| type FormProps = {
 | |
|   className?: string
 | |
|   itemClassName?: string
 | |
|   fieldLabelClassName?: string
 | |
|   value: CreateExternalAPIReq
 | |
|   onChange: (val: CreateExternalAPIReq) => void
 | |
|   formSchemas: FormSchema[]
 | |
|   inputClassName?: string
 | |
| }
 | |
| 
 | |
| const Form: FC<FormProps> = React.memo(({
 | |
|   className,
 | |
|   itemClassName,
 | |
|   fieldLabelClassName,
 | |
|   value,
 | |
|   onChange,
 | |
|   formSchemas,
 | |
|   inputClassName,
 | |
| }) => {
 | |
|   const { t, i18n } = useTranslation()
 | |
|   const [changeKey, setChangeKey] = useState('')
 | |
| 
 | |
|   const handleFormChange = (key: string, val: string) => {
 | |
|     setChangeKey(key)
 | |
|     if (key === 'name') {
 | |
|       onChange({ ...value, [key]: val })
 | |
|     }
 | |
|     else {
 | |
|       onChange({
 | |
|         ...value,
 | |
|         settings: {
 | |
|           ...value.settings,
 | |
|           [key]: val,
 | |
|         },
 | |
|       })
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   const renderField = (formSchema: FormSchema) => {
 | |
|     const { variable, type, label, required } = formSchema
 | |
|     const fieldValue = variable === 'name' ? value[variable] : (value.settings[variable as keyof typeof value.settings] || '')
 | |
| 
 | |
|     return (
 | |
|       <div key={variable} className={cn(itemClassName, 'flex flex-col items-start gap-1 self-stretch')}>
 | |
|         <div className="flex w-full items-center justify-between">
 | |
|           <label className={cn(fieldLabelClassName, 'system-sm-semibold text-text-secondary')} htmlFor={variable}>
 | |
|             {label[i18n.language] || label.en_US}
 | |
|             {required && <span className='ml-1 text-red-500'>*</span>}
 | |
|           </label>
 | |
|           {variable === 'endpoint' && (
 | |
|             <a
 | |
|               href={'https://docs.dify.ai/guides/knowledge-base/external-knowledge-api-documentation' || '/'}
 | |
|               target='_blank'
 | |
|               rel='noopener noreferrer'
 | |
|               className='body-xs-regular flex items-center text-text-accent'
 | |
|             >
 | |
|               <RiBookOpenLine className='mr-1 h-3 w-3 text-text-accent' />
 | |
|               {t('dataset.externalAPIPanelDocumentation')}
 | |
|             </a>
 | |
|           )}
 | |
|         </div>
 | |
|         <Input
 | |
|           type={type === 'secret' ? 'password' : 'text'}
 | |
|           id={variable}
 | |
|           name={variable}
 | |
|           value={fieldValue}
 | |
|           onChange={val => handleFormChange(variable, val.target.value)}
 | |
|           required={required}
 | |
|           className={cn(inputClassName)}
 | |
|         />
 | |
|       </div>
 | |
|     )
 | |
|   }
 | |
| 
 | |
|   return (
 | |
|     <form className={cn('flex flex-col items-start justify-center gap-4 self-stretch', className)}>
 | |
|       {formSchemas.map(formSchema => renderField(formSchema))}
 | |
|     </form>
 | |
|   )
 | |
| })
 | |
| 
 | |
| Form.displayName = 'Form'
 | |
| 
 | |
| export default Form
 |