mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
1cf33ddb3f
interface
37 lines
1.2 KiB
Vue
37 lines
1.2 KiB
Vue
<script setup lang="ts">
|
|
import DayOverviewCardChart from '@/Components/Dashboard/DayOverviewCardChart.vue';
|
|
import { formatHumanReadableDate, formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
|
|
import { inject, type ComputedRef } from 'vue';
|
|
import type { Organization } from '@/packages/api/src';
|
|
|
|
const organization = inject<ComputedRef<Organization>>('organization');
|
|
|
|
defineProps<{
|
|
date: string;
|
|
duration: number;
|
|
history: number[];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="px-3.5 py-2 flex justify-between @container">
|
|
<div class="flex items-center min-w-[70px]">
|
|
<p class="text-sm text-text-primary">
|
|
{{ formatHumanReadableDate(date) }}
|
|
</p>
|
|
</div>
|
|
<div class="items-center justify-center flex-1 hidden @2xs:flex">
|
|
<DayOverviewCardChart :history="history"></DayOverviewCardChart>
|
|
</div>
|
|
<div class="flex text-sm items-center justify-center text-text-primary min-w-[65px]">
|
|
{{
|
|
formatHumanReadableDuration(
|
|
duration,
|
|
organization?.interval_format,
|
|
organization?.number_format
|
|
)
|
|
}}
|
|
</div>
|
|
</div>
|
|
</template>
|