mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script>
 | 
						|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'FooterReplyTo',
 | 
						|
  components: { FluentIcon },
 | 
						|
  props: {
 | 
						|
    inReplyTo: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
  },
 | 
						|
  emits: ['dismiss'],
 | 
						|
  computed: {
 | 
						|
    replyToAttachment() {
 | 
						|
      if (!this.inReplyTo?.attachments?.length) {
 | 
						|
        return '';
 | 
						|
      }
 | 
						|
 | 
						|
      const [{ file_type: fileType } = {}] = this.inReplyTo.attachments;
 | 
						|
      return this.$t(`ATTACHMENTS.${fileType}.CONTENT`);
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div
 | 
						|
    class="mb-2.5 rounded-[7px] bg-n-slate-3 px-2 py-1.5 text-sm text-n-slate-11 flex items-center gap-2"
 | 
						|
  >
 | 
						|
    <div class="items-center flex-grow truncate">
 | 
						|
      <strong>{{ $t('FOOTER_REPLY_TO.REPLY_TO') }}</strong>
 | 
						|
      {{ inReplyTo.content || replyToAttachment }}
 | 
						|
    </div>
 | 
						|
    <button
 | 
						|
      class="items-end flex-shrink-0 p-1 rounded-md hover:bg-n-slate-5"
 | 
						|
      @click="$emit('dismiss')"
 | 
						|
    >
 | 
						|
      <FluentIcon icon="dismiss" size="12" />
 | 
						|
    </button>
 | 
						|
  </div>
 | 
						|
</template>
 |