mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { MonthlyCalendar } from "@/components/calendario/monthly-calendar";
|
|
import MonthNavigation from "@/components/month-picker/month-navigation";
|
|
import { getUserId } from "@/lib/auth/server";
|
|
import {
|
|
getSingleParam,
|
|
type ResolvedSearchParams,
|
|
} from "@/lib/lancamentos/page-helpers";
|
|
import type { CalendarPeriod } from "@/lib/types/calendario";
|
|
import { parsePeriodParam } from "@/lib/utils/period";
|
|
import { fetchCalendarData } from "./data";
|
|
|
|
type PageSearchParams = Promise<ResolvedSearchParams>;
|
|
|
|
type PageProps = {
|
|
searchParams?: PageSearchParams;
|
|
};
|
|
|
|
export default async function Page({ searchParams }: PageProps) {
|
|
const userId = await getUserId();
|
|
const resolvedParams = searchParams ? await searchParams : undefined;
|
|
|
|
const periodoParam = getSingleParam(resolvedParams, "periodo");
|
|
const { period, monthName, year } = parsePeriodParam(periodoParam);
|
|
|
|
const calendarData = await fetchCalendarData({
|
|
userId,
|
|
period,
|
|
});
|
|
|
|
const calendarPeriod: CalendarPeriod = {
|
|
period,
|
|
monthName,
|
|
year,
|
|
};
|
|
|
|
return (
|
|
<main className="flex flex-col gap-3">
|
|
<MonthNavigation />
|
|
<MonthlyCalendar
|
|
period={calendarPeriod}
|
|
events={calendarData.events}
|
|
formOptions={calendarData.formOptions}
|
|
/>
|
|
</main>
|
|
);
|
|
}
|