mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	# Pull Request Template ## Description Replaces darkModeMixin with the new useDarkMode composable and replaces wll usages of mixin the the composable in components and pages Fixes https://linear.app/chatwoot/issue/CW-3474/rewrite-darkmodemixin-mixin-to-a-composable ## Type of change Please delete options that are not relevant. - [x] New feature (non-breaking change which adds functionality) --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
		
			
				
	
	
		
			145 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<script>
 | 
						|
import { useMessageFormatter } from 'shared/composables/useMessageFormatter';
 | 
						|
import Thumbnail from 'dashboard/components/widgets/Thumbnail.vue';
 | 
						|
import configMixin from '../mixins/configMixin';
 | 
						|
import { isEmptyObject } from 'widget/helpers/utils';
 | 
						|
import {
 | 
						|
  ON_CAMPAIGN_MESSAGE_CLICK,
 | 
						|
  ON_UNREAD_MESSAGE_CLICK,
 | 
						|
} from '../constants/widgetBusEvents';
 | 
						|
import { useDarkMode } from 'widget/composables/useDarkMode';
 | 
						|
export default {
 | 
						|
  name: 'UnreadMessage',
 | 
						|
  components: { Thumbnail },
 | 
						|
  mixins: [configMixin],
 | 
						|
  props: {
 | 
						|
    message: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
    showSender: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    sender: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
    campaignId: {
 | 
						|
      type: Number,
 | 
						|
      default: null,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup() {
 | 
						|
    const { formatMessage, getPlainText, truncateMessage, highlightContent } =
 | 
						|
      useMessageFormatter();
 | 
						|
    const { getThemeClass } = useDarkMode();
 | 
						|
    return {
 | 
						|
      formatMessage,
 | 
						|
      getPlainText,
 | 
						|
      truncateMessage,
 | 
						|
      highlightContent,
 | 
						|
      getThemeClass,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    companyName() {
 | 
						|
      return `${this.$t('UNREAD_VIEW.COMPANY_FROM')} ${
 | 
						|
        this.channelConfig.websiteName
 | 
						|
      }`;
 | 
						|
    },
 | 
						|
    avatarUrl() {
 | 
						|
      // eslint-disable-next-line
 | 
						|
      const BotImage = require('dashboard/assets/images/chatwoot_bot.png');
 | 
						|
      const displayImage = this.useInboxAvatarForBot
 | 
						|
        ? this.inboxAvatarUrl
 | 
						|
        : BotImage;
 | 
						|
      if (this.isSenderExist(this.sender)) {
 | 
						|
        const { avatar_url: avatarUrl } = this.sender;
 | 
						|
        return avatarUrl;
 | 
						|
      }
 | 
						|
      return displayImage;
 | 
						|
    },
 | 
						|
    agentName() {
 | 
						|
      if (this.isSenderExist(this.sender)) {
 | 
						|
        const { available_name: availableName } = this.sender;
 | 
						|
        return availableName;
 | 
						|
      }
 | 
						|
      if (this.useInboxAvatarForBot) {
 | 
						|
        return this.channelConfig.websiteName;
 | 
						|
      }
 | 
						|
      return this.$t('UNREAD_VIEW.BOT');
 | 
						|
    },
 | 
						|
    availabilityStatus() {
 | 
						|
      if (this.isSenderExist(this.sender)) {
 | 
						|
        const { availability_status: availabilityStatus } = this.sender;
 | 
						|
        return availabilityStatus;
 | 
						|
      }
 | 
						|
      return null;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    isSenderExist(sender) {
 | 
						|
      return sender && !isEmptyObject(sender);
 | 
						|
    },
 | 
						|
    onClickMessage() {
 | 
						|
      if (this.campaignId) {
 | 
						|
        this.$emitter.emit(ON_CAMPAIGN_MESSAGE_CLICK, this.campaignId);
 | 
						|
      } else {
 | 
						|
        this.$emitter.emit(ON_UNREAD_MESSAGE_CLICK);
 | 
						|
      }
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <div class="chat-bubble-wrap">
 | 
						|
    <button
 | 
						|
      class="chat-bubble agent"
 | 
						|
      :class="getThemeClass('bg-white', 'dark:bg-slate-50')"
 | 
						|
      @click="onClickMessage"
 | 
						|
    >
 | 
						|
      <div v-if="showSender" class="row--agent-block">
 | 
						|
        <Thumbnail
 | 
						|
          :src="avatarUrl"
 | 
						|
          size="20px"
 | 
						|
          :username="agentName"
 | 
						|
          :status="availabilityStatus"
 | 
						|
        />
 | 
						|
        <span v-dompurify-html="agentName" class="agent--name" />
 | 
						|
        <span v-dompurify-html="companyName" class="company--name" />
 | 
						|
      </div>
 | 
						|
      <div
 | 
						|
        v-dompurify-html="formatMessage(message, false)"
 | 
						|
        class="message-content"
 | 
						|
      />
 | 
						|
    </button>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<style lang="scss" scoped>
 | 
						|
@import '~widget/assets/scss/variables.scss';
 | 
						|
.chat-bubble {
 | 
						|
  max-width: 85%;
 | 
						|
  padding: $space-normal;
 | 
						|
  cursor: pointer;
 | 
						|
}
 | 
						|
 | 
						|
.row--agent-block {
 | 
						|
  align-items: center;
 | 
						|
  display: flex;
 | 
						|
  text-align: left;
 | 
						|
  padding-bottom: $space-small;
 | 
						|
  font-size: $font-size-small;
 | 
						|
  .agent--name {
 | 
						|
    font-weight: $font-weight-medium;
 | 
						|
    margin-left: $space-smaller;
 | 
						|
  }
 | 
						|
  .company--name {
 | 
						|
    color: $color-light-gray;
 | 
						|
    margin-left: $space-smaller;
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |