Role guard was hse-only — admin was redirected to inbox on click. Both triage and investigation now accept hse or admin. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CPf5Rc8QPx6V8KLEEgfKEQ
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
export const dynamic = 'force-dynamic'
|
|
|
|
import { notFound, redirect } from 'next/navigation'
|
|
import Link from 'next/link'
|
|
import { createClient } from '@/lib/supabase/server'
|
|
import { InvestigationForm } from '@/components/incidents/investigation-form'
|
|
|
|
interface Props {
|
|
params: Promise<{ id: string }>
|
|
}
|
|
|
|
export default async function InvestigationPage({ params }: Props) {
|
|
const { id } = await params
|
|
const supabase = await createClient()
|
|
|
|
const { data, error: authError } = await supabase.auth.getUser()
|
|
if (authError || !data?.user) redirect(`/login?redirect=/hse/incidents/${id}/investigation`)
|
|
|
|
const { data: profile } = await supabase
|
|
.from('users').select('role').eq('id', data.user.id).single()
|
|
if (!profile || !['hse', 'admin'].includes(profile.role)) redirect('/hse/incidents')
|
|
|
|
const { data: incident } = await supabase
|
|
.from('incidents')
|
|
.select('id, reference_no, status')
|
|
.eq('id', id)
|
|
.single()
|
|
|
|
if (!incident) notFound()
|
|
if (!['triaged', 'investigating'].includes((incident as { status: string }).status))
|
|
redirect(`/hse/incidents/${id}`)
|
|
|
|
const { data: existing } = await supabase
|
|
.from('investigations')
|
|
.select('id')
|
|
.eq('incident_id', id)
|
|
.order('created_at', { ascending: false })
|
|
.limit(1)
|
|
.maybeSingle()
|
|
|
|
return (
|
|
<main className="max-w-2xl mx-auto px-4 py-6">
|
|
<Link href={`/hse/incidents/${id}`} className="text-sm text-blue-600 hover:underline mb-4 inline-block">
|
|
← Back to incident
|
|
</Link>
|
|
<h1 className="text-xl font-bold text-gray-900 mb-1">Investigation Workspace</h1>
|
|
<p className="text-sm text-gray-500 mb-6">{(incident as { reference_no: string | null }).reference_no ?? id}</p>
|
|
<InvestigationForm
|
|
incidentId={id}
|
|
existingInvestigationId={(existing as { id: string } | null)?.id ?? null}
|
|
/>
|
|
</main>
|
|
)
|
|
}
|