mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	This pull request includes changes to various components adding a `skip-context-menu` class to ensure the system context menu opens instead of the Chatwoot message one --------- Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: Pranav <pranavrajs@gmail.com>
		
			
				
	
	
		
			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 skip-context-menu"
 | 
						|
      :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>
 |