primevue-mirror/components/lib/fileupload/FileContent.vue

76 lines
2.6 KiB
Vue
Raw Normal View History

2022-12-08 11:04:25 +00:00
<template>
2023-05-31 08:53:28 +00:00
<div v-for="(file, index) of files" :key="file.name + file.type + file.size" :class="cx('file')" v-bind="ptm('file')">
<img role="presentation" :class="cx('fileThumbnail')" :alt="file.name" :src="file.objectURL" :width="previewWidth" v-bind="ptm('fileThumbnail')" />
<div :class="cx('fileInfo')" v-bind="ptm('fileInfo')">
2023-05-31 08:53:28 +00:00
<div :class="cx('fileName')" v-bind="ptm('fileName')">{{ file.name }}</div>
<span :class="cx('fileSize')" v-bind="ptm('fileSize')">{{ formatSize(file.size) }}</span>
2022-12-08 11:04:25 +00:00
</div>
<Badge :value="badgeValue" :class="cx('fileBadge')" :severity="badgeSeverity" :unstyled="unstyled" :pt="ptm('fileBadge')" />
<div :class="cx('fileActions')" v-bind="ptm('fileActions')">
<Button @click="$emit('remove', index)" text rounded severity="danger" :class="cx('fileRemoveButton')" :unstyled="unstyled" :pt="ptm('fileRemoveButton')">
<template #icon="iconProps">
<component v-if="templates.fileremoveicon" :is="templates.fileremoveicon" :class="iconProps.class" :file="file" :index="index" />
<TimesIcon v-else :class="iconProps.class" aria-hidden="true" v-bind="ptm('fileRemoveButton')['icon']" />
</template>
2024-03-25 06:34:29 +00:00
</Button>
2022-12-08 11:04:25 +00:00
</div>
</div>
</template>
<script>
import Badge from 'primevue/badge';
2023-04-28 16:03:29 +00:00
import BaseComponent from 'primevue/basecomponent';
2022-12-08 11:04:25 +00:00
import Button from 'primevue/button';
import TimesIcon from 'primevue/icons/times';
2022-12-08 11:04:25 +00:00
export default {
2023-06-05 08:56:39 +00:00
name: 'FileContent',
2023-07-04 06:29:36 +00:00
hostName: 'FileUpload',
2023-04-28 16:03:29 +00:00
extends: BaseComponent,
2022-12-08 11:04:25 +00:00
emits: ['remove'],
props: {
files: {
type: Array,
default: () => []
},
badgeSeverity: {
type: String,
default: 'warn'
2022-12-08 11:04:25 +00:00
},
badgeValue: {
type: String,
default: null
},
previewWidth: {
type: Number,
default: 50
},
templates: {
type: null,
default: null
2022-12-08 11:04:25 +00:00
}
},
methods: {
formatSize(bytes) {
const k = 1024;
const dm = 3;
const sizes = this.$primevue.config.locale?.fileSizeTypes || ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
2022-12-08 11:04:25 +00:00
if (bytes === 0) {
return `0 ${sizes[0]}`;
2022-12-08 11:04:25 +00:00
}
const i = Math.floor(Math.log(bytes) / Math.log(k));
const formattedSize = parseFloat((bytes / Math.pow(k, i)).toFixed(dm));
2022-12-08 11:04:25 +00:00
return `${formattedSize} ${sizes[i]}`;
2022-12-08 11:04:25 +00:00
}
},
components: {
2024-03-25 06:34:29 +00:00
Button,
Badge,
TimesIcon
2022-12-08 11:04:25 +00:00
}
};
</script>