mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-07-09 03:16:01 +00:00
25 lines
926 B
TypeScript
25 lines
926 B
TypeScript
import { connection } from "next/server";
|
|
import { InstallmentAnalysisPage } from "@/features/dashboard/components/installment-analysis/installment-analysis-page";
|
|
import { fetchInstallmentAnalysis } from "@/features/dashboard/expenses/installment-analysis-queries";
|
|
import { LogoPrefetchProvider } from "@/shared/components/entity-avatar";
|
|
import { getUser } from "@/shared/lib/auth/server";
|
|
import { prefetchLogoMappings } from "@/shared/lib/logo/prefetch-server";
|
|
|
|
export default async function Page() {
|
|
await connection();
|
|
const user = await getUser();
|
|
const data = await fetchInstallmentAnalysis(user.id);
|
|
const logoMappings = await prefetchLogoMappings(
|
|
user.id,
|
|
data.installmentGroups.map((group) => group.name),
|
|
);
|
|
|
|
return (
|
|
<main className="flex flex-col gap-4 pb-8">
|
|
<LogoPrefetchProvider mappings={logoMappings}>
|
|
<InstallmentAnalysisPage data={data} />
|
|
</LogoPrefetchProvider>
|
|
</main>
|
|
);
|
|
}
|