|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- import React, { memo, useCallback } from 'react'
- import { useTranslation } from 'react-i18next'
- import { useEmbeddedChatbotContext } from '../context'
- import Input from '@/app/components/base/input'
- import Textarea from '@/app/components/base/textarea'
- import { PortalSelect } from '@/app/components/base/select'
- import { FileUploaderInAttachmentWrapper } from '@/app/components/base/file-uploader'
- import { InputVarType } from '@/app/components/workflow/types'
- import BoolInput from '@/app/components/workflow/nodes/_base/components/before-run-form/bool-input'
- import { CodeLanguage } from '@/app/components/workflow/nodes/code/types'
- import CodeEditor from '@/app/components/workflow/nodes/_base/components/editor/code-editor'
-
- type Props = {
- showTip?: boolean
- }
-
- const InputsFormContent = ({ showTip }: Props) => {
- const { t } = useTranslation()
- const {
- appParams,
- inputsForms,
- currentConversationId,
- currentConversationInputs,
- setCurrentConversationInputs,
- newConversationInputs,
- newConversationInputsRef,
- handleNewConversationInputsChange,
- } = useEmbeddedChatbotContext()
- const inputsFormValue = currentConversationId ? currentConversationInputs : newConversationInputs
-
- const handleFormChange = useCallback((variable: string, value: any) => {
- setCurrentConversationInputs({
- ...currentConversationInputs,
- [variable]: value,
- })
- handleNewConversationInputsChange({
- ...newConversationInputsRef.current,
- [variable]: value,
- })
- }, [newConversationInputsRef, handleNewConversationInputsChange, currentConversationInputs, setCurrentConversationInputs])
-
- const visibleInputsForms = inputsForms.filter(form => form.hide !== true)
-
- return (
- <div className='space-y-4'>
- {visibleInputsForms.map(form => (
- <div key={form.variable} className='space-y-1'>
- {form.type !== InputVarType.checkbox && (
- <div className='flex h-6 items-center gap-1'>
- <div className='system-md-semibold text-text-secondary'>{form.label}</div>
- {!form.required && (
- <div className='system-xs-regular text-text-tertiary'>{t('appDebug.variableTable.optional')}</div>
- )}
- </div>
- )}
- {form.type === InputVarType.textInput && (
- <Input
- value={inputsFormValue?.[form.variable] || ''}
- onChange={e => handleFormChange(form.variable, e.target.value)}
- placeholder={form.label}
- />
- )}
- {form.type === InputVarType.number && (
- <Input
- type='number'
- value={inputsFormValue?.[form.variable] || ''}
- onChange={e => handleFormChange(form.variable, e.target.value)}
- placeholder={form.label}
- />
- )}
- {form.type === InputVarType.paragraph && (
- <Textarea
- value={inputsFormValue?.[form.variable] || ''}
- onChange={e => handleFormChange(form.variable, e.target.value)}
- placeholder={form.label}
- />
- )}
- {form.type === InputVarType.checkbox && (
- <BoolInput
- name={form.label}
- value={inputsFormValue?.[form.variable]}
- required={form.required}
- onChange={value => handleFormChange(form.variable, value)}
- />
- )}
- {form.type === InputVarType.select && (
- <PortalSelect
- popupClassName='w-[200px]'
- value={inputsFormValue?.[form.variable] ?? form.default ?? ''}
- items={form.options.map((option: string) => ({ value: option, name: option }))}
- onSelect={item => handleFormChange(form.variable, item.value as string)}
- placeholder={form.label}
- />
- )}
- {form.type === InputVarType.singleFile && (
- <FileUploaderInAttachmentWrapper
- value={inputsFormValue?.[form.variable] ? [inputsFormValue?.[form.variable]] : []}
- onChange={files => handleFormChange(form.variable, files[0])}
- fileConfig={{
- allowed_file_types: form.allowed_file_types,
- allowed_file_extensions: form.allowed_file_extensions,
- allowed_file_upload_methods: form.allowed_file_upload_methods,
- number_limits: 1,
- fileUploadConfig: (appParams as any).system_parameters,
- }}
- />
- )}
- {form.type === InputVarType.multiFiles && (
- <FileUploaderInAttachmentWrapper
- value={inputsFormValue?.[form.variable] || []}
- onChange={files => handleFormChange(form.variable, files)}
- fileConfig={{
- allowed_file_types: form.allowed_file_types,
- allowed_file_extensions: form.allowed_file_extensions,
- allowed_file_upload_methods: form.allowed_file_upload_methods,
- number_limits: form.max_length,
- fileUploadConfig: (appParams as any).system_parameters,
- }}
- />
- )}
- {form.type === InputVarType.jsonObject && (
- <CodeEditor
- language={CodeLanguage.json}
- value={inputsFormValue?.[form.variable] || ''}
- onChange={v => handleFormChange(form.variable, v)}
- noWrapper
- className='bg h-[80px] overflow-y-auto rounded-[10px] bg-components-input-bg-normal p-1'
- placeholder={
- <div className='whitespace-pre'>{form.json_schema}</div>
- }
- />
- )}
- </div>
- ))}
- {showTip && (
- <div className='system-xs-regular text-text-tertiary'>{t('share.chat.chatFormTip')}</div>
- )}
- </div>
- )
- }
-
- export default memo(InputsFormContent)
|