mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 08:19:37 +08:00
3eacb8f036
* Spelling & Grammar fixes. Fixed up some spelling and grammar issues. * Update snapshots
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
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 prohibited from uploading company data or other
|
|
banned files.
|
|
</p>
|
|
</Dragger>
|
|
);
|
|
|
|
export default App;
|