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.
54 lines
1.5 KiB
54 lines
1.5 KiB
import React from 'react';
|
|
const prefixCls = 'ant-upload';
|
|
|
|
export default React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
items: []
|
|
};
|
|
},
|
|
getInitialState() {
|
|
return {
|
|
items: this.props.items
|
|
};
|
|
},
|
|
componentWillReceiveProps(nextProps) {
|
|
if ('items' in nextProps) {
|
|
this.setState({
|
|
items: nextProps.items
|
|
});
|
|
}
|
|
},
|
|
handleClose(file) {
|
|
var matchWay = file.uid === '' ? 'byName' : 'byUid';
|
|
let items = this.state.items;
|
|
let removeItem = items.filter((item) => {
|
|
if (matchWay === 'byName') {
|
|
return item.filename === file.filename;
|
|
} else {
|
|
return item.uid === file.uid;
|
|
}
|
|
})[0];
|
|
if (removeItem) {
|
|
items.splice(removeItem, 1);
|
|
}
|
|
this.setState({
|
|
items: items
|
|
});
|
|
},
|
|
render() {
|
|
var items = this.state.items;
|
|
var downloadItem = (file) => {
|
|
var statusIcon = file.status === 'done' ? <i className={'anticon anticon-check ' + prefixCls + '-success-icon'}></i> : <i className='anticon anticon-loading'></i>;
|
|
var closeIcon = file.status === 'done' ? <i className='anticon anticon-cross' ref='theCloseBtn' onClick={this.handleClose.bind(this, file)}></i> : '';
|
|
return (
|
|
<div className={prefixCls + '-list-item'} key={file.id}>
|
|
{statusIcon}
|
|
<b className={prefixCls + '-item-name'}>{file.filename}</b>
|
|
{closeIcon}
|
|
</div>
|
|
);
|
|
};
|
|
return <div className={prefixCls + '-list'}>{items.map(downloadItem)}</div>;
|
|
}
|
|
});
|
|
|