mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			107 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <header
 | 
						|
    class="flex justify-between p-5 w-full"
 | 
						|
    :class="$dm('bg-white', 'dark:bg-slate-900')"
 | 
						|
  >
 | 
						|
    <div class="flex items-center">
 | 
						|
      <button
 | 
						|
        v-if="showBackButton"
 | 
						|
        class="-ml-3 px-2"
 | 
						|
        @click="onBackButtonClick"
 | 
						|
      >
 | 
						|
        <fluent-icon
 | 
						|
          icon="chevron-left"
 | 
						|
          size="24"
 | 
						|
          :class="$dm('text-black-900', 'dark:text-slate-50')"
 | 
						|
        />
 | 
						|
      </button>
 | 
						|
      <img
 | 
						|
        v-if="avatarUrl"
 | 
						|
        class="h-8 w-8 rounded-full mr-3"
 | 
						|
        :src="avatarUrl"
 | 
						|
        alt="avatar"
 | 
						|
      />
 | 
						|
      <div>
 | 
						|
        <div
 | 
						|
          class="font-medium text-base leading-4 flex items-center"
 | 
						|
          :class="$dm('text-black-900', 'dark:text-slate-50')"
 | 
						|
        >
 | 
						|
          <span v-dompurify-html="title" class="mr-1" />
 | 
						|
          <div
 | 
						|
            :class="`h-2 w-2 rounded-full
 | 
						|
              ${isOnline ? 'bg-green-500' : 'hidden'}`"
 | 
						|
          />
 | 
						|
        </div>
 | 
						|
        <div
 | 
						|
          class="text-xs mt-1 leading-3"
 | 
						|
          :class="$dm('text-black-700', 'dark:text-slate-400')"
 | 
						|
        >
 | 
						|
          {{ replyWaitMessage }}
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
    <header-actions :show-popout-button="showPopoutButton" />
 | 
						|
  </header>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
 | 
						|
import availabilityMixin from 'widget/mixins/availability';
 | 
						|
import nextAvailabilityTime from 'widget/mixins/nextAvailabilityTime';
 | 
						|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
 | 
						|
import HeaderActions from './HeaderActions.vue';
 | 
						|
import routerMixin from 'widget/mixins/routerMixin';
 | 
						|
import darkMixin from 'widget/mixins/darkModeMixin.js';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'ChatHeader',
 | 
						|
  components: {
 | 
						|
    FluentIcon,
 | 
						|
    HeaderActions,
 | 
						|
  },
 | 
						|
  mixins: [nextAvailabilityTime, availabilityMixin, routerMixin, darkMixin],
 | 
						|
  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;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onBackButtonClick() {
 | 
						|
      this.replaceRoute('home');
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |