export const dynamic = 'force-dynamic' import { notFound, redirect } from 'next/navigation' import Link from 'next/link' import { asAdmin } from '@/lib/db/with-user' import { getSession } from '@/lib/auth/get-session' import { incidents } from '@/lib/db/schema' import { eq } from 'drizzle-orm' import { TriageForm } from '@/components/incidents/triage-form' interface Props { params: Promise<{ id: string }> } export default async function TriagePage({ params }: Props) { const { id } = await params const session = await getSession() if (!session) redirect(`/login?redirect=/hse/incidents/${id}/triage`) if (!['hse', 'admin'].includes(session.role)) redirect('/hse/incidents') const [incident] = await asAdmin(db => db.select({ id: incidents.id, referenceNo: incidents.referenceNo, status: incidents.status, severity: incidents.severity, }) .from(incidents) .where(eq(incidents.id, id)) .limit(1) ) if (!incident) notFound() if (incident.status !== 'reported') redirect(`/hse/incidents/${id}`) return (
← Back to incident

Triage Incident

{incident.referenceNo ?? id}

) }