Spaces:
Paused
Paused
| <template> | |
| <div v-if="stats" class="flex justify-center"> | |
| <div | |
| class="border-wp-background-400 dark:border-wp-background-100 bg-wp-background-200 dark:bg-wp-background-200 text-wp-text-100 w-full rounded-md border px-5 py-5" | |
| > | |
| <div class="flex w-full"> | |
| <h3 class="flex-1 text-lg leading-tight font-semibold uppercase"> | |
| {{ $t('admin.settings.queue.stats.completed_count') }} | |
| </h3> | |
| </div> | |
| <div class="relative overflow-hidden transition-all duration-500"> | |
| <div> | |
| <div class="pb-4 lg:pb-6"> | |
| <h4 class="inline-block text-2xl leading-tight font-semibold lg:text-3xl"> | |
| {{ stats.completed_count }} | |
| </h4> | |
| </div> | |
| <div v-if="total > 0" class="pb-4 lg:pb-6"> | |
| <div class="flex h-3 overflow-hidden rounded-full transition-all duration-500"> | |
| <div | |
| v-for="item in data" | |
| :key="item.key" | |
| class="h-full" | |
| :class="`${item.color}`" | |
| :style="{ width: `${item.percentage}%` }" | |
| > | |
| | |
| </div> | |
| </div> | |
| </div> | |
| <div class="-mx-4 flex sm:flex-wrap"> | |
| <div | |
| v-for="(item, index) in data" | |
| :key="item.key" | |
| class="px-4 sm:w-full md:w-1/4" | |
| :class="{ 'border-gray-300 md:border-l dark:border-gray-600': index !== 0 }" | |
| > | |
| <div class="overflow-hidden text-sm text-ellipsis whitespace-nowrap"> | |
| <span class="mr-1 inline-block h-2 w-2 rounded-full align-middle" :class="`${item.color}`"> </span> | |
| <span class="align-middle">{{ item.label }}</span> | |
| </div> | |
| <div class="text-lg font-medium"> | |
| {{ item.value }} | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </template> | |
| <script lang="ts" setup> | |
| import { computed } from 'vue'; | |
| import { useI18n } from 'vue-i18n'; | |
| import type { QueueStats } from '~/lib/api/types/queue'; | |
| const props = defineProps<{ | |
| stats?: QueueStats; | |
| }>(); | |
| const { t } = useI18n(); | |
| const total = computed(() => { | |
| if (!props.stats) { | |
| return 0; | |
| } | |
| return ( | |
| props.stats.worker_count + props.stats.running_count + props.stats.pending_count + props.stats.waiting_on_deps_count | |
| ); | |
| }); | |
| const data = computed(() => { | |
| if (!props.stats) { | |
| return []; | |
| } | |
| return [ | |
| { | |
| key: 'worker_count', | |
| label: t('admin.settings.queue.stats.worker_count'), | |
| value: props.stats.worker_count, | |
| percentage: total.value > 0 ? (props.stats.worker_count / total.value) * 100 : 0, | |
| color: 'bg-wp-state-ok-100', | |
| }, | |
| { | |
| key: 'running_count', | |
| label: t('admin.settings.queue.stats.running_count'), | |
| value: props.stats.running_count, | |
| percentage: total.value > 0 ? (props.stats.running_count / total.value) * 100 : 100, | |
| color: 'bg-wp-state-info-100', | |
| }, | |
| { | |
| key: 'pending_count', | |
| label: t('admin.settings.queue.stats.pending_count'), | |
| value: props.stats.pending_count, | |
| percentage: total.value > 0 ? (props.stats.pending_count / total.value) * 100 : 0, | |
| color: 'bg-wp-state-neutral-100', | |
| }, | |
| { | |
| key: 'waiting_on_deps_count', | |
| label: t('admin.settings.queue.stats.waiting_on_deps_count'), | |
| value: props.stats.waiting_on_deps_count, | |
| percentage: total.value > 0 ? (props.stats.waiting_on_deps_count / total.value) * 100 : 0, | |
| color: 'bg-wp-error-100 dark:bg-wp-error-200', | |
| }, | |
| ]; | |
| }); | |
| </script> | |