All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 48s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m13s
Build and Push Docker Images / Build Pipeline (Meltano + dbt + Airflow) (push) Successful in 32s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s
1. Simpler home page: only search box on landing, no filter dropdowns 2. Advanced filters: hidden behind toggle on results page, auto-open if active 3. Per-school phase rendering: each row renders based on its own data 4. Taller 4-line rows with context line (type, age range, denomination, gender) 5. Result-scoped filters: dropdown values reflect current search results 6. Fix blank filter values: exclude empty strings and "Not applicable" 7. Rankings: Primary/Secondary phase tabs with phase-specific metrics 8. Compare: Primary/Secondary tabs with school counts and phase metrics Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
/**
|
|
* Rankings Page (SSR)
|
|
* Display top-ranked schools by various metrics
|
|
*/
|
|
|
|
import { fetchRankings, fetchFilters, fetchMetrics } from '@/lib/api';
|
|
import { RankingsView } from '@/components/RankingsView';
|
|
import type { Metadata } from 'next';
|
|
|
|
interface RankingsPageProps {
|
|
searchParams: Promise<{
|
|
metric?: string;
|
|
local_authority?: string;
|
|
year?: string;
|
|
phase?: string;
|
|
}>;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'School Rankings',
|
|
description: 'Top-ranked schools by SATs and GCSE performance across England',
|
|
keywords: 'school rankings, top schools, best schools, KS2 rankings, KS4 rankings, school league tables',
|
|
};
|
|
|
|
// Force dynamic rendering
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export default async function RankingsPage({ searchParams }: RankingsPageProps) {
|
|
const { metric: metricParam, local_authority, year: yearParam, phase: phaseParam } = await searchParams;
|
|
|
|
const phase = phaseParam || 'primary';
|
|
const metric = metricParam || (phase === 'secondary' ? 'attainment_8_score' : 'rwm_expected_pct');
|
|
const year = yearParam ? parseInt(yearParam) : undefined;
|
|
|
|
// Fetch rankings data with error handling
|
|
try {
|
|
const [rankingsResponse, filtersResponse, metricsResponse] = await Promise.all([
|
|
fetchRankings({
|
|
metric,
|
|
local_authority,
|
|
year,
|
|
limit: 100,
|
|
phase,
|
|
}),
|
|
fetchFilters(),
|
|
fetchMetrics(),
|
|
]);
|
|
|
|
// Metrics is already an array
|
|
const metricsArray = metricsResponse?.metrics || [];
|
|
|
|
return (
|
|
<RankingsView
|
|
rankings={rankingsResponse?.rankings || []}
|
|
filters={filtersResponse || { local_authorities: [], school_types: [], years: [], phases: [], genders: [], admissions_policies: [] }}
|
|
metrics={metricsArray}
|
|
selectedMetric={metric}
|
|
selectedArea={local_authority}
|
|
selectedYear={year}
|
|
selectedPhase={phase}
|
|
/>
|
|
);
|
|
} catch (error) {
|
|
console.error('Error fetching data for rankings page:', error);
|
|
|
|
// Return error state with empty data
|
|
return (
|
|
<RankingsView
|
|
rankings={[]}
|
|
filters={{ local_authorities: [], school_types: [], years: [], phases: [], genders: [], admissions_policies: [] }}
|
|
metrics={[]}
|
|
selectedMetric={metric}
|
|
selectedArea={local_authority}
|
|
selectedYear={year}
|
|
selectedPhase={phase}
|
|
/>
|
|
);
|
|
}
|
|
}
|