nextjs-rewrite (#5)

Reviewed-on: #5
Co-authored-by: David Gwilliam <dhgwilliam@gmail.com>
Co-committed-by: David Gwilliam <dhgwilliam@gmail.com>
This commit was merged in pull request #5.
This commit is contained in:
2026-03-30 02:30:13 +00:00
committed by david
parent 1a9b3496e1
commit 123df671f5
160 changed files with 19293 additions and 1180 deletions
@@ -0,0 +1,138 @@
import { prisma } from "@/lib/prisma"
import Navigation from "@/components/Navigation"
import Link from "next/link"
import { notFound, redirect } from "next/navigation"
import { getSession } from "@/lib/auth-simple"
import MatchEditor from "@/components/MatchEditor"
interface PageProps {
params: {
id: string
}
}
export default async function TournamentResultsPage({ params }: PageProps) {
const session = await getSession()
if (!session || session.user?.role !== "club_admin") {
redirect("/auth/login")
}
const tournamentId = parseInt(params.id)
const tournament = await prisma.event.findUnique({
where: { id: tournamentId },
})
if (!tournament) {
notFound()
}
const matches = await prisma.match.findMany({
where: { eventId: tournamentId },
include: {
team1P1: true,
team1P2: true,
team2P1: true,
team2P2: true,
},
orderBy: { playedAt: "desc" },
})
const players = await prisma.player.findMany({
orderBy: { name: "asc" },
})
return (
<div className="min-h-screen bg-gray-50">
<Navigation />
<main className="max-w-7xl mx-auto py-6 sm:px-6 lg:px-8">
<div className="px-4 py-6 sm:px-0">
{/* Breadcrumb */}
<nav className="mb-4">
<ol className="flex items-center space-x-2">
<li>
<Link href="/admin/tournaments" className="text-green-600 hover:text-green-900">
Tournaments
</Link>
</li>
<li className="text-gray-400">/</li>
<li>
<Link href={`/admin/tournaments/${tournament.id}`} className="text-green-600 hover:text-green-900">
{tournament.name}
</Link>
</li>
<li className="text-gray-400">/</li>
<li className="text-gray-600">Enter Results</li>
</ol>
</nav>
{/* Page Header */}
<div className="bg-white shadow rounded-lg p-6 mb-6">
<h1 className="text-2xl font-bold text-gray-900">Enter Match Results</h1>
<p className="text-gray-500 mt-1">
Record match results for {tournament.name}.
</p>
</div>
{/* Match Editor */}
<div className="bg-white shadow rounded-lg p-6">
<MatchEditor tournamentId={tournamentId} players={players} matches={matches} />
</div>
{/* Existing Matches */}
{matches.length > 0 && (
<div className="bg-white shadow rounded-lg p-6 mt-6">
<h2 className="text-lg font-medium text-gray-900 mb-4">
Recent Matches
</h2>
<div className="space-y-3">
{matches.slice(0, 10).map((match) => (
<div
key={match.id}
className="border border-gray-200 rounded p-3"
>
<div className="flex justify-between items-center">
<div className="flex-1">
<p className="text-sm text-gray-500">
{match.playedAt?.toLocaleDateString()}
</p>
<p className="font-medium">
{match.team1P1.name} + {match.team1P2.name} vs{" "}
{match.team2P1.name} + {match.team2P2.name}
</p>
</div>
<div className="text-right">
<span className={`font-bold ${
match.team1Score > match.team2Score
? 'text-green-600'
: match.team1Score < match.team2Score
? 'text-red-600'
: 'text-gray-600'
}`}>
{match.team1Score}
</span>
<span className="text-gray-400 mx-2">-</span>
<span className={`font-bold ${
match.team2Score > match.team1Score
? 'text-green-600'
: match.team2Score < match.team1Score
? 'text-red-600'
: 'text-gray-600'
}`}>
{match.team2Score}
</span>
</div>
</div>
</div>
))}
</div>
</div>
)}
</div>
</main>
</div>
)
}