mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Fix: Fixed the issue that the condition of deleting the classification operator cannot be connected anymore #3221 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
'use client';
|
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { useForm } from 'react-hook-form';
|
|
import { z } from 'zod';
|
|
|
|
import { FileUploader } from '@/components/file-uploader';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/components/ui/form';
|
|
import { FileMimeType, Platform } from '@/constants/common';
|
|
import { IModalProps } from '@/interfaces/common';
|
|
import { TagRenameId } from '@/pages/add-knowledge/constant';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
// const options = Object.values(Platform).map((x) => ({ label: x, value: x }));
|
|
|
|
export function UploadAgentForm({ hideModal, onOk }: IModalProps<any>) {
|
|
const { t } = useTranslation();
|
|
const FormSchema = z.object({
|
|
platform: z
|
|
.string()
|
|
.min(1, {
|
|
message: t('common.namePlaceholder'),
|
|
})
|
|
.trim(),
|
|
fileList: z.array(z.instanceof(File)),
|
|
});
|
|
|
|
const form = useForm<z.infer<typeof FormSchema>>({
|
|
resolver: zodResolver(FormSchema),
|
|
defaultValues: { platform: Platform.RAGFlow },
|
|
});
|
|
|
|
async function onSubmit(data: z.infer<typeof FormSchema>) {
|
|
console.log('🚀 ~ onSubmit ~ data:', data);
|
|
const ret = await onOk?.(data);
|
|
if (ret) {
|
|
hideModal?.();
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(onSubmit)}
|
|
className="space-y-6"
|
|
id={TagRenameId}
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="fileList"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('common.name')}</FormLabel>
|
|
<FormControl>
|
|
<FileUploader
|
|
value={field.value}
|
|
onValueChange={field.onChange}
|
|
maxFileCount={1}
|
|
maxSize={4 * 1024 * 1024}
|
|
accept={{ '*.json': [FileMimeType.Json] }}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
{/* <FormField
|
|
control={form.control}
|
|
name="platform"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('common.name')}</FormLabel>
|
|
<FormControl>
|
|
<RAGFlowSelect {...field} options={options} />
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/> */}
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|