Files
temetro/frontend/components/appointments/appointments-view.tsx
T
Khalid Abdi 49c39bd853 Tasks/notes/prescriptions/appointments/patients UX fixes
- Task dialog: rename Title→Subject, add a "Details" textarea (notes),
  widen to sm:max-w-lg.
- Tasks & Notes: replace split-panes with full-width lists that open a
  right-side Sheet on click (TaskDetailSheet, NoteDetailSheet), mirroring
  the Patients table → detail Sheet pattern.
- Prescriptions: rows are now clickable and open PrescriptionDetailSheet
  with the full Rx details (incl. duration + notes).
- New prescription dialog: Duration is a dropdown of presets with an
  "Other" → custom input, plus a Notes textarea; NewPrescription gains
  notes and threads duration/notes through to the list.
- Appointments: header search filtering by patient/type/provider,
  grouped by date, with an empty state.
- Patients: pressing Enter in the search box opens the top match's record.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-06 18:59:19 +03:00

412 lines
11 KiB
TypeScript

"use client";
import {
CalendarClock,
CalendarDays,
Clock,
Plus,
Search,
Stethoscope,
Users,
} from "lucide-react";
import { type ReactNode, useMemo, useState } from "react";
import {
AddAppointmentDialog,
type NewAppointment,
} from "@/components/appointments/add-appointment-dialog";
import { CalendarDialog } from "@/components/appointments/calendar-dialog";
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Card } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
// All figures here are mock/placeholder data — there is no scheduling backend.
// They illustrate the Appointments & Schedule layout.
// Anchor "today" to a fixed date so the mock copy ("Wednesday, June 5") lines up
// across the page, the calendar dialog, and the add dialog. ISO YYYY-MM-DD.
export const TODAY = "2026-06-05";
type ApptStatus = "confirmed" | "checked-in" | "completed" | "cancelled";
export type Appointment = {
date: string; // ISO YYYY-MM-DD
time: string;
name: string;
initials: string;
type: string;
provider: string;
status: ApptStatus;
};
const statusVariant: Record<
ApptStatus,
"default" | "secondary" | "destructive" | "outline"
> = {
"checked-in": "default",
confirmed: "secondary",
completed: "outline",
cancelled: "destructive",
};
const statusLabel: Record<ApptStatus, string> = {
"checked-in": "Checked in",
confirmed: "Confirmed",
completed: "Completed",
cancelled: "Cancelled",
};
const kpis = [
{ label: "Today", value: "12", icon: CalendarClock },
{ label: "This week", value: "146", icon: Users },
{ label: "Avg. visit", value: "22 min", icon: Clock },
{ label: "Utilization", value: "87%", icon: Stethoscope },
];
// Mock schedule spread across June 2026 so the month calendar looks populated.
const seed: Appointment[] = [
{
date: TODAY,
time: "09:00",
name: "Amina Yusuf",
initials: "AY",
type: "Follow-up",
provider: "Dr. Okafor",
status: "completed",
},
{
date: TODAY,
time: "09:30",
name: "Daniel Mensah",
initials: "DM",
type: "New patient",
provider: "Dr. Okafor",
status: "checked-in",
},
{
date: TODAY,
time: "10:15",
name: "Leila Haddad",
initials: "LH",
type: "Lab review",
provider: "Dr. Stein",
status: "confirmed",
},
{
date: TODAY,
time: "11:00",
name: "Carlos Rivera",
initials: "CR",
type: "Consultation",
provider: "Dr. Okafor",
status: "confirmed",
},
{
date: TODAY,
time: "13:30",
name: "Priya Nair",
initials: "PN",
type: "Follow-up",
provider: "Dr. Stein",
status: "cancelled",
},
{
date: TODAY,
time: "14:45",
name: "Tom Becker",
initials: "TB",
type: "Vaccination",
provider: "Dr. Okafor",
status: "confirmed",
},
{
date: "2026-06-06",
time: "08:45",
name: "Grace Lin",
initials: "GL",
type: "Follow-up",
provider: "Dr. Stein",
status: "confirmed",
},
{
date: "2026-06-06",
time: "10:00",
name: "Omar Farouk",
initials: "OF",
type: "New patient",
provider: "Dr. Okafor",
status: "confirmed",
},
{
date: "2026-06-09",
time: "11:30",
name: "Sofia Marin",
initials: "SM",
type: "Consultation",
provider: "Dr. Stein",
status: "confirmed",
},
{
date: "2026-06-12",
time: "15:00",
name: "Henry Adeyemi",
initials: "HA",
type: "Lab review",
provider: "Dr. Okafor",
status: "confirmed",
},
{
date: "2026-06-18",
time: "09:15",
name: "Nadia Petrova",
initials: "NP",
type: "Follow-up",
provider: "Dr. Stein",
status: "confirmed",
},
];
// "2026-06-05" -> "Wednesday, June 5"
function formatDayKey(key: string): string {
return new Date(`${key}T00:00:00`).toLocaleDateString("en-US", {
weekday: "long",
month: "long",
day: "numeric",
});
}
function byTime(a: Appointment, b: Appointment) {
return a.time.localeCompare(b.time);
}
function Kpi({
label,
value,
icon: Icon,
}: {
label: string;
value: string;
icon: typeof CalendarClock;
}) {
return (
<Card className="flex-row items-center gap-3 p-4">
<div className="flex size-9 items-center justify-center rounded-lg border bg-background text-muted-foreground">
<Icon className="size-4" />
</div>
<div className="flex flex-col">
<span className="text-muted-foreground text-xs">{label}</span>
<span className="font-semibold text-foreground text-lg tracking-tight">
{value}
</span>
</div>
</Card>
);
}
function ApptRow({ appt }: { appt: Appointment }) {
return (
<div className="flex items-center gap-3 px-4 py-3">
<span className="w-12 shrink-0 font-medium text-foreground text-sm tabular-nums">
{appt.time}
</span>
<Avatar className="size-8">
<AvatarFallback>{appt.initials}</AvatarFallback>
</Avatar>
<div className="flex min-w-0 flex-1 flex-col">
<span className="truncate font-medium text-foreground text-sm">
{appt.name}
</span>
<span className="truncate text-muted-foreground text-xs">
{appt.type} · {appt.provider}
</span>
</div>
<Badge variant={statusVariant[appt.status]}>{statusLabel[appt.status]}</Badge>
</div>
);
}
export function ScheduleList({ items }: { items: Appointment[] }) {
return (
<div className="divide-y divide-border overflow-hidden rounded-2xl border bg-card/30">
{items.map((appt) => (
<ApptRow appt={appt} key={appt.time + appt.name} />
))}
</div>
);
}
function Section({
title,
description,
children,
}: {
title: string;
description?: string;
children: ReactNode;
}) {
return (
<section className="flex flex-col gap-3">
<div>
<h2 className="font-semibold text-lg tracking-tight">{title}</h2>
{description && (
<p className="text-muted-foreground text-sm">{description}</p>
)}
</div>
{children}
</section>
);
}
export function AppointmentsView() {
const [addOpen, setAddOpen] = useState(false);
const [calendarOpen, setCalendarOpen] = useState(false);
const [appointments, setAppointments] = useState<Appointment[]>(seed);
const [query, setQuery] = useState("");
// Insert a new (mock) appointment at the date/time chosen in the dialog.
const addAppointment = (appt: NewAppointment) => {
setAppointments((prev) => [
...prev,
{
date: appt.date,
time: appt.time,
name: appt.name,
initials: appt.initials,
type: appt.type,
provider: appt.provider,
status: "confirmed" as const,
},
]);
};
const todayItems = useMemo(
() => appointments.filter((a) => a.date === TODAY).sort(byTime),
[appointments],
);
// Group future dates (after TODAY) into day sections, soonest first.
const upcoming = useMemo(() => {
const keys = [
...new Set(appointments.map((a) => a.date).filter((d) => d > TODAY)),
].sort();
return keys.map((key) => ({
key,
items: appointments.filter((a) => a.date === key).sort(byTime),
}));
}, [appointments]);
const search = query.trim().toLowerCase();
// While searching, match name/type/provider across every date and group the
// hits by date (soonest first) so each section keeps its day header.
const results = useMemo(() => {
if (!search) return [];
const hits = appointments.filter(
(a) =>
a.name.toLowerCase().includes(search) ||
a.type.toLowerCase().includes(search) ||
a.provider.toLowerCase().includes(search),
);
const keys = [...new Set(hits.map((a) => a.date))].sort();
return keys.map((key) => ({
key,
items: hits.filter((a) => a.date === key).sort(byTime),
}));
}, [appointments, search]);
return (
<div className="mx-auto flex w-full max-w-5xl flex-col gap-10 px-6 py-10">
<div className="flex flex-col gap-4 sm:flex-row sm:items-start sm:justify-between">
<div>
<h1 className="font-semibold text-2xl tracking-tight">
Appointments &amp; Schedule
</h1>
<p className="text-muted-foreground text-sm">
Today&apos;s clinic schedule and what&apos;s coming up. Sample data.
</p>
</div>
<div className="flex items-center gap-2">
<div className="relative">
<Search className="-translate-y-1/2 absolute top-1/2 left-3 size-4 text-muted-foreground" />
<Input
className="w-full pl-9 sm:w-64"
onChange={(event) => setQuery(event.target.value)}
placeholder="Search patient, type, provider"
value={query}
/>
</div>
<Button
className="rounded-3xl"
onClick={() => setCalendarOpen(true)}
type="button"
variant="outline"
>
<CalendarDays className="size-4" />
Calendar
</Button>
<Button
className="rounded-3xl"
onClick={() => setAddOpen(true)}
type="button"
>
<Plus className="size-4" />
Add
</Button>
</div>
</div>
{search ? (
results.length > 0 ? (
results.map((group) => (
<Section key={group.key} title={formatDayKey(group.key)}>
<ScheduleList items={group.items} />
</Section>
))
) : (
<p className="rounded-2xl border border-dashed bg-card/20 px-4 py-8 text-center text-muted-foreground text-sm">
No matching appointments.
</p>
)
) : (
<>
<div className="grid grid-cols-2 gap-4 lg:grid-cols-4">
{kpis.map((k) => (
<Kpi key={k.label} {...k} />
))}
</div>
<Section description={formatDayKey(TODAY)} title="Today">
{todayItems.length > 0 ? (
<ScheduleList items={todayItems} />
) : (
<p className="rounded-2xl border border-dashed bg-card/20 px-4 py-8 text-center text-muted-foreground text-sm">
Nothing scheduled today.
</p>
)}
</Section>
{upcoming.map((group) => (
<Section key={group.key} title={formatDayKey(group.key)}>
<ScheduleList items={group.items} />
</Section>
))}
</>
)}
<AddAppointmentDialog
onAdd={addAppointment}
onOpenChange={setAddOpen}
open={addOpen}
/>
<CalendarDialog
appointments={appointments}
onOpenChange={setCalendarOpen}
open={calendarOpen}
/>
</div>
);
}