Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
- Add Logistics component with progress tracking - Add OrderDetail component for order information - Support data-driven steps and actions - Add blue color scale to widget SCSS - Fix node overflow and progress bar rendering issues - Add English translations for dashboard components Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.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>
|