mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	* fix: Text color bug on attachment bubble * chore: Fix file bubble text color issue --------- Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: iamsivin <iamsivin@gmail.com>
		
			
				
	
	
		
			132 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Vue
		
	
	
		
			Executable File
		
	
	
	
	
<template>
 | 
						|
  <div class="user-message-wrap">
 | 
						|
    <div class="user-message">
 | 
						|
      <div
 | 
						|
        class="message-wrap"
 | 
						|
        :class="{ 'in-progress': isInProgress, 'is-failed': isFailed }"
 | 
						|
      >
 | 
						|
        <user-message-bubble
 | 
						|
          v-if="showTextBubble"
 | 
						|
          :message="message.content"
 | 
						|
          :status="message.status"
 | 
						|
          :widget-color="widgetColor"
 | 
						|
        />
 | 
						|
        <div
 | 
						|
          v-if="hasAttachments"
 | 
						|
          class="chat-bubble has-attachment user"
 | 
						|
          :style="{ backgroundColor: widgetColor }"
 | 
						|
        >
 | 
						|
          <div v-for="attachment in message.attachments" :key="attachment.id">
 | 
						|
            <image-bubble
 | 
						|
              v-if="attachment.file_type === 'image' && !hasImageError"
 | 
						|
              :url="attachment.data_url"
 | 
						|
              :thumb="attachment.data_url"
 | 
						|
              :readable-time="readableTime"
 | 
						|
              @error="onImageLoadError"
 | 
						|
            />
 | 
						|
            <file-bubble
 | 
						|
              v-else
 | 
						|
              :url="attachment.data_url"
 | 
						|
              :is-in-progress="isInProgress"
 | 
						|
              :widget-color="widgetColor"
 | 
						|
              is-user-bubble
 | 
						|
            />
 | 
						|
          </div>
 | 
						|
        </div>
 | 
						|
        <div
 | 
						|
          v-if="isFailed"
 | 
						|
          class="flex justify-end align-middle px-4 py-2 text-red-700"
 | 
						|
        >
 | 
						|
          <button
 | 
						|
            v-if="!hasAttachments"
 | 
						|
            :title="$t('COMPONENTS.MESSAGE_BUBBLE.RETRY')"
 | 
						|
            class="inline-flex justify-center items-center ml-2"
 | 
						|
            @click="retrySendMessage"
 | 
						|
          >
 | 
						|
            <fluent-icon icon="arrow-clockwise" size="14" />
 | 
						|
          </button>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import UserMessageBubble from 'widget/components/UserMessageBubble';
 | 
						|
import ImageBubble from 'widget/components/ImageBubble';
 | 
						|
import FluentIcon from 'shared/components/FluentIcon/Index';
 | 
						|
import FileBubble from 'widget/components/FileBubble';
 | 
						|
import timeMixin from 'dashboard/mixins/time';
 | 
						|
import messageMixin from '../mixins/messageMixin';
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'UserMessage',
 | 
						|
  components: {
 | 
						|
    UserMessageBubble,
 | 
						|
    ImageBubble,
 | 
						|
    FileBubble,
 | 
						|
    FluentIcon,
 | 
						|
  },
 | 
						|
  mixins: [timeMixin, messageMixin],
 | 
						|
  props: {
 | 
						|
    message: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      hasImageError: false,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({
 | 
						|
      widgetColor: 'appConfig/getWidgetColor',
 | 
						|
    }),
 | 
						|
 | 
						|
    isInProgress() {
 | 
						|
      const { status = '' } = this.message;
 | 
						|
      return status === 'in_progress';
 | 
						|
    },
 | 
						|
    showTextBubble() {
 | 
						|
      const { message } = this;
 | 
						|
      return !!message.content;
 | 
						|
    },
 | 
						|
    readableTime() {
 | 
						|
      const { created_at: createdAt = '' } = this.message;
 | 
						|
      return this.messageStamp(createdAt);
 | 
						|
    },
 | 
						|
    isFailed() {
 | 
						|
      const { status = '' } = this.message;
 | 
						|
      return status === 'failed';
 | 
						|
    },
 | 
						|
    errorMessage() {
 | 
						|
      const { meta } = this.message;
 | 
						|
      return meta
 | 
						|
        ? meta.error
 | 
						|
        : this.$t('COMPONENTS.MESSAGE_BUBBLE.ERROR_MESSAGE');
 | 
						|
    },
 | 
						|
  },
 | 
						|
  watch: {
 | 
						|
    message() {
 | 
						|
      this.hasImageError = false;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    this.hasImageError = false;
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    async retrySendMessage() {
 | 
						|
      await this.$store.dispatch(
 | 
						|
        'conversation/sendMessageWithData',
 | 
						|
        this.message
 | 
						|
      );
 | 
						|
    },
 | 
						|
    onImageLoadError() {
 | 
						|
      this.hasImageError = true;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |