Files
ims/components/incidents/similar-incidents-panel.tsx
T
adminandClaude Fable 5 576557181a feat: Phase 5 & 6 — usability, compliance hardening, analytics
Phase 5 (usability + compliance):
- In-app notification bell/badge: migration 016 adds read state + per-user
  RLS + create_in_app_notification SECURITY DEFINER RPC; /api/notifications;
  wired into incident creation, CAPA assign/verify, escalation cron
- Incident closure: new POST /api/incidents/[id]/close (requires verification
  status + all CAPAs verified); migration 017 locks closed incidents at DB
  level (update/delete triggers) with append-only incident_addenda + UI panel
- Server-side pagination on HSE/supervisor incident inboxes (.range, 25/page)
- Investigation form: alcohol/urine test result + witness statement refs
  (existing schema columns, now editable)
- Type-specific intake fields: migration 018 adds incidents.type_details
  JSONB; whitelist validation; environmental/asset/security/fire field
  groups in report form; EN/MS/ZH labels; offline queue support
- JKKP 8 annual register CSV export (/api/reports/jkkp8) + dashboard button
  + January statutory deadline banner
- Admin page: user invite (service-role client), role/site/active management,
  site + zone CRUD with QR report links — replaces Phase 0 stub
- Evidence gallery thumbnails via Supabase render transform with fallback

Phase 6 (analytics):
- 12-month stacked trend chart (leading/lagging/other) + top root causes
  (lib/dashboard/trends.ts pure helpers)
- AI rising-risk zones: /api/dashboard/ai/risk-flags aggregates 90-day
  zone stats, claude-opus-4-8 forced tool_use, panel on HSE + management
  dashboards, suggestion audit-logged

Also fixes 9 pre-existing missing /ims basePath prefixes in client fetches
and download links.

132 tests passing, tsc clean, next build clean.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CPf5Rc8QPx6V8KLEEgfKEQ
2026-07-12 10:25:08 +08:00

80 lines
2.3 KiB
TypeScript

'use client'
import { useEffect, useState } from 'react'
type SimilarIncident = {
id: string
reference_no: string | null
incident_type: string
description: string
severity: number | null
similarity: number
}
const TYPE_LABELS: Record<string, string> = {
injury: 'Injury',
near_miss: 'Near Miss',
hazard: 'Hazard',
asset_damage: 'Asset Damage',
environmental: 'Environmental',
security: 'Security',
fire: 'Fire',
}
interface Props {
incidentId: string
}
export function SimilarIncidentsPanel({ incidentId }: Props) {
const [similar, setSimilar] = useState<SimilarIncident[]>([])
const [loading, setLoading] = useState(true)
const [error, setError] = useState(false)
useEffect(() => {
fetch(`/ims/api/incidents/${incidentId}/similar`)
.then(r => {
if (!r.ok) throw new Error('failed')
return r.json()
})
.then(data => setSimilar(Array.isArray(data) ? data : []))
.catch(() => setError(true))
.finally(() => setLoading(false))
}, [incidentId])
if (loading) {
return (
<div className="mt-6 bg-white rounded-xl shadow-sm p-5">
<p className="text-sm text-gray-400">Loading similar incidents</p>
</div>
)
}
if (error || similar.length === 0) return null
return (
<div className="mt-6 bg-white rounded-xl shadow-sm p-5">
<h2 className="text-sm font-semibold text-gray-700 uppercase tracking-wide mb-3">
Similar Past Incidents
</h2>
<div className="space-y-3">
{similar.map(inc => (
<a
key={inc.id}
href={`/hse/incidents/${inc.id}`}
className="block border border-gray-200 rounded-lg p-3 hover:border-blue-300 hover:bg-blue-50 transition-colors"
>
<div className="flex items-center justify-between mb-1">
<span className="text-xs font-medium text-gray-500">
{inc.reference_no ?? inc.id.slice(0, 8)} · {TYPE_LABELS[inc.incident_type] ?? inc.incident_type}
</span>
<span className="text-xs text-gray-400 tabular-nums">
{Math.round(inc.similarity * 100)}% similar
</span>
</div>
<p className="text-sm text-gray-700 line-clamp-2">{inc.description}</p>
</a>
))}
</div>
</div>
)
}