Round system redesign: Phases 1-7 complete

Full pipeline/track/stage architecture replacing the legacy round system.

Schema: 11 new models (Pipeline, Track, Stage, StageTransition,
ProjectStageState, RoutingRule, Cohort, CohortProject, LiveProgressCursor,
OverrideAction, AudienceVoter) + 8 new enums.

Backend: 9 new routers (pipeline, stage, routing, stageFiltering,
stageAssignment, cohort, live, decision, award) + 6 new services
(stage-engine, routing-engine, stage-filtering, stage-assignment,
stage-notifications, live-control).

Frontend: Pipeline wizard (17 components), jury stage pages (7),
applicant pipeline pages (3), public stage pages (2), admin pipeline
pages (5), shared stage components (3), SSE route, live hook.

Phase 6 refit: 23 routers/services migrated from roundId to stageId,
all frontend components refitted. Deleted round.ts (985 lines),
roundTemplate.ts, round-helpers.ts, round-settings.ts, round-type-settings.tsx,
10 legacy admin pages, 7 legacy jury pages, 3 legacy dialogs.

Phase 7 validation: 36 tests (10 unit + 8 integration files) all passing,
TypeScript 0 errors, Next.js build succeeds, 13 integrity checks,
legacy symbol sweep clean, auto-seed on first Docker startup.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-13 13:57:09 +01:00
parent 8a328357e3
commit 331b67dae0
256 changed files with 29117 additions and 21424 deletions

View File

@@ -9,7 +9,7 @@ export const exportRouter = router({
evaluations: adminProcedure
.input(
z.object({
roundId: z.string(),
stageId: z.string(),
includeDetails: z.boolean().default(true),
})
)
@@ -17,7 +17,7 @@ export const exportRouter = router({
const evaluations = await ctx.prisma.evaluation.findMany({
where: {
status: 'SUBMITTED',
assignment: { roundId: input.roundId },
assignment: { stageId: input.stageId },
},
include: {
assignment: {
@@ -75,7 +75,7 @@ export const exportRouter = router({
userId: ctx.user.id,
action: 'EXPORT',
entityType: 'Evaluation',
detailsJson: { roundId: input.roundId, count: data.length },
detailsJson: { stageId: input.stageId, count: data.length },
ipAddress: ctx.ip,
userAgent: ctx.userAgent,
})
@@ -101,10 +101,12 @@ export const exportRouter = router({
* Export project scores summary
*/
projectScores: adminProcedure
.input(z.object({ roundId: z.string() }))
.input(z.object({ stageId: z.string() }))
.query(async ({ ctx, input }) => {
const projects = await ctx.prisma.project.findMany({
where: { roundId: input.roundId },
where: {
assignments: { some: { stageId: input.stageId } },
},
include: {
assignments: {
include: {
@@ -159,7 +161,7 @@ export const exportRouter = router({
userId: ctx.user.id,
action: 'EXPORT',
entityType: 'ProjectScores',
detailsJson: { roundId: input.roundId, count: data.length },
detailsJson: { stageId: input.stageId, count: data.length },
ipAddress: ctx.ip,
userAgent: ctx.userAgent,
})
@@ -186,10 +188,10 @@ export const exportRouter = router({
* Export assignments
*/
assignments: adminProcedure
.input(z.object({ roundId: z.string() }))
.input(z.object({ stageId: z.string() }))
.query(async ({ ctx, input }) => {
const assignments = await ctx.prisma.assignment.findMany({
where: { roundId: input.roundId },
where: { stageId: input.stageId },
include: {
user: { select: { name: true, email: true } },
project: { select: { title: true, teamName: true } },
@@ -232,10 +234,10 @@ export const exportRouter = router({
* Export filtering results as CSV data
*/
filteringResults: adminProcedure
.input(z.object({ roundId: z.string() }))
.input(z.object({ stageId: z.string() }))
.query(async ({ ctx, input }) => {
const results = await ctx.prisma.filteringResult.findMany({
where: { roundId: input.roundId },
where: { stageId: input.stageId },
include: {
project: {
select: {
@@ -314,7 +316,7 @@ export const exportRouter = router({
userId: ctx.user.id,
action: 'EXPORT',
entityType: 'FilteringResult',
detailsJson: { roundId: input.roundId, count: data.length },
detailsJson: { stageId: input.stageId, count: data.length },
ipAddress: ctx.ip,
userAgent: ctx.userAgent,
})
@@ -399,7 +401,7 @@ export const exportRouter = router({
getReportData: observerProcedure
.input(
z.object({
roundId: z.string(),
stageId: z.string(),
sections: z.array(z.string()).optional(),
})
)
@@ -407,34 +409,44 @@ export const exportRouter = router({
const includeSection = (name: string) =>
!input.sections || input.sections.length === 0 || input.sections.includes(name)
const round = await ctx.prisma.round.findUniqueOrThrow({
where: { id: input.roundId },
const stage = await ctx.prisma.stage.findUniqueOrThrow({
where: { id: input.stageId },
include: {
program: { select: { name: true, year: true } },
track: {
include: {
pipeline: {
include: {
program: { select: { name: true, year: true } },
},
},
},
},
},
})
const result: Record<string, unknown> = {
roundName: round.name,
programName: round.program.name,
programYear: round.program.year,
stageName: stage.name,
programName: stage.track.pipeline.program.name,
programYear: stage.track.pipeline.program.year,
generatedAt: new Date().toISOString(),
}
// Summary stats
if (includeSection('summary')) {
const [projectCount, assignmentCount, evaluationCount, jurorCount] = await Promise.all([
ctx.prisma.project.count({ where: { roundId: input.roundId } }),
ctx.prisma.assignment.count({ where: { roundId: input.roundId } }),
ctx.prisma.project.count({
where: { assignments: { some: { stageId: input.stageId } } },
}),
ctx.prisma.assignment.count({ where: { stageId: input.stageId } }),
ctx.prisma.evaluation.count({
where: {
assignment: { roundId: input.roundId },
assignment: { stageId: input.stageId },
status: 'SUBMITTED',
},
}),
ctx.prisma.assignment.groupBy({
by: ['userId'],
where: { roundId: input.roundId },
where: { stageId: input.stageId },
}),
])
@@ -453,7 +465,7 @@ export const exportRouter = router({
if (includeSection('scoreDistribution')) {
const evaluations = await ctx.prisma.evaluation.findMany({
where: {
assignment: { roundId: input.roundId },
assignment: { stageId: input.stageId },
status: 'SUBMITTED',
},
select: { globalScore: true },
@@ -478,7 +490,7 @@ export const exportRouter = router({
// Rankings
if (includeSection('rankings')) {
const projects = await ctx.prisma.project.findMany({
where: { roundId: input.roundId },
where: { assignments: { some: { stageId: input.stageId } } },
select: {
id: true,
title: true,
@@ -526,7 +538,7 @@ export const exportRouter = router({
// Juror stats
if (includeSection('jurorStats')) {
const assignments = await ctx.prisma.assignment.findMany({
where: { roundId: input.roundId },
where: { stageId: input.stageId },
include: {
user: { select: { name: true, email: true } },
evaluation: { select: { status: true, globalScore: true } },
@@ -566,14 +578,14 @@ export const exportRouter = router({
// Criteria breakdown
if (includeSection('criteriaBreakdown')) {
const form = await ctx.prisma.evaluationForm.findFirst({
where: { roundId: input.roundId, isActive: true },
where: { stageId: input.stageId, isActive: true },
})
if (form?.criteriaJson) {
const criteria = form.criteriaJson as Array<{ id: string; label: string }>
const evaluations = await ctx.prisma.evaluation.findMany({
where: {
assignment: { roundId: input.roundId },
assignment: { stageId: input.stageId },
status: 'SUBMITTED',
},
select: { criterionScoresJson: true },
@@ -606,8 +618,8 @@ export const exportRouter = router({
prisma: ctx.prisma,
userId: ctx.user.id,
action: 'REPORT_GENERATED',
entityType: 'Round',
entityId: input.roundId,
entityType: 'Stage',
entityId: input.stageId,
detailsJson: { sections: input.sections },
ipAddress: ctx.ip,
userAgent: ctx.userAgent,