mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import { StarOutlined, UploadOutlined } from '@ant-design/icons';
|
|
import type { UploadProps } from 'antd';
|
|
import { Button, Upload } from 'antd';
|
|
|
|
const props: UploadProps = {
|
|
action: 'https://660d2bd96ddfa2943b33731c.mockapi.io/api/upload',
|
|
onChange({ file, fileList }) {
|
|
if (file.status !== 'uploading') {
|
|
console.log(file, fileList);
|
|
}
|
|
},
|
|
defaultFileList: [
|
|
{
|
|
uid: '1',
|
|
name: 'xxx.png',
|
|
size: 1234567,
|
|
status: 'done',
|
|
response: 'Server Error 500', // custom error message to show
|
|
url: 'http://www.baidu.com/xxx.png',
|
|
},
|
|
{
|
|
uid: '2',
|
|
name: 'yyy.png',
|
|
size: 1234567,
|
|
status: 'done',
|
|
url: 'http://www.baidu.com/yyy.png',
|
|
},
|
|
{
|
|
uid: '3',
|
|
name: 'zzz.png',
|
|
size: 1234567,
|
|
status: 'error',
|
|
response: 'Server Error 500', // custom error message to show
|
|
url: 'http://www.baidu.com/zzz.png',
|
|
},
|
|
],
|
|
showUploadList: {
|
|
extra: ({ size = 0 }) => (
|
|
<span style={{ color: '#cccccc' }}>({(size / 1024 / 1024).toFixed(2)}MB)</span>
|
|
),
|
|
showDownloadIcon: true,
|
|
downloadIcon: 'Download',
|
|
showRemoveIcon: true,
|
|
removeIcon: <StarOutlined onClick={(e) => console.log(e, 'custom removeIcon event')} />,
|
|
},
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Upload {...props}>
|
|
<Button icon={<UploadOutlined />}>Upload</Button>
|
|
</Upload>
|
|
);
|
|
|
|
export default App;
|