mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
89 lines
2.4 KiB
Vue
89 lines
2.4 KiB
Vue
<template>
|
|
<div class="p-4 shadow-sm rounded-md bg-white dark:bg-slate-700">
|
|
<div class="flex items-center justify-between">
|
|
<div class=" ">
|
|
<div class="text-sm font-medium text-slate-700 dark:text-slate-50">
|
|
{{
|
|
isOnline
|
|
? $t('TEAM_AVAILABILITY.ONLINE')
|
|
: $t('TEAM_AVAILABILITY.OFFLINE')
|
|
}}
|
|
</div>
|
|
<div class="text-sm mt-1 text-slate-500 dark:text-slate-100">
|
|
{{ replyWaitMessage }}
|
|
</div>
|
|
</div>
|
|
<available-agents v-if="isOnline" :agents="availableAgents" />
|
|
</div>
|
|
<button
|
|
class="inline-flex text-sm font-medium rounded-md py-1 mt-2 px-2 -ml-2 leading-6 text-slate-800 dark:text-slate-50 justify-between items-center hover:bg-slate-25 dark:hover:bg-slate-800"
|
|
:style="{ color: widgetColor }"
|
|
@click="startConversation"
|
|
>
|
|
<span class="pr-2 text-sm">
|
|
{{
|
|
hasConversation
|
|
? $t('CONTINUE_CONVERSATION')
|
|
: $t('START_CONVERSATION')
|
|
}}
|
|
</span>
|
|
<fluent-icon icon="arrow-right" size="14" />
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import { getContrastingTextColor } from '@chatwoot/utils';
|
|
import nextAvailabilityTime from 'widget/mixins/nextAvailabilityTime';
|
|
import AvailableAgents from 'widget/components/AvailableAgents.vue';
|
|
import configMixin from 'widget/mixins/configMixin';
|
|
import availabilityMixin from 'widget/mixins/availability';
|
|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
|
|
export default {
|
|
name: 'TeamAvailability',
|
|
components: {
|
|
AvailableAgents,
|
|
FluentIcon,
|
|
},
|
|
mixins: [configMixin, nextAvailabilityTime, availabilityMixin],
|
|
props: {
|
|
availableAgents: {
|
|
type: Array,
|
|
default: () => {},
|
|
},
|
|
hasConversation: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
unreadCount: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters({
|
|
widgetColor: 'appConfig/getWidgetColor',
|
|
}),
|
|
textColor() {
|
|
return getContrastingTextColor(this.widgetColor);
|
|
},
|
|
isOnline() {
|
|
const { workingHoursEnabled } = this.channelConfig;
|
|
const anyAgentOnline = this.availableAgents.length > 0;
|
|
|
|
if (workingHoursEnabled) {
|
|
return this.isInBetweenTheWorkingHours;
|
|
}
|
|
return anyAgentOnline;
|
|
},
|
|
},
|
|
methods: {
|
|
startConversation() {
|
|
this.$emit('start-conversation');
|
|
},
|
|
},
|
|
};
|
|
</script>
|