| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 | import { useState } from 'react'import type { FC } from 'react'import cn from 'classnames'import { ValidatingTip } from '../../key-validator/ValidateStatus'import type {  CredentialFormSchema,  CredentialFormSchemaNumberInput,  CredentialFormSchemaRadio,  CredentialFormSchemaSecretInput,  CredentialFormSchemaSelect,  CredentialFormSchemaTextInput,  FormValue,} from '../declarations'import { FormTypeEnum } from '../declarations'import { useLanguage } from '../hooks'import Input from './Input'import { SimpleSelect } from '@/app/components/base/select'import Tooltip from '@/app/components/base/tooltip-plus'import { HelpCircle } from '@/app/components/base/icons/src/vender/line/general'import Radio from '@/app/components/base/radio'type FormProps = {  className?: string  itemClassName?: string  fieldLabelClassName?: string  value: FormValue  onChange: (val: FormValue) => void  formSchemas: CredentialFormSchema[]  validating: boolean  validatedSuccess?: boolean  showOnVariableMap: Record<string, string[]>  isEditMode: boolean  readonly?: boolean  inputClassName?: string  isShowDefaultValue?: boolean  fieldMoreInfo?: (payload: CredentialFormSchema) => JSX.Element | null}const Form: FC<FormProps> = ({  className,  itemClassName,  fieldLabelClassName,  value,  onChange,  formSchemas,  validating,  validatedSuccess,  showOnVariableMap,  isEditMode,  readonly,  inputClassName,  isShowDefaultValue = false,  fieldMoreInfo,}) => {  const language = useLanguage()  const [changeKey, setChangeKey] = useState('')  const handleFormChange = (key: string, val: string | boolean) => {    if (isEditMode && (key === '__model_type' || key === '__model_name'))      return    setChangeKey(key)    const shouldClearVariable: Record<string, string | undefined> = {}    if (showOnVariableMap[key]?.length) {      showOnVariableMap[key].forEach((clearVariable) => {        shouldClearVariable[clearVariable] = undefined      })    }    onChange({ ...value, [key]: val, ...shouldClearVariable })  }  const renderField = (formSchema: CredentialFormSchema) => {    const tooltip = formSchema.tooltip    const tooltipContent = (tooltip && (      <span className='ml-1 pt-1.5'>        <Tooltip popupContent={          // w-[100px] caused problem          <div className=''>            {tooltip[language] || tooltip.en_US}          </div>        } >          <HelpCircle className='w-3 h-3  text-gray-500' />        </Tooltip>      </span>))    if (formSchema.type === FormTypeEnum.textInput || formSchema.type === FormTypeEnum.secretInput || formSchema.type === FormTypeEnum.textNumber) {      const {        variable,        label,        placeholder,        required,        show_on,      } = formSchema as (CredentialFormSchemaTextInput | CredentialFormSchemaSecretInput)      if (show_on.length && !show_on.every(showOnItem => value[showOnItem.variable] === showOnItem.value))        return null      const disabed = readonly || (isEditMode && (variable === '__model_type' || variable === '__model_name'))      return (        <div key={variable} className={cn(itemClassName, 'py-3')}>          <div className={cn(fieldLabelClassName, 'py-2 text-sm text-gray-900')}>            {label[language] || label.en_US}            {              required && (                <span className='ml-1 text-red-500'>*</span>              )            }            {tooltipContent}          </div>          <Input            className={cn(inputClassName, `${disabed && 'cursor-not-allowed opacity-60'}`)}            value={(isShowDefaultValue && ((value[variable] as string) === '' || value[variable] === undefined || value[variable] === null)) ? formSchema.default : value[variable]}            onChange={val => handleFormChange(variable, val)}            validated={validatedSuccess}            placeholder={placeholder?.[language] || placeholder?.en_US}            disabled={disabed}            type={formSchema.type === FormTypeEnum.textNumber ? 'number' : 'text'}            {...(formSchema.type === FormTypeEnum.textNumber ? { min: (formSchema as CredentialFormSchemaNumberInput).min, max: (formSchema as CredentialFormSchemaNumberInput).max } : {})}          />          {fieldMoreInfo?.(formSchema)}          {validating && changeKey === variable && <ValidatingTip />}        </div>      )    }    if (formSchema.type === FormTypeEnum.radio) {      const {        options,        variable,        label,        show_on,        required,      } = formSchema as CredentialFormSchemaRadio      if (show_on.length && !show_on.every(showOnItem => value[showOnItem.variable] === showOnItem.value))        return null      const disabed = isEditMode && (variable === '__model_type' || variable === '__model_name')      return (        <div key={variable} className={cn(itemClassName, 'py-3')}>          <div className={cn(fieldLabelClassName, 'py-2 text-sm text-gray-900')}>            {label[language] || label.en_US}            {              required && (                <span className='ml-1 text-red-500'>*</span>              )            }            {tooltipContent}          </div>          <div className={`grid grid-cols-${options?.length} gap-3`}>            {              options.filter((option) => {                if (option.show_on.length)                  return option.show_on.every(showOnItem => value[showOnItem.variable] === showOnItem.value)                return true              }).map(option => (                <div                  className={`                    flex items-center px-3 py-2 rounded-lg border border-gray-100 bg-gray-25 cursor-pointer                    ${value[variable] === option.value && 'bg-white border-[1.5px] border-primary-400 shadow-sm'}                    ${disabed && '!cursor-not-allowed opacity-60'}                  `}                  onClick={() => handleFormChange(variable, option.value)}                  key={`${variable}-${option.value}`}                >                  <div className={`                    flex justify-center items-center mr-2 w-4 h-4 border border-gray-300 rounded-full                    ${value[variable] === option.value && 'border-[5px] border-primary-600'}                  `} />                  <div className='text-sm text-gray-900'>{option.label[language] || option.label.en_US}</div>                </div>              ))            }          </div>          {fieldMoreInfo?.(formSchema)}          {validating && changeKey === variable && <ValidatingTip />}        </div>      )    }    if (formSchema.type === 'select') {      const {        options,        variable,        label,        show_on,        required,        placeholder,      } = formSchema as CredentialFormSchemaSelect      if (show_on.length && !show_on.every(showOnItem => value[showOnItem.variable] === showOnItem.value))        return null      return (        <div key={variable} className={cn(itemClassName, 'py-3')}>          <div className={cn(fieldLabelClassName, 'py-2 text-sm text-gray-900')}>            {label[language] || label.en_US}            {              required && (                <span className='ml-1 text-red-500'>*</span>              )            }            {tooltipContent}          </div>          <SimpleSelect            className={cn(inputClassName)}            disabled={readonly}            defaultValue={(isShowDefaultValue && ((value[variable] as string) === '' || value[variable] === undefined || value[variable] === null)) ? formSchema.default : value[variable]}            items={options.filter((option) => {              if (option.show_on.length)                return option.show_on.every(showOnItem => value[showOnItem.variable] === showOnItem.value)              return true            }).map(option => ({ value: option.value, name: option.label[language] || option.label.en_US }))}            onSelect={item => handleFormChange(variable, item.value as string)}            placeholder={placeholder?.[language] || placeholder?.en_US}          />          {fieldMoreInfo?.(formSchema)}          {validating && changeKey === variable && <ValidatingTip />}        </div>      )    }    if (formSchema.type === 'boolean') {      const {        variable,        label,        show_on,      } = formSchema as CredentialFormSchemaRadio      if (show_on.length && !show_on.every(showOnItem => value[showOnItem.variable] === showOnItem.value))        return null      return (        <div key={variable} className={cn(itemClassName, 'py-3')}>          <div className='flex items-center justify-between py-2 text-sm text-gray-900'>            <div className='flex items-center space-x-2'>              <span className={cn(fieldLabelClassName, 'py-2 text-sm text-gray-900')}>{label[language] || label.en_US}</span>              {tooltipContent}            </div>            <Radio.Group              className='flex items-center'              value={value[variable] ? 1 : 0}              onChange={val => handleFormChange(variable, val === 1)}            >              <Radio value={1} className='!mr-1'>True</Radio>              <Radio value={0}>False</Radio>            </Radio.Group>          </div>          {fieldMoreInfo?.(formSchema)}        </div>      )    }  }  return (    <div className={className}>      {        formSchemas.map(formSchema => renderField(formSchema))      }    </div>  )}export default Form
 |