mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
53 lines
1.4 KiB
Vue
53 lines
1.4 KiB
Vue
<script setup>
|
|
import { ref } from 'vue';
|
|
import Icon from 'next/icon/Icon.vue';
|
|
import { useSnakeCase } from 'dashboard/composables/useTransformKeys';
|
|
import { useMessageContext } from '../provider.js';
|
|
|
|
import GalleryView from 'dashboard/components/widgets/conversation/components/GalleryView.vue';
|
|
|
|
defineProps({
|
|
attachment: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
});
|
|
const hasError = ref(false);
|
|
const showGallery = ref(false);
|
|
|
|
const { filteredCurrentChatAttachments } = useMessageContext();
|
|
|
|
const handleError = () => {
|
|
hasError.value = true;
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="size-[72px] overflow-hidden contain-content rounded-xl cursor-pointer"
|
|
@click="showGallery = true"
|
|
>
|
|
<div
|
|
v-if="hasError"
|
|
class="flex flex-col items-center justify-center gap-1 text-xs text-center rounded-lg size-full bg-n-alpha-1 text-n-slate-11"
|
|
>
|
|
<Icon icon="i-lucide-circle-off" class="text-n-slate-11" />
|
|
{{ $t('COMPONENTS.MEDIA.LOADING_FAILED') }}
|
|
</div>
|
|
<img
|
|
v-else
|
|
class="object-cover w-full h-full"
|
|
:src="attachment.dataUrl"
|
|
@error="handleError"
|
|
/>
|
|
</div>
|
|
<GalleryView
|
|
v-if="showGallery"
|
|
v-model:show="showGallery"
|
|
:attachment="useSnakeCase(attachment)"
|
|
:all-attachments="filteredCurrentChatAttachments"
|
|
@error="handleError"
|
|
@close="() => (showGallery = false)"
|
|
/>
|
|
</template>
|