74 lines
2.1 KiB
Vue
74 lines
2.1 KiB
Vue
<script setup>
|
|
import { computed } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
import BaseAttachmentBubble from './BaseAttachment.vue';
|
|
import FileIcon from 'next/icon/FileIcon.vue';
|
|
|
|
/**
|
|
* @typedef {Object} Attachment
|
|
* @property {number} id - Unique identifier for the attachment
|
|
* @property {number} messageId - ID of the associated message
|
|
* @property {'image'|'audio'|'video'|'file'|'location'|'fallback'|'share'|'story_mention'|'contact'|'ig_reel'} fileType - Type of the attachment (file or image)
|
|
* @property {number} accountId - ID of the associated account
|
|
* @property {string|null} extension - File extension
|
|
* @property {string} dataUrl - URL to access the full attachment data
|
|
* @property {string} thumbUrl - URL to access the thumbnail version
|
|
* @property {number} fileSize - Size of the file in bytes
|
|
* @property {number|null} width - Width of the image if applicable
|
|
* @property {number|null} height - Height of the image if applicable
|
|
*/
|
|
|
|
/**
|
|
* @typedef {Object} Props
|
|
* @property {Attachment[]} [attachments=[]] - The attachments associated with the message
|
|
*/
|
|
|
|
const props = defineProps({
|
|
attachments: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
sender: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
|
|
const url = computed(() => {
|
|
return props.attachments[0].dataUrl;
|
|
});
|
|
|
|
const fileName = computed(() => {
|
|
if (url.value) {
|
|
const filename = url.value.substring(url.value.lastIndexOf('/') + 1);
|
|
return filename || t('CONVERSATION.UNKNOWN_FILE_TYPE');
|
|
}
|
|
return t('CONVERSATION.UNKNOWN_FILE_TYPE');
|
|
});
|
|
|
|
const fileType = computed(() => {
|
|
return fileName.value.split('.').pop();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<BaseAttachmentBubble
|
|
icon="i-teenyicons-user-circle-solid"
|
|
icon-bg-color="bg-n-alpha-3 dark:bg-n-alpha-white"
|
|
:sender="sender"
|
|
sender-translation-key="CONVERSATION.SHARED_ATTACHMENT.FILE"
|
|
:content="decodeURI(fileName)"
|
|
:action="{
|
|
href: url,
|
|
label: $t('CONVERSATION.DOWNLOAD'),
|
|
}"
|
|
>
|
|
<template #icon>
|
|
<FileIcon :file-type="fileType" class="size-4" />
|
|
</template>
|
|
</BaseAttachmentBubble>
|
|
</template>
|