refactor: Add frontend code to DB-GPT (#912)

This commit is contained in:
katakuri
2023-12-11 00:05:42 +08:00
committed by GitHub
parent b8dc9cf11e
commit 43190ca333
189 changed files with 19179 additions and 16 deletions

View File

@@ -0,0 +1,114 @@
import { PropsWithChildren, useContext, useState } from 'react';
import { Upload, UploadProps, Button, message, UploadFile, Tooltip } from 'antd';
import { LinkOutlined, SelectOutlined, UploadOutlined } from '@ant-design/icons';
import { apiInterceptors, postChatModeParamsFileLoad } from '@/client/api';
import { ChatContext } from '@/app/chat-context';
interface Props {
convUid: string;
chatMode: string;
onComplete?: () => void;
}
function ExcelUpload({ convUid, chatMode, onComplete, ...props }: PropsWithChildren<Props & UploadProps>) {
const [loading, setLoading] = useState(false);
const [messageApi, contextHolder] = message.useMessage();
const [fileList, setFileList] = useState<UploadFile[]>([]);
const [percent, setPercent] = useState<number>();
const { model } = useContext(ChatContext);
const onChange: UploadProps['onChange'] = async (info) => {
if (!info) {
message.error('Please select the *.(csv|xlsx|xls) file');
return;
}
if (!/\.(csv|xlsx|xls)$/.test(info.file.name ?? '')) {
message.error('File type must be csv, xlsx or xls');
return;
}
setFileList([info.file]);
};
const onUpload = async () => {
setLoading(true);
try {
const formData = new FormData();
formData.append('doc_file', fileList[0] as any);
messageApi.open({ content: `Uploading ${fileList[0].name}`, type: 'loading', duration: 0 });
const [err] = await apiInterceptors(
postChatModeParamsFileLoad({
convUid,
chatMode,
data: formData,
model,
config: {
/** timeout 1h */
timeout: 1000 * 60 * 60,
onUploadProgress: (progressEvent) => {
const progress = Math.ceil((progressEvent.loaded / (progressEvent.total || 0)) * 100);
setPercent(progress);
},
},
}),
);
if (err) return;
message.success('success');
onComplete?.();
} catch (e: any) {
message.error(e?.message || 'Upload Error');
} finally {
setLoading(false);
messageApi.destroy();
}
};
return (
<>
<div className="flex items-start gap-2">
{contextHolder}
<Tooltip placement="bottom" title="File cannot be changed after upload">
<Upload
disabled={loading}
className="mr-1"
beforeUpload={() => false}
fileList={fileList}
name="file"
accept=".csv,.xlsx,.xls"
multiple={false}
onChange={onChange}
showUploadList={{
showDownloadIcon: false,
showPreviewIcon: false,
showRemoveIcon: false,
}}
itemRender={() => <></>}
{...props}
>
<Button className="flex justify-center items-center" type="primary" disabled={loading} icon={<SelectOutlined />}>
Select File
</Button>
</Upload>
</Tooltip>
<Button
type="primary"
loading={loading}
className="flex justify-center items-center"
disabled={!fileList.length}
icon={<UploadOutlined />}
onClick={onUpload}
>
{loading ? (percent === 100 ? 'Analysis' : 'Uploading') : 'Upload'}
</Button>
{!!fileList.length && (
<div className="mt-2 text-gray-500 text-sm flex items-center">
<LinkOutlined className="mr-2" />
<span>{fileList[0]?.name}</span>
</div>
)}
</div>
</>
);
}
export default ExcelUpload;