mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
67 lines
2.1 KiB
Vue
67 lines
2.1 KiB
Vue
<script setup lang="ts">
|
|
import { formatHumanReadableDuration } from '@/packages/ui/src/utils/time';
|
|
import { formatCents } from '@/packages/ui/src/utils/money';
|
|
import GroupedItemsCountButton from '@/packages/ui/src/GroupedItemsCountButton.vue';
|
|
import { ref } from 'vue';
|
|
import { twMerge } from 'tailwind-merge';
|
|
import { getOrganizationCurrencyString } from '@/utils/money';
|
|
|
|
type AggregatedGroupedData = GroupedData & {
|
|
grouped_data?: GroupedData[] | null;
|
|
};
|
|
|
|
type GroupedData = {
|
|
seconds: number;
|
|
cost: number;
|
|
description: string | null | undefined;
|
|
};
|
|
|
|
const props = defineProps<{
|
|
entry: AggregatedGroupedData;
|
|
indent?: boolean;
|
|
}>();
|
|
|
|
const expanded = ref(false);
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="contents text-white [&>*]:transition [&>*]:border-card-background-separator [&>*]:border-b [&>*]:h-[50px]">
|
|
<div
|
|
:class="
|
|
twMerge(
|
|
'pl-6 font-medium flex items-center space-x-3',
|
|
props.indent ? 'pl-16' : ''
|
|
)
|
|
">
|
|
<GroupedItemsCountButton
|
|
v-if="entry.grouped_data && entry.grouped_data?.length > 0"
|
|
:expanded="expanded"
|
|
@click="expanded = !expanded">
|
|
{{ entry.grouped_data?.length }}
|
|
</GroupedItemsCountButton>
|
|
<span>
|
|
{{ entry.description }}
|
|
</span>
|
|
</div>
|
|
<div class="justify-end flex items-center">
|
|
{{ formatHumanReadableDuration(entry.seconds) }}
|
|
</div>
|
|
<div class="justify-end pr-6 flex items-center">
|
|
{{ formatCents(entry.cost, getOrganizationCurrencyString()) }}
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-if="expanded && entry.grouped_data"
|
|
class="col-span-3 grid bg-quaternary"
|
|
style="grid-template-columns: 1fr 150px 150px">
|
|
<ReportingRow
|
|
v-for="subEntry in entry.grouped_data"
|
|
:key="subEntry.description ?? 'none'"
|
|
indent
|
|
:entry="subEntry"></ReportingRow>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|