2021-03-13 08:36:25 +00:00
|
|
|
import compareAsc from 'date-fns/compareAsc';
|
|
|
|
import { buildDateFromTime } from 'shared/helpers/DateHelper';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
computed: {
|
|
|
|
channelConfig() {
|
|
|
|
return window.chatwootWebChannel;
|
|
|
|
},
|
|
|
|
replyTime() {
|
|
|
|
return window.chatwootWebChannel.replyTime;
|
|
|
|
},
|
|
|
|
replyTimeStatus() {
|
|
|
|
switch (this.replyTime) {
|
|
|
|
case 'in_a_few_minutes':
|
|
|
|
return this.$t('REPLY_TIME.IN_A_FEW_MINUTES');
|
|
|
|
case 'in_a_few_hours':
|
|
|
|
return this.$t('REPLY_TIME.IN_A_FEW_HOURS');
|
|
|
|
case 'in_a_day':
|
|
|
|
return this.$t('REPLY_TIME.IN_A_DAY');
|
|
|
|
default:
|
|
|
|
return this.$t('REPLY_TIME.IN_A_FEW_HOURS');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
outOfOfficeMessage() {
|
|
|
|
return this.channelConfig.outOfOfficeMessage;
|
|
|
|
},
|
|
|
|
isInBetweenTheWorkingHours() {
|
|
|
|
const {
|
|
|
|
openHour,
|
|
|
|
openMinute,
|
|
|
|
closeHour,
|
|
|
|
closeMinute,
|
|
|
|
closedAllDay,
|
2022-02-22 09:28:49 +00:00
|
|
|
openAllDay,
|
2021-03-13 08:36:25 +00:00
|
|
|
} = this.currentDayAvailability;
|
|
|
|
const { utcOffset } = this.channelConfig;
|
|
|
|
|
2022-02-22 09:28:49 +00:00
|
|
|
if (openAllDay) return true;
|
|
|
|
|
2021-03-13 08:36:25 +00:00
|
|
|
if (closedAllDay) return false;
|
|
|
|
|
|
|
|
const startTime = buildDateFromTime(openHour, openMinute, utcOffset);
|
|
|
|
const endTime = buildDateFromTime(closeHour, closeMinute, utcOffset);
|
|
|
|
const isBetween =
|
|
|
|
compareAsc(new Date(), startTime) === 1 &&
|
|
|
|
compareAsc(endTime, new Date()) === 1;
|
|
|
|
|
|
|
|
if (isBetween) return true;
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
currentDayAvailability() {
|
|
|
|
const dayOfTheWeek = new Date().getDay();
|
|
|
|
const [workingHourConfig = {}] = this.channelConfig.workingHours.filter(
|
|
|
|
workingHour => workingHour.day_of_week === dayOfTheWeek
|
|
|
|
);
|
|
|
|
return {
|
|
|
|
closedAllDay: workingHourConfig.closed_all_day,
|
|
|
|
openHour: workingHourConfig.open_hour,
|
|
|
|
openMinute: workingHourConfig.open_minutes,
|
|
|
|
closeHour: workingHourConfig.close_hour,
|
|
|
|
closeMinute: workingHourConfig.close_minutes,
|
2022-02-22 09:28:49 +00:00
|
|
|
openAllDay: workingHourConfig.open_all_day,
|
2021-03-13 08:36:25 +00:00
|
|
|
};
|
|
|
|
},
|
2021-10-12 12:28:33 +00:00
|
|
|
isInBusinessHours() {
|
|
|
|
const { workingHoursEnabled } = window.chatwootWebChannel;
|
|
|
|
return workingHoursEnabled ? this.isInBetweenTheWorkingHours : true;
|
|
|
|
},
|
2021-03-13 08:36:25 +00:00
|
|
|
},
|
|
|
|
};
|