ant-design/components/upload/uploadList.jsx

116 lines
3.6 KiB
React
Raw Normal View History

import 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';
2015-11-04 12:00:49 +08:00
import { Line } from '../progress';
2015-12-12 15:25:54 +08:00
import classNames from 'classnames';
2015-10-02 16:52:34 +08:00
// https://developer.mozilla.org/en-US/docs/Web/API/FileReader/readAsDataURL
const previewFile = function (file, callback) {
const reader = new FileReader();
reader.onloadend = function () {
callback(reader.result);
};
reader.readAsDataURL(file);
};
export default React.createClass({
getDefaultProps() {
return {
2015-12-12 15:25:54 +08:00
listType: 'text', // or picture
2015-10-31 13:27:58 +08:00
items: [],
progressAttr: {
strokeWidth: 3,
showInfo: false
}
};
},
2015-08-09 18:23:18 +08:00
handleClose(file) {
this.props.onRemove(file);
},
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.FileReader || !window.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" />;
}
} else {
icon = (<a className={prefixCls + '-list-item-thumbnail'}
href={file.url}
target="_blank"><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'}>
<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}>
2015-10-31 13:27:58 +08:00
<div className={prefixCls + '-list-item-info'}>
2015-12-12 15:25:54 +08:00
{icon}
<span className={prefixCls + '-list-item-name'}>{file.name}</span>
2016-01-15 15:56:06 +08:00
{
this.props.listType === 'picture-card' && file.status !== 'uploading'
? (<span>
<a href={file.url} target="_blank"><Icon type="eye-o" /></a>
<Icon type="delete" onClick={this.handleClose.bind(this, file)} />
</span>)
: <Icon type="cross" onClick={this.handleClose.bind(this, file)} />
}
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}>
<Animate transitionName={prefixCls + '-margin-top'}>
{list}
</Animate>
</div>
);
}
});