mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
73 lines
2.9 KiB
Vue
73 lines
2.9 KiB
Vue
<script lang="ts" setup>
|
|
|
|
const props = defineProps<{
|
|
icon: string,
|
|
value: string,
|
|
text: string,
|
|
avg?: string,
|
|
trend?: number,
|
|
color: string,
|
|
data?: number[],
|
|
labels?: string[],
|
|
ready?: boolean,
|
|
slow?: boolean,
|
|
todayIndex: number
|
|
}>();
|
|
|
|
const { snapshotDuration } = useSnapshot()
|
|
|
|
const uTooltipText = computed(() => {
|
|
const duration = snapshotDuration.value;
|
|
if (!duration) return '';
|
|
if (duration > 25) return 'Monthly trend';
|
|
if (duration > 7) return 'Weekly trend';
|
|
return 'Daily trend';
|
|
})
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<LyxUiCard class="flex !p-0 flex-col overflow-hidden relative max-h-[12rem] aspect-[2/1] w-full">
|
|
<div v-if="ready" class="flex p-4 items-start">
|
|
<div class="flex items-center mt-2 mr-4">
|
|
<i :style="`color: ${props.color}`" :class="icon" class="text-[1.3rem] 2xl:text-[1.5rem]"></i>
|
|
</div>
|
|
<div class="flex flex-col grow">
|
|
<div class="flex items-center gap-2">
|
|
<div class="brockmann text-text-dirty text-[1.2rem] 2xl:text-[1.4rem]">
|
|
{{ value }}
|
|
</div>
|
|
<div class="poppins text-text-sub text-[.65rem] 2xl:text-[.8rem]"> {{ avg }} </div>
|
|
</div>
|
|
<div class="poppins text-text-sub text-[.9rem] 2xl:text-[1rem]"> {{ text }} </div>
|
|
</div>
|
|
<div v-if="trend" class="flex flex-col items-center gap-1">
|
|
<UTooltip :text="uTooltipText">
|
|
<div class="flex items-center gap-3 rounded-md px-2 py-1"
|
|
:style="`background-color: ${props.color}33`">
|
|
<i :class="trend > 0 ? 'fa-arrow-trend-up' : 'fa-arrow-trend-down'"
|
|
class="far text-[.9rem] 2xl:text-[1rem]" :style="`color: ${props.color}`"></i>
|
|
<div :style="`color: ${props.color}`" class="font-semibold text-[.75rem] 2xl:text-[.875rem]">
|
|
{{ trend.toFixed(0) }} %
|
|
</div>
|
|
</div>
|
|
</UTooltip>
|
|
<!-- <div class="poppins text-text-sub text-[.7rem]"> Trend </div> -->
|
|
</div>
|
|
|
|
</div>
|
|
<div class="absolute bottom-0 left-0 w-full h-[50%] flex items-end"
|
|
v-if="((props.data?.length || 0) > 0) && ready">
|
|
<DashboardEmbedChartCard v-if="ready" :todayIndex="todayIndex" :data="props.data || []" :labels="props.labels || []"
|
|
:color="props.color">
|
|
</DashboardEmbedChartCard>
|
|
</div>
|
|
<div v-if="!ready" class="flex justify-center items-center w-full h-full flex-col gap-2">
|
|
<i class="fas fa-spinner text-[2rem] text-accent animate-[spin_1s_linear_infinite] duration-500"></i>
|
|
<div v-if="props.slow"> Can be very slow on large snapshots </div>
|
|
</div>
|
|
</LyxUiCard>
|
|
|
|
|
|
</template> |