import React, { useState, useCallback } from 'react'; import { Box, Flex, Button, Textarea, IconButton } from '@chakra-ui/react'; import { useForm } from 'react-hook-form'; import { postKbDataFromList, putKbDataById, delOneKbDataByDataId } from '@/api/plugins/kb'; import { useToast } from '@/hooks/useToast'; import { TrainingModeEnum } from '@/constants/plugin'; import { getErrText } from '@/utils/tools'; import { vectorModelList } from '@/store/static'; import MyIcon from '@/components/Icon'; import MyModal from '@/components/MyModal'; export type FormData = { dataId?: string; a: string; q: string }; const InputDataModal = ({ onClose, onSuccess, onDelete, kbId, defaultValues = { a: '', q: '' } }: { onClose: () => void; onSuccess: (data: FormData) => void; onDelete?: () => void; kbId: string; defaultValues?: FormData; }) => { const [loading, setLoading] = useState(false); const { toast } = useToast(); const { register, handleSubmit, reset } = useForm({ defaultValues }); /** * 确认导入新数据 */ const sureImportData = useCallback( async (e: FormData) => { if (e.a.length + e.q.length >= 3000) { toast({ title: '总长度超长了', status: 'warning' }); return; } setLoading(true); try { const data = { a: e.a, q: e.q, source: '手动录入' }; const { insertLen } = await postKbDataFromList({ kbId, model: vectorModelList[0].model, mode: TrainingModeEnum.index, data: [data] }); if (insertLen === 0) { toast({ title: '已存在完全一致的数据', status: 'warning' }); } else { toast({ title: '导入数据成功,需要一段时间训练', status: 'success' }); reset({ a: '', q: '' }); } onSuccess(data); } catch (err: any) { toast({ title: getErrText(err, '出现了点意外~'), status: 'error' }); } setLoading(false); }, [kbId, onSuccess, reset, toast] ); const updateData = useCallback( async (e: FormData) => { if (!e.dataId) return; if (e.a !== defaultValues.a || e.q !== defaultValues.q) { setLoading(true); try { const data = { dataId: e.dataId, kbId, a: e.a, q: e.q === defaultValues.q ? '' : e.q }; await putKbDataById(data); onSuccess(data); } catch (err) { toast({ status: 'error', title: getErrText(err, '更新数据失败') }); } setLoading(false); } toast({ title: '修改数据成功', status: 'success' }); onClose(); }, [defaultValues.a, defaultValues.q, kbId, onClose, onSuccess, toast] ); return ( {'匹配的知识点'}