DB-GPT/web/components/chat/header/excel-upload.tsx
2025-03-10 11:37:32 +08:00

125 lines
3.8 KiB
TypeScript

import { ChatContext } from '@/app/chat-context';
import { apiInterceptors, postChatModeParamsFileLoad } from '@/client/api';
import { ChatContentContext } from '@/pages/chat';
import { LinkOutlined, SelectOutlined, UploadOutlined } from '@ant-design/icons';
import { Button, Tooltip, Upload, UploadFile, UploadProps, message } from 'antd';
import { PropsWithChildren, useContext, useState } from 'react';
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 { temperatureValue, maxNewTokensValue } = useContext(ChatContentContext);
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,
temperatureValue,
maxNewTokensValue,
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' onClick={() => setFileList([])}>
<LinkOutlined className='mr-2' />
<span>{fileList[0]?.name}</span>
</div>
)}
</div>
</>
);
}
export default ExcelUpload;