fix(Uploader): preview is slow when sum of images size be bigger (#9961)

This commit is contained in:
chenjiangui 2021-11-30 17:43:57 +08:00 committed by GitHub
parent fa3444f1c5
commit bd236e9561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@ import {
PropType,
defineComponent,
ExtractPropTypes,
onBeforeUnmount,
} from 'vue';
// Utils
@ -97,6 +98,7 @@ export default defineComponent({
setup(props, { emit, slots }) {
const inputRef = ref();
const urls: string[] = [];
const getDetail = (index = props.modelValue.length) => ({
name: props.name,
@ -225,7 +227,13 @@ export default defineComponent({
if (props.previewFullImage) {
const imageFiles = props.modelValue.filter(isImageFile);
const images = imageFiles
.map((item) => item.content || item.url)
.map((item) => {
if (item.file && !item.url) {
item.url = URL.createObjectURL(item.file);
urls.push(item.url);
}
return item.url;
})
.filter(Boolean) as string[];
imagePreview = ImagePreview(
@ -338,6 +346,10 @@ export default defineComponent({
}
};
onBeforeUnmount(() => {
urls.forEach((url) => URL.revokeObjectURL(url));
});
useExpose<UploaderExpose>({
chooseFile,
closeImagePreview,