/** * SchoolRow Component * Four-line row for primary school search results * * Line 1: School name · Ofsted badge (framework-aware) * Line 2: School type · Age range · Denomination · Gender * Line 3: Reading, Writing & Maths % · trend arrow · vs-national delta · Pupils * Line 4: Local authority · Distance */ import type { School } from '@/lib/types'; import { formatPercentage, calculateTrend, getPhaseStyle, schoolUrl, buildOfstedListBadge } from '@/lib/utils'; import styles from './SchoolRow.module.css'; interface SchoolRowProps { school: School; isLocationSearch?: boolean; isInCompare?: boolean; onAddToCompare?: (school: School) => void; onRemoveFromCompare?: (urn: number) => void; nationalAvgRwm?: number | null; } export function SchoolRow({ school, isLocationSearch, isInCompare = false, onAddToCompare, onRemoveFromCompare, nationalAvgRwm, }: SchoolRowProps) { const trend = calculateTrend(school.rwm_expected_pct, school.prev_rwm_expected_pct); const phase = getPhaseStyle(school.phase); const ofstedBadge = buildOfstedListBadge(school); const showGender = school.gender && school.gender.toLowerCase() !== 'mixed'; const showDenomination = school.religious_denomination && school.religious_denomination !== 'Does not apply'; // vs-national delta const rwmDelta = school.rwm_expected_pct != null && nationalAvgRwm != null ? Math.round(school.rwm_expected_pct - nationalAvgRwm) : null; const handleCompareClick = () => { if (isInCompare) { onRemoveFromCompare?.(school.urn); } else { onAddToCompare?.(school); } }; return (
{/* Left: four content lines */}
{/* Line 1: School name + Ofsted badge */}
{school.school_name} {ofstedBadge.label}
{/* Line 2: Context tags */}
{phase.label && ( {phase.label} )} {school.school_type && {school.school_type}} {school.age_range && {school.age_range}} {showDenomination && {school.religious_denomination}} {showGender && {school.gender}}
{/* Line 3: Key stats */}
{school.rwm_expected_pct != null ? formatPercentage(school.rwm_expected_pct, 0) : '—'} {school.prev_rwm_expected_pct != null && ( {trend === 'up' && ( )} {trend === 'down' && ( )} {trend === 'stable' && ( )} )} Reading, Writing & Maths {rwmDelta != null && ( = 2 ? styles.vsNational : rwmDelta <= -2 ? styles.vsNationalNeg : styles.vsNationalFlat } > {rwmDelta >= 2 ? `+${rwmDelta} pts vs national` : rwmDelta <= -2 ? `${rwmDelta} pts vs national` : '≈ national avg'} )} {school.total_pupils != null && ( {school.total_pupils.toLocaleString()} pupils )}
{/* Line 4: Location + distance */}
{school.local_authority && ( {school.local_authority} )} {isLocationSearch && school.distance != null && ( {school.distance.toFixed(1)} mi )}
{/* Right: actions, vertically centred */}
View {(onAddToCompare || onRemoveFromCompare) && ( )}
); }