import type { CSSProperties } from 'vue'; import { defineComponent, inject, nextTick } from 'vue'; import BaseMixin from '../_util/BaseMixin'; import { getOptionProps, initDefaultProps } from '../_util/props-util'; import { getTransitionProps, Transition, getTransitionGroupProps, TransitionGroup, } from '../_util/transition'; import { defaultConfigProvider } from '../config-provider'; import { previewImage, isImageUrl } from './utils'; import LoadingOutlined from '@ant-design/icons-vue/LoadingOutlined'; import PaperClipOutlined from '@ant-design/icons-vue/PaperClipOutlined'; import PictureTwoTone from '@ant-design/icons-vue/PictureTwoTone'; import FileTwoTone from '@ant-design/icons-vue/FileOutlined'; import DeleteOutlined from '@ant-design/icons-vue/DeleteOutlined'; import DownloadOutlined from '@ant-design/icons-vue/DownloadOutlined'; import EyeOutlined from '@ant-design/icons-vue/EyeOutlined'; import Tooltip from '../tooltip'; import Progress from '../progress'; import classNames from '../_util/classNames'; import { UploadListProps } from './interface'; export default defineComponent({ name: 'AUploadList', mixins: [BaseMixin], props: initDefaultProps(UploadListProps, { listType: 'text', // or picture progressAttr: { strokeWidth: 2, showInfo: false, }, showRemoveIcon: true, showDownloadIcon: false, showPreviewIcon: true, previewFile: previewImage, }), setup() { return { configProvider: inject('configProvider', defaultConfigProvider), }; }, updated() { 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 as any).$forceUpdate(); }); } }); }); }, methods: { handlePreview(file, e) { const { onPreview } = this.$props; if (!onPreview) { return; } e.preventDefault(); return this.$emit('preview', file); }, handleDownload(file) { const { onDownload } = this.$props; if (typeof onDownload === 'function') { this.$emit('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 = file.status === 'uploading' ? : ; 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 = { ...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: CSSProperties | undefined = 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 = { ...getTransitionGroupProps(`${prefixCls}-${animationDirection}`), class: listClassNames, }; return ( {list} ); }, });