mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
# Pull Request Template ## Description **This PR includes:** * Refactored two legacy mixins (`availability.js`, `nextAvailability.js`) into a Vue 3 composable (`useAvailability`), helper module and component based rendering logic. * Fixed an issue where the widget wouldn't load if business hours were enabled but all days were unchecked. * Fixed translation issue [[#11280](https://github.com/chatwoot/chatwoot/issues/11280)](https://github.com/chatwoot/chatwoot/issues/11280). * Reduced code complexity and size. * Added test coverage for both the composable and helper functions. ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? ### Loom video https://www.loom.com/share/2bc3ed694b4349419505e275d14d0b98?sid=22d585e4-0dc7-4242-bcb6-e3edc16e3aee ### Story <img width="995" height="442" alt="image" src="https://github.com/user-attachments/assets/d6340738-07db-41d5-86fa-a8ecf734cc70" /> ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules Fixes https://github.com/chatwoot/chatwoot/issues/12012 --------- Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Pranav <pranav@chatwoot.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
64 lines
2.0 KiB
Vue
64 lines
2.0 KiB
Vue
<script setup>
|
|
import { toRef } from 'vue';
|
|
import { useRouter } from 'vue-router';
|
|
import FluentIcon from 'shared/components/FluentIcon/Index.vue';
|
|
import HeaderActions from './HeaderActions.vue';
|
|
import AvailabilityContainer from 'widget/components/Availability/AvailabilityContainer.vue';
|
|
import { useAvailability } from 'widget/composables/useAvailability';
|
|
|
|
const props = defineProps({
|
|
avatarUrl: { type: String, default: '' },
|
|
title: { type: String, default: '' },
|
|
showPopoutButton: { type: Boolean, default: false },
|
|
showBackButton: { type: Boolean, default: false },
|
|
availableAgents: { type: Array, default: () => [] },
|
|
});
|
|
|
|
const availableAgents = toRef(props, 'availableAgents');
|
|
|
|
const router = useRouter();
|
|
const { isOnline } = useAvailability(availableAgents);
|
|
|
|
const onBackButtonClick = () => {
|
|
router.replace({ name: 'home' });
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<header class="flex justify-between w-full p-5 bg-n-background gap-2">
|
|
<div class="flex items-center">
|
|
<button
|
|
v-if="showBackButton"
|
|
class="px-2 ltr:-ml-3 rtl:-mr-3"
|
|
@click="onBackButtonClick"
|
|
>
|
|
<FluentIcon icon="chevron-left" size="24" class="text-n-slate-12" />
|
|
</button>
|
|
<img
|
|
v-if="avatarUrl"
|
|
class="w-8 h-8 ltr:mr-3 rtl:ml-3 rounded-full"
|
|
:src="avatarUrl"
|
|
alt="avatar"
|
|
/>
|
|
<div class="flex flex-col gap-1">
|
|
<div
|
|
class="flex items-center text-base font-medium leading-4 text-n-slate-12"
|
|
>
|
|
<span v-dompurify-html="title" class="ltr:mr-1 rtl:ml-1" />
|
|
<div
|
|
:class="`h-2 w-2 rounded-full
|
|
${isOnline ? 'bg-n-teal-10' : 'hidden'}`"
|
|
/>
|
|
</div>
|
|
<AvailabilityContainer
|
|
:agents="availableAgents"
|
|
:show-header="false"
|
|
:show-avatars="false"
|
|
text-classes="text-xs leading-3"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<HeaderActions :show-popout-button="showPopoutButton" />
|
|
</header>
|
|
</template>
|