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.
175 lines
5.1 KiB
175 lines
5.1 KiB
import React from 'react';
|
|
import Animate from 'rc-animate';
|
|
import Icon from '../icon';
|
|
import Progress from '../progress';
|
|
import classNames from 'classnames';
|
|
import { UploadListProps } from './interface';
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/FileReader/readAsDataURL
|
|
const previewFile = (file, callback) => {
|
|
const reader = new FileReader();
|
|
reader.onloadend = () => callback(reader.result);
|
|
reader.readAsDataURL(file);
|
|
};
|
|
|
|
export default class UploadList extends React.Component<UploadListProps, any> {
|
|
static defaultProps = {
|
|
listType: 'text', // or picture
|
|
progressAttr: {
|
|
strokeWidth: 3,
|
|
showInfo: false,
|
|
},
|
|
prefixCls: 'ant-upload',
|
|
showRemoveIcon: true,
|
|
showPreviewIcon: true,
|
|
};
|
|
|
|
handleClose = (file) => {
|
|
const onRemove = this.props.onRemove;
|
|
if (onRemove) {
|
|
onRemove(file);
|
|
}
|
|
}
|
|
|
|
handlePreview = (file, e) => {
|
|
const { onPreview } = this.props;
|
|
if (!onPreview) {
|
|
return;
|
|
}
|
|
e.preventDefault();
|
|
return onPreview(file);
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
if (this.props.listType !== 'picture' && this.props.listType !== 'picture-card') {
|
|
return;
|
|
}
|
|
(this.props.items || []).forEach(file => {
|
|
if (typeof document === 'undefined' ||
|
|
typeof window === 'undefined' ||
|
|
!(window as any).FileReader || !(window as any).File ||
|
|
!(file.originFileObj instanceof File) ||
|
|
file.thumbUrl !== undefined) {
|
|
return;
|
|
}
|
|
/*eslint-disable */
|
|
file.thumbUrl = '';
|
|
/*eslint-enable */
|
|
previewFile(file.originFileObj, (previewDataUrl) => {
|
|
/*eslint-disable */
|
|
file.thumbUrl = previewDataUrl;
|
|
/*eslint-enable */
|
|
this.forceUpdate();
|
|
});
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { prefixCls, items = [], listType, showPreviewIcon, showRemoveIcon } = this.props;
|
|
const list = items.map(file => {
|
|
let progress;
|
|
let icon = <Icon type="paper-clip" />;
|
|
|
|
if (listType === 'picture' || listType === 'picture-card') {
|
|
if (file.status === 'uploading' || (!file.thumbUrl && !file.url)) {
|
|
if (listType === 'picture-card') {
|
|
icon = <div className={`${prefixCls}-list-item-uploading-text`}>Uploading...</div>;
|
|
} else {
|
|
icon = <Icon className={`${prefixCls}-list-item-thumbnail`} type="picture" />;
|
|
}
|
|
} else {
|
|
icon = (
|
|
<a
|
|
className={`${prefixCls}-list-item-thumbnail`}
|
|
onClick={e => this.handlePreview(file, e)}
|
|
href={file.url || file.thumbUrl}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<img src={file.thumbUrl || file.url} alt={file.name} />
|
|
</a>
|
|
);
|
|
}
|
|
}
|
|
|
|
if (file.status === 'uploading') {
|
|
progress = (
|
|
<div className={`${prefixCls}-list-item-progress`}>
|
|
<Progress type="line" {...this.props.progressAttr} percent={file.percent} />
|
|
</div>
|
|
);
|
|
}
|
|
const infoUploadingClass = classNames({
|
|
[`${prefixCls}-list-item`]: true,
|
|
[`${prefixCls}-list-item-${file.status}`]: true,
|
|
});
|
|
const preview = file.url ? (
|
|
<a
|
|
href={file.url}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className={`${prefixCls}-list-item-name`}
|
|
onClick={e => this.handlePreview(file, e)}
|
|
>
|
|
{file.name}
|
|
</a>
|
|
) : (
|
|
<span
|
|
className={`${prefixCls}-list-item-name`}
|
|
onClick={e => this.handlePreview(file, e)}
|
|
>
|
|
{file.name}
|
|
</span>
|
|
);
|
|
const style = (file.url || file.thumbUrl) ? undefined : {
|
|
pointerEvents: 'none',
|
|
opacity: 0.5,
|
|
};
|
|
const previewIcon = showPreviewIcon ? (
|
|
<a
|
|
href={file.url || file.thumbUrl}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
style={style}
|
|
onClick={e => this.handlePreview(file, e)}
|
|
title="Preview file"
|
|
>
|
|
<Icon type="eye-o" />
|
|
</a>
|
|
) : null;
|
|
const removeIcon = showRemoveIcon ? (
|
|
<Icon type="delete" title="Remove file" onClick={() => this.handleClose(file)} />
|
|
) : null;
|
|
const removeIconCross = showRemoveIcon ? (
|
|
<Icon type="cross" title="Remove file" onClick={() => this.handleClose(file)} />
|
|
) : null;
|
|
const actions = (listType === 'picture-card' && file.status !== 'uploading')
|
|
? <span className={`${prefixCls}-list-item-actions`}>{previewIcon}{removeIcon}</span>
|
|
: removeIconCross;
|
|
|
|
return (
|
|
<div className={infoUploadingClass} key={file.uid}>
|
|
<div className={`${prefixCls}-list-item-info`}>
|
|
{icon}
|
|
{preview}
|
|
{actions}
|
|
</div>
|
|
{progress}
|
|
</div>
|
|
);
|
|
});
|
|
const listClassNames = classNames({
|
|
[`${prefixCls}-list`]: true,
|
|
[`${prefixCls}-list-${listType}`]: true,
|
|
});
|
|
return (
|
|
<Animate
|
|
transitionName={`${prefixCls}-margin-top`}
|
|
component="div"
|
|
className={listClassNames}
|
|
>
|
|
{list}
|
|
</Animate>
|
|
);
|
|
}
|
|
}
|
|
|