import React from 'react'; import Animate from 'rc-animate'; import Icon from '../icon'; import Tooltip from '../tooltip'; 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 { 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, locale } = this.props; const list = items.map(file => { let progress; let icon = ; if (listType === 'picture' || listType === 'picture-card') { if (file.status === 'uploading' || (!file.thumbUrl && !file.url)) { if (listType === 'picture-card') { icon =
{locale.uploading}
; } else { icon = ; } } else { icon = ( this.handlePreview(file, e)} href={file.url || file.thumbUrl} target="_blank" rel="noopener noreferrer" > {file.name} ); } } if (file.status === 'uploading') { progress = (
); } const infoUploadingClass = classNames({ [`${prefixCls}-list-item`]: true, [`${prefixCls}-list-item-${file.status}`]: true, }); const preview = file.url ? ( this.handlePreview(file, e)} > {file.name} ) : ( this.handlePreview(file, e)} > {file.name} ); const style = (file.url || file.thumbUrl) ? undefined : { pointerEvents: 'none', opacity: 0.5, }; const previewIcon = showPreviewIcon ? ( this.handlePreview(file, e)} title={locale.previewFile} > ) : null; const removeIcon = showRemoveIcon ? ( this.handleClose(file)} /> ) : null; const removeIconCross = showRemoveIcon ? ( this.handleClose(file)} /> ) : null; const actions = (listType === 'picture-card' && file.status !== 'uploading') ? {previewIcon}{removeIcon} : removeIconCross; const item = (
{icon} {preview} {actions}
{progress}
); if (file.status === 'error') { const message = file.response || (file.error && file.error.statusText) || locale.uploadError; return ( {item} ); } return item; }); const listClassNames = classNames({ [`${prefixCls}-list`]: true, [`${prefixCls}-list-${listType}`]: true, }); return ( {list} ); } }