Dental Care
This commit is contained in:
57
app/(main)/dentist/appointments/page.tsx
Normal file
57
app/(main)/dentist/appointments/page.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
import { DashboardLayout } from "@/components/layout/dashboard-layout";
|
||||
import { DentistAppointmentsList } from "@/components/dentist/appointments-list";
|
||||
import { requireDentist } from "@/lib/auth-session/auth-server";
|
||||
import { safeFindManyAppointments } from "@/lib/utils/appointment-helpers";
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Appointments - Dentist",
|
||||
};
|
||||
|
||||
// Force dynamic rendering since this page uses authentication (headers)
|
||||
export const dynamic = "force-dynamic";
|
||||
|
||||
export default async function DentistAppointmentsPage() {
|
||||
const { user } = await requireDentist();
|
||||
|
||||
const appointmentsData = await safeFindManyAppointments({
|
||||
take: 100, // Limit to 100 most recent appointments
|
||||
where: {
|
||||
dentistId: user.id,
|
||||
},
|
||||
include: {
|
||||
patient: true,
|
||||
service: true,
|
||||
payment: true,
|
||||
},
|
||||
orderBy: {
|
||||
date: "desc",
|
||||
},
|
||||
});
|
||||
|
||||
const appointments = appointmentsData.map((appointment) => ({
|
||||
...appointment,
|
||||
service: {
|
||||
...appointment.service,
|
||||
price: parseFloat(appointment.service.price),
|
||||
},
|
||||
}));
|
||||
|
||||
return (
|
||||
<DashboardLayout
|
||||
user={{ ...user, role: user.role || "dentist" }}
|
||||
role="dentist"
|
||||
>
|
||||
<div className="flex flex-col gap-4 py-4 md:gap-6 md:py-6 px-4 lg:px-6">
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold">Appointments</h1>
|
||||
<p className="text-muted-foreground">
|
||||
Manage your patient appointments
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<DentistAppointmentsList appointments={appointments} />
|
||||
</div>
|
||||
</DashboardLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user