import BaseMixin from '../_util/BaseMixin'; import { getOptionProps, initDefaultProps, getListeners } from '../_util/props-util'; import getTransitionProps from '../_util/getTransitionProps'; import { ConfigConsumerProps } from '../config-provider/configConsumerProps'; import { previewImage, isImageUrl } from './utils'; import Icon from '../icon'; import Tooltip from '../tooltip'; import Progress from '../progress'; import classNames from 'classnames'; import { UploadListProps } from './interface'; export default { name: 'AUploadList', mixins: [BaseMixin], props: initDefaultProps(UploadListProps, { listType: 'text', // or picture progressAttr: { strokeWidth: 2, showInfo: false, }, showRemoveIcon: true, showDownloadIcon: false, showPreviewIcon: true, previewFile: previewImage, }), inject: { configProvider: { default: () => ConfigConsumerProps }, }, updated() { this.$nextTick(() => { const { listType, items, previewFile } = this.$props; if (listType !== 'picture' && listType !== 'picture-card') { return; } (items || []).forEach(file => { if ( typeof document === 'undefined' || typeof window === 'undefined' || !window.FileReader || !window.File || !(file.originFileObj instanceof File || file.originFileObj instanceof Blob) || file.thumbUrl !== undefined ) { return; } /*eslint-disable */ file.thumbUrl = ''; if (previewFile) { previewFile(file.originFileObj).then(previewDataUrl => { // Need append '' to avoid dead loop file.thumbUrl = previewDataUrl || ''; this.$forceUpdate(); }); } }); }); }, methods: { handlePreview(file, e) { const { preview } = getListeners(this); if (!preview) { return; } e.preventDefault(); return this.$emit('preview', file); }, handleDownload(file) { const { download } = getListeners(this); if (typeof download === 'function') { download(file); } else if (file.url) { window.open(file.url); } }, handleClose(file) { this.$emit('remove', file); }, }, render() { const { prefixCls: customizePrefixCls, items = [], listType, showPreviewIcon, showRemoveIcon, showDownloadIcon, locale, progressAttr, } = getOptionProps(this); const getPrefixCls = this.configProvider.getPrefixCls; const prefixCls = getPrefixCls('upload', customizePrefixCls); const list = items.map(file => { let progress; let icon = ; if (listType === 'picture' || listType === 'picture-card') { if (listType === 'picture-card' && file.status === 'uploading') { icon =
{locale.uploading}
; } else if (!file.thumbUrl && !file.url) { icon = ; } else { const thumbnail = isImageUrl(file) ? ( {file.name} ) : ( ); icon = ( this.handlePreview(file, e)} href={file.url || file.thumbUrl} target="_blank" rel="noopener noreferrer" > {thumbnail} ); } } if (file.status === 'uploading') { const progressProps = { props: { ...progressAttr, type: 'line', percent: file.percent, }, }; // show loading icon if upload progress listener is disabled const loadingProgress = 'percent' in file ? : null; progress = (
{loadingProgress}
); } const infoUploadingClass = classNames({ [`${prefixCls}-list-item`]: true, [`${prefixCls}-list-item-${file.status}`]: true, [`${prefixCls}-list-item-list-type-${listType}`]: true, }); const linkProps = typeof file.linkProps === 'string' ? JSON.parse(file.linkProps) : file.linkProps; const removeIcon = showRemoveIcon ? ( this.handleClose(file)} /> ) : null; const downloadIcon = showDownloadIcon && file.status === 'done' ? ( this.handleDownload(file)} /> ) : null; const downloadOrDelete = listType !== 'picture-card' && ( {downloadIcon && {downloadIcon}} {removeIcon && {removeIcon}} ); const listItemNameClass = classNames({ [`${prefixCls}-list-item-name`]: true, [`${prefixCls}-list-item-name-icon-count-${ [downloadIcon, removeIcon].filter(x => x).length }`]: true, }); const preview = file.url ? [ this.handlePreview(file, e)} > {file.name} , downloadOrDelete, ] : [ this.handlePreview(file, e)} title={file.name} > {file.name} , downloadOrDelete, ]; const style = file.url || file.thumbUrl ? undefined : { pointerEvents: 'none', opacity: 0.5, }; const previewIcon = showPreviewIcon ? ( this.handlePreview(file, e)} title={locale.previewFile} > ) : null; const actions = listType === 'picture-card' && file.status !== 'uploading' && ( {previewIcon} {file.status === 'done' && downloadIcon} {removeIcon} ); let message; if (file.response && typeof file.response === 'string') { message = file.response; } else { message = (file.error && file.error.statusText) || locale.uploadError; } const iconAndPreview = ( {icon} {preview} ); const transitionProps = getTransitionProps('fade'); const dom = (
{iconAndPreview}
{actions} {progress}
); const listContainerNameClass = classNames({ [`${prefixCls}-list-picture-card-container`]: listType === 'picture-card', }); return (
{file.status === 'error' ? {dom} : {dom}}
); }); const listClassNames = classNames({ [`${prefixCls}-list`]: true, [`${prefixCls}-list-${listType}`]: true, }); const animationDirection = listType === 'picture-card' ? 'animate-inline' : 'animate'; const transitionGroupProps = getTransitionProps(`${prefixCls}-${animationDirection}`); return ( {list} ); }, };