mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
|
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;
|