mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	* feat: Add vue-router to widget Co-authored-by: Pranav <pranav@chatwoot.com> * Move to dynamic imports * Move to routerMixin * Fix popup button display * Remove unnecessary import * router -> route * Fix open state * Fix issues * Remove used CSS * Fix specs * Fix specs * Fix widgetColor specs * Fix mutation specs * Fixes broken lint errors * Fixes issues with widget flow Co-authored-by: Nithin <nithin@chatwoot.com> Co-authored-by: Nithin David <1277421+nithindavid@users.noreply.github.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <header class="flex justify-between p-5 w-full">
 | 
						|
    <div class="flex items-center">
 | 
						|
      <button v-if="showBackButton" @click="onBackButtonClick">
 | 
						|
        <fluent-icon icon="chevron-left" size="24" />
 | 
						|
      </button>
 | 
						|
      <img
 | 
						|
        v-if="avatarUrl"
 | 
						|
        class="h-8 w-8 rounded-full mr-3"
 | 
						|
        :src="avatarUrl"
 | 
						|
        alt="avatar"
 | 
						|
      />
 | 
						|
      <div>
 | 
						|
        <div class="text-black-900 font-medium text-base flex items-center">
 | 
						|
          <span class="mr-1" v-html="title" />
 | 
						|
          <div
 | 
						|
            :class="
 | 
						|
              `h-2 w-2 rounded-full leading-4
 | 
						|
              ${isOnline ? 'bg-green-500' : 'hidden'}`
 | 
						|
            "
 | 
						|
          />
 | 
						|
        </div>
 | 
						|
        <div class="text-xs mt-1 text-black-700">
 | 
						|
          {{ replyWaitMessage }}
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
    <header-actions :show-popout-button="showPopoutButton" />
 | 
						|
  </header>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
 | 
						|
import availabilityMixin from 'widget/mixins/availability';
 | 
						|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
 | 
						|
import HeaderActions from './HeaderActions';
 | 
						|
import routerMixin from 'widget/mixins/routerMixin';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'ChatHeader',
 | 
						|
  components: {
 | 
						|
    FluentIcon,
 | 
						|
    HeaderActions,
 | 
						|
  },
 | 
						|
  mixins: [availabilityMixin, routerMixin],
 | 
						|
  props: {
 | 
						|
    avatarUrl: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
    title: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
    showPopoutButton: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    showBackButton: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    availableAgents: {
 | 
						|
      type: Array,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({ widgetColor: 'appConfig/getWidgetColor' }),
 | 
						|
    isOnline() {
 | 
						|
      const { workingHoursEnabled } = this.channelConfig;
 | 
						|
      const anyAgentOnline = this.availableAgents.length > 0;
 | 
						|
 | 
						|
      if (workingHoursEnabled) {
 | 
						|
        return this.isInBetweenTheWorkingHours;
 | 
						|
      }
 | 
						|
      return anyAgentOnline;
 | 
						|
    },
 | 
						|
    replyWaitMessage() {
 | 
						|
      return this.isOnline
 | 
						|
        ? this.replyTimeStatus
 | 
						|
        : this.$t('TEAM_AVAILABILITY.OFFLINE');
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onBackButtonClick() {
 | 
						|
      this.replaceRoute('home');
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |