Files
temetro/frontend/lib/appointments.ts
T
Khalid Abdi dec04ec506 feat: org-scoped appointments backend, wire appointments page
Add the appointments table, validation, service and CRUD routes
(/api/appointments, RBAC-gated) and the matching frontend data module.
The appointments page now loads and persists real data; KPIs are computed
from it and the schedule/calendar anchor to the real current date.

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

62 lines
1.4 KiB
TypeScript

import { apiFetch } from "@/lib/api-client";
// An appointment. Mirrors the backend `src/types/appointment.ts`. Scoped to the
// active clinic. `fileNumber` links back to a patient record when set.
export type AppointmentStatus =
| "confirmed"
| "checked-in"
| "completed"
| "cancelled";
export type Appointment = {
id: string;
fileNumber: string;
name: string;
initials: string;
date: string; // ISO YYYY-MM-DD
time: string; // HH:mm
type: string;
provider: string;
status: AppointmentStatus;
createdAt: string;
updatedAt: string;
};
export type AppointmentInput = {
fileNumber: string;
name: string;
initials: string;
date: string;
time: string;
type: string;
provider: string;
status?: AppointmentStatus;
};
export function listAppointments(): Promise<Appointment[]> {
return apiFetch<Appointment[]>("/api/appointments");
}
export function createAppointment(
input: AppointmentInput,
): Promise<Appointment> {
return apiFetch<Appointment>("/api/appointments", {
method: "POST",
body: JSON.stringify(input),
});
}
export function updateAppointment(
id: string,
input: AppointmentInput,
): Promise<Appointment> {
return apiFetch<Appointment>(`/api/appointments/${id}`, {
method: "PUT",
body: JSON.stringify(input),
});
}
export function deleteAppointment(id: string): Promise<void> {
return apiFetch<void>(`/api/appointments/${id}`, { method: "DELETE" });
}