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.
41 lines
1.1 KiB
41 lines
1.1 KiB
import React from 'react';
|
|
import { InboxOutlined } from '@ant-design/icons';
|
|
import type { UploadProps } from 'antd';
|
|
import { message, Upload } from 'antd';
|
|
|
|
const { Dragger } = Upload;
|
|
|
|
const props: UploadProps = {
|
|
name: 'file',
|
|
multiple: true,
|
|
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
|
|
onChange(info) {
|
|
const { status } = info.file;
|
|
if (status !== 'uploading') {
|
|
console.log(info.file, info.fileList);
|
|
}
|
|
if (status === 'done') {
|
|
message.success(`${info.file.name} file uploaded successfully.`);
|
|
} else if (status === 'error') {
|
|
message.error(`${info.file.name} file upload failed.`);
|
|
}
|
|
},
|
|
onDrop(e) {
|
|
console.log('Dropped files', e.dataTransfer.files);
|
|
},
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Dragger {...props}>
|
|
<p className="ant-upload-drag-icon">
|
|
<InboxOutlined />
|
|
</p>
|
|
<p className="ant-upload-text">Click or drag file to this area to upload</p>
|
|
<p className="ant-upload-hint">
|
|
Support for a single or bulk upload. Strictly prohibit from uploading company data or other
|
|
band files
|
|
</p>
|
|
</Dragger>
|
|
);
|
|
|
|
export default App;
|
|
|