123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { computed, getCurrentInstance, ref } from 'vue'
- import type { StoredFile } from '#shared/graphql/types.ts'
- import { i18n } from '#shared/i18n.ts'
- import {
- canDownloadFile,
- canPreviewFile,
- humanizeFileSize,
- } from '#shared/utils/files.ts'
- import { getIconByContentType } from '#shared/utils/icons.ts'
- export interface Props {
- file: Pick<StoredFile, 'type' | 'name' | 'size'>
- downloadUrl?: string
- previewUrl?: string
- loading?: boolean
- noPreview?: boolean
- noRemove?: boolean
- wrapperClass?: string
- iconClass?: string
- sizeClass?: string
- }
- const props = withDefaults(defineProps<Props>(), {
- wrapperClass: 'border-gray-300',
- iconClass: 'border-gray-300',
- sizeClass: 'text-white/80',
- })
- const emit = defineEmits<{
- remove: []
- preview: [$event: Event]
- }>()
- const imageFailed = ref(false)
- const canPreview = computed(() => {
- const { file, previewUrl } = props
- if (!previewUrl || imageFailed.value) return false
- return canPreviewFile(file.type)
- })
- const canDownload = computed(() => canDownloadFile(props.file.type))
- const icon = computed(() => getIconByContentType(props.file.type))
- const componentType = computed(() => {
- if (props.downloadUrl) return 'CommonLink'
- if (canPreview.value) return 'button'
- return 'div'
- })
- const vm = getCurrentInstance()
- const ariaLabel = computed(() => {
- const listensForPreview = !!vm?.vnode.props?.onPreview
- if (canPreview.value && listensForPreview)
- return i18n.t('Preview %s', props.file.name) // opens a preview on the same page
- if (props.downloadUrl && canDownload.value)
- return i18n.t('Download %s', props.file.name) // directly downloads file
- if (props.downloadUrl && !canDownload.value)
- return i18n.t('Open %s', props.file.name) // opens file in another tab
- return props.file.name // cannot download and preview, probably just uploaded pdf
- })
- const onFileClick = (event: Event) => {
- if (canPreview.value) {
- event.preventDefault()
- emit('preview', event)
- }
- }
- </script>
- <template>
- <div
- class="focus-within:bg-blue-highlight mb-2 flex w-full items-center gap-2 rounded-2xl border-[0.5px] p-3 outline-none last:mb-0"
- :class="wrapperClass"
- >
- <Component
- :is="componentType"
- class="flex w-full select-none items-center gap-2 overflow-hidden text-left outline-none"
- :type="componentType === 'button' ? 'button' : undefined"
- :class="{ 'cursor-pointer': componentType !== 'div' }"
- :aria-label="ariaLabel"
- tabindex="0"
- :link="downloadUrl"
- :download="canDownload ? file.name : undefined"
- :target="!canDownload ? '_blank' : undefined"
- @click="onFileClick"
- @keydown.delete.prevent="$emit('remove')"
- @keydown.backspace.prevent="$emit('remove')"
- >
- <div
- v-if="!noPreview"
- class="flex h-9 w-9 items-center justify-center rounded border-[0.5px] p-1"
- :class="iconClass"
- >
- <img
- v-if="canPreview"
- class="max-h-8"
- :src="previewUrl"
- :alt="$t('Image of %s', file.name)"
- @error="imageFailed = true"
- />
- <CommonIcon
- v-else-if="loading"
- size="base"
- :label="$t('File \'%s\' is uploading', file.name)"
- name="loading"
- animation="spin"
- />
- <CommonIcon v-else size="base" decorative :name="icon" />
- </div>
- <div class="flex flex-1 flex-col overflow-hidden leading-4">
- <span class="truncate">
- {{ file.name }}
- </span>
- <span v-if="file.size" class="whitespace-nowrap" :class="sizeClass">
- {{ humanizeFileSize(file.size) }}
- </span>
- </div>
- </Component>
- <button
- v-if="!noRemove"
- type="button"
- tabindex="-1"
- :aria-label="i18n.t('Remove %s', file.name)"
- @click.stop.prevent="$emit('remove')"
- @keypress.space.prevent="$emit('remove')"
- >
- <CommonIcon
- class="text-gray ltr:right-2 rtl:left-2"
- name="close-small"
- size="base"
- decorative
- />
- </button>
- </div>
- </template>
|