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.
48 lines
1.3 KiB
48 lines
1.3 KiB
import React, { useState } from 'react';
|
|
import { UploadOutlined } from '@ant-design/icons';
|
|
import type { UploadProps } from 'antd';
|
|
import { Button, Upload } from 'antd';
|
|
import type { UploadFile } from 'antd/es/upload/interface';
|
|
|
|
const App: React.FC = () => {
|
|
const [fileList, setFileList] = useState<UploadFile[]>([
|
|
{
|
|
uid: '-1',
|
|
name: 'xxx.png',
|
|
status: 'done',
|
|
url: 'http://www.baidu.com/xxx.png',
|
|
},
|
|
]);
|
|
|
|
const handleChange: UploadProps['onChange'] = (info) => {
|
|
let newFileList = [...info.fileList];
|
|
|
|
// 1. Limit the number of uploaded files
|
|
// Only to show two recent uploaded files, and old ones will be replaced by the new
|
|
newFileList = newFileList.slice(-2);
|
|
|
|
// 2. Read from response and show file link
|
|
newFileList = newFileList.map((file) => {
|
|
if (file.response) {
|
|
// Component will show file.url as link
|
|
file.url = file.response.url;
|
|
}
|
|
return file;
|
|
});
|
|
|
|
setFileList(newFileList);
|
|
};
|
|
|
|
const props = {
|
|
action: 'https://www.mocky.io/v2/5cc8019d300000980a055e76',
|
|
onChange: handleChange,
|
|
multiple: true,
|
|
};
|
|
return (
|
|
<Upload {...props} fileList={fileList}>
|
|
<Button icon={<UploadOutlined />}>Upload</Button>
|
|
</Upload>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|