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>
100 lines
2.7 KiB
Vue
100 lines
2.7 KiB
Vue
<script setup>
|
|
import { computed } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
const props = defineProps({
|
|
supportPersonality: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
const { t } = useI18n();
|
|
|
|
const clockImage =
|
|
'/assets/images/dashboard/year-in-review/fourth-frame-clock.png';
|
|
const doubleQuotesImage =
|
|
'/assets/images/dashboard/year-in-review/double-quotes.png';
|
|
|
|
const formatResponseTime = seconds => {
|
|
if (seconds < 60) {
|
|
return 'less than a minute';
|
|
}
|
|
if (seconds < 3600) {
|
|
const minutes = Math.floor(seconds / 60);
|
|
return minutes === 1 ? '1 minute' : `${minutes} minutes`;
|
|
}
|
|
if (seconds < 86400) {
|
|
const hours = Math.floor(seconds / 3600);
|
|
return hours === 1 ? '1 hour' : `${hours} hours`;
|
|
}
|
|
return 'more than a day';
|
|
};
|
|
|
|
const personality = computed(() => {
|
|
const seconds = props.supportPersonality.avg_response_time_seconds;
|
|
const minutes = seconds / 60;
|
|
|
|
if (minutes < 2) {
|
|
return 'Swift Helper';
|
|
}
|
|
if (minutes < 5) {
|
|
return 'Quick Responder';
|
|
}
|
|
if (minutes < 15) {
|
|
return 'Steady Support';
|
|
}
|
|
return 'Thoughtful Advisor';
|
|
});
|
|
|
|
const personalityMessage = computed(() => {
|
|
const seconds = props.supportPersonality.avg_response_time_seconds;
|
|
const time = formatResponseTime(seconds);
|
|
|
|
const personalityKeyMap = {
|
|
'Swift Helper': 'SWIFT_HELPER',
|
|
'Quick Responder': 'QUICK_RESPONDER',
|
|
'Steady Support': 'STEADY_SUPPORT',
|
|
'Thoughtful Advisor': 'THOUGHTFUL_ADVISOR',
|
|
};
|
|
|
|
const key = personalityKeyMap[personality.value];
|
|
if (!key) return '';
|
|
|
|
return t(`YEAR_IN_REVIEW.PERSONALITY.MESSAGES.${key}`, { time });
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="absolute inset-0 flex items-center justify-center px-8 md:px-32">
|
|
<div class="flex flex-col gap-9 max-w-3xl">
|
|
<div class="mb-4 md:mb-6">
|
|
<img :src="clockImage" alt="Clock" class="w-auto h-28" />
|
|
<div class="flex items-center justify-start flex-1 mt-9">
|
|
<div class="text-n-slate-1 dark:text-n-slate-12 flex gap-3 flex-col">
|
|
<div class="text-2xl md:text-4xl tracking-tight">
|
|
{{ t('YEAR_IN_REVIEW.PERSONALITY.TITLE') }}
|
|
</div>
|
|
<div class="text-6xl md:text-7xl lg:text-8xl tracking-tighter">
|
|
{{ personality }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex items-center justify-center gap-3 md:gap-6">
|
|
<img
|
|
:src="doubleQuotesImage"
|
|
alt="Quote"
|
|
class="w-8 h-8 md:w-12 md:h-12 lg:w-16 lg:h-16"
|
|
/>
|
|
<p
|
|
class="text-xl md:text-3xl lg:text-3xl font-medium tracking-[-0.2px] text-n-slate-12 dark:text-n-slate-1"
|
|
>
|
|
{{ personalityMessage }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|