feat: add status workflow to MC and Open Day bookings, refactor into separate files

- DB migration v12: add status column to mc_registrations and open_day_bookings
- MC and Open Day tabs now have full status workflow (new → contacted → confirmed/declined)
- Filter tabs with counts, status badges, action buttons matching group bookings
- Extract shared components (_shared.tsx): FilterTabs, StatusBadge, StatusActions, BookingCard, ContactLinks
- Split monolith into _McRegistrationsTab.tsx, _OpenDayBookingsTab.tsx, _shared.tsx

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-23 19:05:44 +03:00
parent 575c684cc5
commit b906216317
7 changed files with 501 additions and 294 deletions
+12 -1
View File
@@ -1,5 +1,5 @@
import { NextRequest, NextResponse } from "next/server";
import { getMcRegistrations, getAllMcRegistrations, addMcRegistration, updateMcRegistration, toggleMcNotification, deleteMcRegistration } from "@/lib/db";
import { getMcRegistrations, getAllMcRegistrations, addMcRegistration, updateMcRegistration, toggleMcNotification, deleteMcRegistration, setMcRegistrationStatus } from "@/lib/db";
export async function GET(request: NextRequest) {
const title = request.nextUrl.searchParams.get("title");
@@ -29,6 +29,17 @@ export async function PUT(request: NextRequest) {
try {
const body = await request.json();
// Set booking status
if (body.action === "set-status") {
const { id, status } = body;
if (!id || !status) return NextResponse.json({ error: "id, status required" }, { status: 400 });
if (!["new", "contacted", "confirmed", "declined"].includes(status)) {
return NextResponse.json({ error: "Invalid status" }, { status: 400 });
}
setMcRegistrationStatus(id, status);
return NextResponse.json({ ok: true });
}
// Toggle notification status
if (body.action === "toggle-notify") {
const { id, field, value } = body;