You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
import React, { useState } from 'react';
|
|
import { UploadOutlined } from '@ant-design/icons';
|
|
import { Button, message, Upload } from 'antd';
|
|
import type { RcFile, UploadFile, UploadProps } from 'antd/es/upload/interface';
|
|
|
|
const App: React.FC = () => {
|
|
const [fileList, setFileList] = useState<UploadFile[]>([]);
|
|
const [uploading, setUploading] = useState(false);
|
|
|
|
const handleUpload = () => {
|
|
const formData = new FormData();
|
|
fileList.forEach((file) => {
|
|
formData.append('files[]', file as RcFile);
|
|
});
|
|
setUploading(true);
|
|
// You can use any AJAX library you like
|
|
fetch('https://www.mocky.io/v2/5cc8019d300000980a055e76', {
|
|
method: 'POST',
|
|
body: formData,
|
|
})
|
|
.then((res) => res.json())
|
|
.then(() => {
|
|
setFileList([]);
|
|
message.success('upload successfully.');
|
|
})
|
|
.catch(() => {
|
|
message.error('upload failed.');
|
|
})
|
|
.finally(() => {
|
|
setUploading(false);
|
|
});
|
|
};
|
|
|
|
const props: UploadProps = {
|
|
onRemove: (file) => {
|
|
const index = fileList.indexOf(file);
|
|
const newFileList = fileList.slice();
|
|
newFileList.splice(index, 1);
|
|
setFileList(newFileList);
|
|
},
|
|
beforeUpload: (file) => {
|
|
setFileList([...fileList, file]);
|
|
|
|
return false;
|
|
},
|
|
fileList,
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Upload {...props}>
|
|
<Button icon={<UploadOutlined />}>Select File</Button>
|
|
</Upload>
|
|
<Button
|
|
type="primary"
|
|
onClick={handleUpload}
|
|
disabled={fileList.length === 0}
|
|
loading={uploading}
|
|
style={{ marginTop: 16 }}
|
|
>
|
|
{uploading ? 'Uploading' : 'Start Upload'}
|
|
</Button>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|