Epic 2 - Cliëntenbeheer: Complete implementation of patient list with search/filter functionality and comprehensive new patient form with John Doe crisis admission support. E2.S1 - Cliëntenlijst: - Add client-side search bar with form submission - Implement status filter dropdown (all/screening/active/finished/cancelled) - Create StatusBadge component with color-coded status indicators - Update table columns: Status, Name, BSN, Last Updated - Add status filtering support to FHIR Patient API route - Update FHIR patient transform to include episode-status extension - Sort patients by updated_at descending (newest first) E2.S2 - Nieuwe Cliënt Flow: - Complete rewrite of patient form with all FO-required fields - Implement John Doe checkbox with conditional BSN requirement - Add BSN validation with Dutch Modulo-11 check algorithm - Add comprehensive form fields: * Name fields: prefix, given name, family name * BSN with 9-digit pattern validation * Birth date with max date validation * Gender selection * Address: street, postal code, city * Contact: phone, email * Insurance: company, policy number - Add warning messages for John Doe crisis admissions - Set default episode status to 'planned' for all new patients - Redirect to patient detail page after successful creation - Update FHIR transform bidirectional insurance extension support: * dbPatientToFHIR: serialize insurance to JSON extension * fhirPatientToDB: parse insurance from JSON extension - Pre-populate form fields when editing existing patients Technical changes: - app/api/fhir/Patient/route.ts: Add status query param and sorting - app/epd/patients/actions.ts: Add status filter parameter - app/epd/patients/page.tsx: Pass status searchParam - app/epd/patients/components/patient-list.tsx: Complete UI rewrite - app/epd/patients/components/patient-form.tsx: Complete form rewrite - lib/fhir/transforms/patient.ts: Add insurance extension handling - docs/specs/screening-intake/bouwplan-screening-intake-v1.0.md: Update status 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
254 lines
10 KiB
TypeScript
254 lines
10 KiB
TypeScript
'use client';
|
|
|
|
/**
|
|
* Patient List Component
|
|
* E2.S1: Cliëntenlijst met zoekfunctie, filters en status badges
|
|
*/
|
|
|
|
import { useState } from 'react';
|
|
import Link from 'next/link';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import { User, Search, Filter } from 'lucide-react';
|
|
import type { FHIRPatient } from '@/lib/fhir';
|
|
|
|
interface PatientListProps {
|
|
initialPatients: FHIRPatient[];
|
|
}
|
|
|
|
// Status badge component
|
|
function StatusBadge({ status }: { status?: string }) {
|
|
const badges = {
|
|
planned: { label: 'Screening', className: 'bg-amber-100 text-amber-800 border-amber-200' },
|
|
active: { label: 'Actief', className: 'bg-emerald-100 text-emerald-800 border-emerald-200' },
|
|
finished: { label: 'Afgerond', className: 'bg-slate-100 text-slate-800 border-slate-200' },
|
|
cancelled: { label: 'Afgemeld', className: 'bg-red-100 text-red-800 border-red-200' },
|
|
};
|
|
|
|
const badge = status && status in badges ? badges[status as keyof typeof badges] : null;
|
|
|
|
if (!badge) {
|
|
return <span className="text-sm text-slate-400">-</span>;
|
|
}
|
|
|
|
return (
|
|
<span
|
|
className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium border ${badge.className}`}
|
|
>
|
|
{badge.label}
|
|
</span>
|
|
);
|
|
}
|
|
|
|
export function PatientList({ initialPatients }: PatientListProps) {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const [searchTerm, setSearchTerm] = useState(searchParams.get('search') || '');
|
|
const [statusFilter, setStatusFilter] = useState(searchParams.get('status') || 'all');
|
|
const [patients] = useState<FHIRPatient[]>(initialPatients);
|
|
|
|
// Handle search
|
|
const handleSearch = (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
const params = new URLSearchParams();
|
|
if (searchTerm) params.set('search', searchTerm);
|
|
if (statusFilter !== 'all') params.set('status', statusFilter);
|
|
router.push(`/epd/patients?${params.toString()}`);
|
|
};
|
|
|
|
// Handle status filter change
|
|
const handleStatusFilterChange = (newStatus: string) => {
|
|
setStatusFilter(newStatus);
|
|
const params = new URLSearchParams();
|
|
if (searchTerm) params.set('search', searchTerm);
|
|
if (newStatus !== 'all') params.set('status', newStatus);
|
|
router.push(`/epd/patients?${params.toString()}`);
|
|
};
|
|
|
|
if (patients.length === 0) {
|
|
return (
|
|
<div>
|
|
{/* Search and Filter Bar */}
|
|
<div className="mb-6 flex flex-col sm:flex-row gap-4">
|
|
{/* Search Bar */}
|
|
<form onSubmit={handleSearch} className="flex-1">
|
|
<div className="relative">
|
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-5 w-5 text-slate-400" />
|
|
<input
|
|
type="text"
|
|
placeholder="Zoek op naam of BSN..."
|
|
value={searchTerm}
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
className="w-full pl-10 pr-4 py-2 border border-slate-300 rounded-lg focus:ring-2 focus:ring-teal-500 focus:border-transparent"
|
|
/>
|
|
</div>
|
|
</form>
|
|
|
|
{/* Status Filter */}
|
|
<div className="relative">
|
|
<Filter className="absolute left-3 top-1/2 -translate-y-1/2 h-5 w-5 text-slate-400" />
|
|
<select
|
|
value={statusFilter}
|
|
onChange={(e) => handleStatusFilterChange(e.target.value)}
|
|
className="pl-10 pr-10 py-2 border border-slate-300 rounded-lg focus:ring-2 focus:ring-teal-500 focus:border-transparent appearance-none bg-white cursor-pointer min-w-[180px]"
|
|
>
|
|
<option value="all">Alle statussen</option>
|
|
<option value="planned">Screening</option>
|
|
<option value="active">Actief</option>
|
|
<option value="finished">Afgerond</option>
|
|
<option value="cancelled">Afgemeld</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Empty State */}
|
|
<div className="text-center py-12 bg-white rounded-lg border border-slate-200">
|
|
<User className="mx-auto h-12 w-12 text-slate-400" />
|
|
<h3 className="mt-4 text-lg font-medium text-slate-900">Geen patiënten gevonden</h3>
|
|
<p className="mt-2 text-sm text-slate-600">
|
|
{searchTerm || statusFilter !== 'all'
|
|
? 'Probeer een andere zoekopdracht of filter.'
|
|
: 'Begin met het toevoegen van een nieuwe patiënt.'}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
{/* Search and Filter Bar */}
|
|
<div className="mb-6 flex flex-col sm:flex-row gap-4">
|
|
{/* Search Bar */}
|
|
<form onSubmit={handleSearch} className="flex-1">
|
|
<div className="relative">
|
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-5 w-5 text-slate-400" />
|
|
<input
|
|
type="text"
|
|
placeholder="Zoek op naam of BSN..."
|
|
value={searchTerm}
|
|
onChange={(e) => setSearchTerm(e.target.value)}
|
|
className="w-full pl-10 pr-4 py-2 border border-slate-300 rounded-lg focus:ring-2 focus:ring-teal-500 focus:border-transparent"
|
|
/>
|
|
</div>
|
|
</form>
|
|
|
|
{/* Status Filter */}
|
|
<div className="relative">
|
|
<Filter className="absolute left-3 top-1/2 -translate-y-1/2 h-5 w-5 text-slate-400" />
|
|
<select
|
|
value={statusFilter}
|
|
onChange={(e) => handleStatusFilterChange(e.target.value)}
|
|
className="pl-10 pr-10 py-2 border border-slate-300 rounded-lg focus:ring-2 focus:ring-teal-500 focus:border-transparent appearance-none bg-white cursor-pointer min-w-[180px]"
|
|
>
|
|
<option value="all">Alle statussen</option>
|
|
<option value="planned">Screening</option>
|
|
<option value="active">Actief</option>
|
|
<option value="finished">Afgerond</option>
|
|
<option value="cancelled">Afgemeld</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Patient Table */}
|
|
<div className="bg-white rounded-lg border border-slate-200 overflow-hidden">
|
|
<div className="overflow-x-auto">
|
|
<table className="min-w-full divide-y divide-slate-200">
|
|
<thead className="bg-slate-50">
|
|
<tr>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-slate-500 uppercase tracking-wider">
|
|
Naam
|
|
</th>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-slate-500 uppercase tracking-wider">
|
|
BSN
|
|
</th>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-slate-500 uppercase tracking-wider">
|
|
Geboortedatum
|
|
</th>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-slate-500 uppercase tracking-wider">
|
|
Status
|
|
</th>
|
|
<th className="px-6 py-3 text-left text-xs font-medium text-slate-500 uppercase tracking-wider">
|
|
Laatst gewijzigd
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="bg-white divide-y divide-slate-200">
|
|
{patients.map((patient) => {
|
|
const name = patient.name?.[0];
|
|
const fullName = [
|
|
...(name?.prefix || []),
|
|
...(name?.given || []),
|
|
name?.family,
|
|
]
|
|
.filter(Boolean)
|
|
.join(' ');
|
|
|
|
const bsn = patient.identifier?.find(
|
|
(id) => id.system === 'http://fhir.nl/fhir/NamingSystem/bsn'
|
|
)?.value;
|
|
|
|
// Get status from extension (we'll add this to the FHIR mapping)
|
|
const statusExtension = patient.extension?.find(
|
|
(ext) => ext.url === 'http://mini-epd.local/fhir/StructureDefinition/episode-status'
|
|
);
|
|
const status = statusExtension?.valueCode;
|
|
|
|
// Format updated_at date
|
|
const updatedAt = patient.meta?.lastUpdated
|
|
? new Date(patient.meta.lastUpdated).toLocaleDateString('nl-NL', {
|
|
day: '2-digit',
|
|
month: '2-digit',
|
|
year: 'numeric',
|
|
hour: '2-digit',
|
|
minute: '2-digit',
|
|
})
|
|
: '-';
|
|
|
|
return (
|
|
<tr
|
|
key={patient.id}
|
|
className="hover:bg-slate-50 transition-colors cursor-pointer"
|
|
onClick={() => router.push(`/epd/patients/${patient.id}`)}
|
|
>
|
|
<td className="px-6 py-4 whitespace-nowrap">
|
|
<div className="flex items-center">
|
|
<div className="flex-shrink-0 h-10 w-10 bg-gradient-to-br from-teal-400 to-teal-600 rounded-full flex items-center justify-center">
|
|
<span className="text-white font-semibold text-sm">
|
|
{name?.given?.[0]?.[0]}
|
|
{name?.family?.[0]}
|
|
</span>
|
|
</div>
|
|
<div className="ml-4">
|
|
<div className="text-sm font-medium text-slate-900">
|
|
{fullName}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td className="px-6 py-4 whitespace-nowrap">
|
|
<div className="text-sm text-slate-900">{bsn || '-'}</div>
|
|
</td>
|
|
<td className="px-6 py-4 whitespace-nowrap">
|
|
<div className="text-sm text-slate-900">
|
|
{patient.birthDate
|
|
? new Date(patient.birthDate).toLocaleDateString('nl-NL')
|
|
: '-'}
|
|
</div>
|
|
</td>
|
|
<td className="px-6 py-4 whitespace-nowrap">
|
|
<StatusBadge status={status} />
|
|
</td>
|
|
<td className="px-6 py-4 whitespace-nowrap">
|
|
<div className="text-sm text-slate-500">{updatedAt}</div>
|
|
</td>
|
|
</tr>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|