ant-design/components/upload/uploadList.tsx

156 lines
4.7 KiB
TypeScript
Raw Normal View History

2016-07-07 20:25:03 +08:00
import * as React from 'react';
2015-08-21 17:12:42 +08:00
import Animate from 'rc-animate';
2015-11-20 11:05:34 +08:00
import Icon from '../icon';
2015-10-02 16:52:34 +08:00
const prefixCls = 'ant-upload';
2016-04-07 11:39:23 +08:00
import Progress from '../progress';
2015-12-12 15:25:54 +08:00
import classNames from 'classnames';
import { UploadListProps } from './interface';
2015-10-02 16:52:34 +08:00
// https://developer.mozilla.org/en-US/docs/Web/API/FileReader/readAsDataURL
2016-05-24 17:57:31 +08:00
const previewFile = (file, callback) => {
const reader = new FileReader();
2016-05-24 17:57:31 +08:00
reader.onloadend = () => callback(reader.result);
reader.readAsDataURL(file);
};
export default class UploadList extends React.Component<UploadListProps, any> {
static defaultProps = {
listType: 'text', // or picture
items: [],
progressAttr: {
strokeWidth: 3,
2016-05-11 09:32:33 +08:00
showInfo: false,
},
};
2016-04-05 12:30:14 +08:00
handleClose = (file) => {
this.props.onRemove(file);
}
2016-04-05 12:30:14 +08:00
handlePreview = (file, e) => {
if (this.props.onPreview) {
e.preventDefault();
return this.props.onPreview(file);
}
2016-04-05 12:30:14 +08:00
}
2015-12-27 16:00:40 +08:00
componentDidUpdate() {
2016-01-15 15:56:06 +08:00
if (this.props.listType !== 'picture' && this.props.listType !== 'picture-card') {
2015-12-28 13:07:47 +08:00
return;
}
this.props.items.forEach(file => {
2015-12-27 16:00:40 +08:00
if (typeof document === 'undefined' ||
typeof window === 'undefined' ||
!(window as any).FileReader || !(window as any).File ||
!(file.originFileObj instanceof File) ||
file.thumbUrl !== undefined) {
return;
}
2016-01-07 18:04:05 +08:00
/*eslint-disable */
file.thumbUrl = '';
2016-01-07 18:04:05 +08:00
/*eslint-enable */
previewFile(file.originFileObj, (previewDataUrl) => {
2016-01-07 18:04:05 +08:00
/*eslint-disable */
file.thumbUrl = previewDataUrl;
2016-01-07 18:04:05 +08:00
/*eslint-enable */
this.forceUpdate();
});
});
}
render() {
let list = this.props.items.map(file => {
2015-10-31 13:27:58 +08:00
let progress;
2015-12-12 15:25:54 +08:00
let icon = <Icon type="paper-clip" />;
2016-01-15 15:56:06 +08:00
if (this.props.listType === 'picture' || this.props.listType === 'picture-card') {
if (file.status === 'uploading' || (!file.thumbUrl && !file.url)) {
2016-01-15 15:57:41 +08:00
if (this.props.listType === 'picture-card') {
icon = <div className={`${prefixCls}-list-item-uploading-text`}></div>;
2016-01-15 15:56:06 +08:00
} else {
icon = <Icon className={`${prefixCls}-list-item-thumbnail`} type="picture" />;
2016-01-15 15:56:06 +08:00
}
} else {
2016-05-24 17:57:31 +08:00
icon = (
<a
className={`${prefixCls}-list-item-thumbnail`}
onClick={e => this.handlePreview(file, e)}
href={file.url}
2016-08-23 21:00:35 +08:00
target="_blank" rel="noopener noreferrer"
>
2016-05-24 17:57:31 +08:00
<img src={file.thumbUrl || file.url} alt={file.name} />
</a>
);
2016-01-15 15:56:06 +08:00
}
2015-12-12 15:25:54 +08:00
}
2016-01-15 15:56:06 +08:00
2015-10-31 13:27:58 +08:00
if (file.status === 'uploading') {
progress = (
<div className={`${prefixCls}-list-item-progress`}>
2016-04-07 11:39:23 +08:00
<Progress type="line" {...this.props.progressAttr} percent={file.percent} />
</div>
);
2015-10-31 13:27:58 +08:00
}
2015-12-12 15:25:54 +08:00
const infoUploadingClass = classNames({
[`${prefixCls}-list-item`]: true,
2015-12-14 11:56:00 +08:00
[`${prefixCls}-list-item-${file.status}`]: true,
2015-12-12 15:25:54 +08:00
});
return (
2015-12-12 15:25:54 +08:00
<div className={infoUploadingClass} key={file.uid}>
<div className={`${prefixCls}-list-item-info`}>
2015-12-12 15:25:54 +08:00
{icon}
2016-05-24 17:57:31 +08:00
{
file.url
? (
<a
href={file.url}
2016-08-23 21:00:35 +08:00
target="_blank" rel="noopener noreferrer"
className={`${prefixCls}-list-item-name`}
onClick={e => this.handlePreview(file, e)}
>
2016-05-24 17:57:31 +08:00
{file.name}
</a>
) : (
<span
className={`${prefixCls}-list-item-name`}
onClick={e => this.handlePreview(file, e)}
>
{file.name}
</span>
)
2016-05-24 17:57:31 +08:00
}
2016-01-15 15:56:06 +08:00
{
this.props.listType === 'picture-card' && file.status !== 'uploading'
? (
<span>
2016-05-24 17:57:31 +08:00
<a
href={file.url}
2016-08-23 21:00:35 +08:00
target="_blank" rel="noopener noreferrer"
style={{ pointerEvents: file.url ? '' : 'none' }}
onClick={e => this.handlePreview(file, e)}
>
2016-05-24 17:57:31 +08:00
<Icon type="eye-o" />
</a>
2016-03-30 17:06:19 +08:00
<Icon type="delete" onClick={() => this.handleClose(file)} />
</span>
2016-03-30 17:06:19 +08:00
) : <Icon type="cross" onClick={() => this.handleClose(file)} />
2016-01-15 15:56:06 +08:00
}
2015-10-31 13:27:58 +08:00
</div>
{progress}
</div>
);
2015-08-31 18:13:16 +08:00
});
2015-12-12 15:25:54 +08:00
const listClassNames = classNames({
[`${prefixCls}-list`]: true,
[`${prefixCls}-list-${this.props.listType}`]: true,
});
return (
<div className={listClassNames}>
2016-09-14 10:21:26 +08:00
<Animate transitionName={`${prefixCls}-margin-top`} component="">
{list}
</Animate>
</div>
);
}
}