mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-09-08 05:26:00 +00:00
93 lines
3.2 KiB
TypeScript
93 lines
3.2 KiB
TypeScript
import { RiBankCard2Line } from "@remixicon/react";
|
|
import { connection } from "next/server";
|
|
import { CardCategoryBreakdown } from "@/features/reports/components/cards/card-category-breakdown";
|
|
import { CardInvoiceStatus } from "@/features/reports/components/cards/card-invoice-status";
|
|
import { CardTopExpenses } from "@/features/reports/components/cards/card-top-expenses";
|
|
import { CardUsageChart } from "@/features/reports/components/cards/card-usage-chart";
|
|
import { CardsOverview } from "@/features/reports/components/cards/cards-overview";
|
|
import { fetchCartoesReportData } from "@/features/reports/lib/cards-report-queries";
|
|
import { ContentErrorBoundary } from "@/shared/components/feedback/content-error-boundary";
|
|
import MonthNavigation from "@/shared/components/month-picker/month-navigation";
|
|
import { Card } from "@/shared/components/ui/card";
|
|
import { getUser } from "@/shared/lib/auth/server";
|
|
import { parsePeriodParam } from "@/shared/utils/period";
|
|
|
|
type PageSearchParams = Promise<Record<string, string | string[] | undefined>>;
|
|
|
|
type PageProps = {
|
|
searchParams?: PageSearchParams;
|
|
};
|
|
|
|
const getSingleParam = (
|
|
params: Record<string, string | string[] | undefined> | undefined,
|
|
key: string,
|
|
) => {
|
|
const value = params?.[key];
|
|
if (!value) return null;
|
|
return Array.isArray(value) ? (value[0] ?? null) : value;
|
|
};
|
|
|
|
export default function CardUsagePage({ searchParams }: PageProps) {
|
|
return (
|
|
<ContentErrorBoundary
|
|
title="Não foi possível carregar o uso dos cartões"
|
|
description="Os dados deste relatório não puderam ser carregados agora."
|
|
>
|
|
<CardUsageContent searchParams={searchParams} />
|
|
</ContentErrorBoundary>
|
|
);
|
|
}
|
|
|
|
async function CardUsageContent({ searchParams }: PageProps) {
|
|
await connection();
|
|
const user = await getUser();
|
|
const resolvedSearchParams = searchParams ? await searchParams : undefined;
|
|
const periodoParam = getSingleParam(resolvedSearchParams, "periodo");
|
|
const cartaoParam = getSingleParam(resolvedSearchParams, "cartao");
|
|
const { period: selectedPeriod } = parsePeriodParam(periodoParam);
|
|
|
|
const data = await fetchCartoesReportData(
|
|
user.id,
|
|
selectedPeriod,
|
|
cartaoParam,
|
|
);
|
|
|
|
return (
|
|
<main className="flex flex-col gap-4">
|
|
<MonthNavigation />
|
|
|
|
<CardsOverview data={data} />
|
|
|
|
{data.selectedCard ? (
|
|
<>
|
|
<CardUsageChart
|
|
data={data.selectedCard.monthlyUsage}
|
|
limit={data.selectedCard.card.limit}
|
|
card={{
|
|
name: data.selectedCard.card.name,
|
|
logo: data.selectedCard.card.logo,
|
|
}}
|
|
/>
|
|
|
|
<CardInvoiceStatus data={data.selectedCard.invoiceStatus} />
|
|
|
|
<div className="grid gap-4 md:grid-cols-2">
|
|
<CardCategoryBreakdown data={data.selectedCard.categoryBreakdown} />
|
|
<CardTopExpenses data={data.selectedCard.topExpenses} />
|
|
</div>
|
|
</>
|
|
) : (
|
|
<Card className="flex flex-col items-center justify-center py-16 text-center">
|
|
<div className="flex size-14 items-center justify-center rounded-full bg-muted mb-4">
|
|
<RiBankCard2Line className="size-7 text-muted-foreground" />
|
|
</div>
|
|
<p className="text-base font-semibold">Nenhum cartão selecionado</p>
|
|
<p className="text-sm text-muted-foreground mt-1">
|
|
Selecione um cartão para ver os detalhes de uso.
|
|
</p>
|
|
</Card>
|
|
)}
|
|
</main>
|
|
);
|
|
}
|