mirror of
https://github.com/temetro/temetro.git
synced 2026-09-04 06:45:26 +00:00
9588d16869
Round-2 fixes to the 6 features: - Logo: enlarge the sidebar mark, drop the inline wordmark, and show "temetro" via a hover tooltip; bigger logo on the auth screens. - Sidebar footer: wrap the quick-nav, clinic switcher, and user menu in a single bordered block so it reads as one footer instead of three cards. - Sidebar nav: highlight the active page (usePathname + data-[active]), and add an Appointments & Schedule sub-page under Patients that auto-expands for the current section. New mock /appointments page; reachable via ⌘K. - Notes: redesign to a two-pane list + editor with an Empty state on the right when nothing is selected; fix the editor so text starts top-left (div instead of a centering <button>); compact the toolbar; add .note-content typography in globals.css so headings/lists/etc. actually render (the app has no typography plugin). - Patients: new PatientDetail laid out to fit the side Sheet (stacked full-width sections, no nested click-to-expand dialogs); keep Edit. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
231 lines
5.5 KiB
TypeScript
231 lines
5.5 KiB
TypeScript
"use client";
|
|
|
|
import { CalendarClock, Clock, Stethoscope, Users } from "lucide-react";
|
|
import type { ReactNode } from "react";
|
|
|
|
import { Avatar, AvatarFallback } from "@/components/ui/avatar";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Card } from "@/components/ui/card";
|
|
|
|
// All figures here are mock/placeholder data — there is no scheduling backend.
|
|
// They illustrate the Appointments & Schedule layout.
|
|
|
|
type ApptStatus = "confirmed" | "checked-in" | "completed" | "cancelled";
|
|
|
|
type Appointment = {
|
|
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 },
|
|
];
|
|
|
|
const today: Appointment[] = [
|
|
{
|
|
time: "09:00",
|
|
name: "Amina Yusuf",
|
|
initials: "AY",
|
|
type: "Follow-up",
|
|
provider: "Dr. Okafor",
|
|
status: "completed",
|
|
},
|
|
{
|
|
time: "09:30",
|
|
name: "Daniel Mensah",
|
|
initials: "DM",
|
|
type: "New patient",
|
|
provider: "Dr. Okafor",
|
|
status: "checked-in",
|
|
},
|
|
{
|
|
time: "10:15",
|
|
name: "Leila Haddad",
|
|
initials: "LH",
|
|
type: "Lab review",
|
|
provider: "Dr. Stein",
|
|
status: "confirmed",
|
|
},
|
|
{
|
|
time: "11:00",
|
|
name: "Carlos Rivera",
|
|
initials: "CR",
|
|
type: "Consultation",
|
|
provider: "Dr. Okafor",
|
|
status: "confirmed",
|
|
},
|
|
{
|
|
time: "13:30",
|
|
name: "Priya Nair",
|
|
initials: "PN",
|
|
type: "Follow-up",
|
|
provider: "Dr. Stein",
|
|
status: "cancelled",
|
|
},
|
|
{
|
|
time: "14:45",
|
|
name: "Tom Becker",
|
|
initials: "TB",
|
|
type: "Vaccination",
|
|
provider: "Dr. Okafor",
|
|
status: "confirmed",
|
|
},
|
|
];
|
|
|
|
const upcoming: { day: string; items: Appointment[] }[] = [
|
|
{
|
|
day: "Tomorrow",
|
|
items: [
|
|
{
|
|
time: "08:45",
|
|
name: "Grace Lin",
|
|
initials: "GL",
|
|
type: "Follow-up",
|
|
provider: "Dr. Stein",
|
|
status: "confirmed",
|
|
},
|
|
{
|
|
time: "10:00",
|
|
name: "Omar Farouk",
|
|
initials: "OF",
|
|
type: "New patient",
|
|
provider: "Dr. Okafor",
|
|
status: "confirmed",
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
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>
|
|
);
|
|
}
|
|
|
|
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() {
|
|
return (
|
|
<div className="mx-auto flex w-full max-w-5xl flex-col gap-10 px-6 py-10">
|
|
<div>
|
|
<h1 className="font-semibold text-2xl tracking-tight">
|
|
Appointments & Schedule
|
|
</h1>
|
|
<p className="text-muted-foreground text-sm">
|
|
Today's clinic schedule and what's coming up. Sample data.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 gap-4 lg:grid-cols-4">
|
|
{kpis.map((k) => (
|
|
<Kpi key={k.label} {...k} />
|
|
))}
|
|
</div>
|
|
|
|
<Section description="Wednesday, June 5" title="Today">
|
|
<ScheduleList items={today} />
|
|
</Section>
|
|
|
|
{upcoming.map((group) => (
|
|
<Section key={group.day} title={group.day}>
|
|
<ScheduleList items={group.items} />
|
|
</Section>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|