Files
WikiRush/app/components/LeaderboardScreen.tsx
T

202 lines
6.8 KiB
TypeScript

"use client";
import { useEffect, useState } from "react";
import { PublicProfileScreen } from "./PublicProfileScreen";
type LeaderboardRow = {
id: string;
name: string;
totalGames: number;
wins: number;
soloGames: number;
soloWins: number;
soloAvgClicks: number | null;
multiGames: number;
multiWins: number;
dailyGames: number;
dailyWins: number;
dailyAvgClicks: number | null;
blitzGames: number;
blitzWins: number;
blitzBestTime: number | null;
avgClicks: number | null;
bestTime: number | null;
};
type Mode = "all" | "solo" | "multi" | "daily" | "blitz";
function fmt(s: number): string {
const m = Math.floor(s / 60);
const sec = Math.floor(s % 60);
return `${m}:${String(sec).padStart(2, "0")}`;
}
const MEDALS = ["🥇", "🥈", "🥉"];
export function LeaderboardScreen({ onBack }: { onBack: () => void }) {
const [rows, setRows] = useState<LeaderboardRow[]>([]);
const [loading, setLoading] = useState(true);
const [mode, setMode] = useState<Mode>("all");
const [viewingUserId, setViewingUserId] = useState<string | null>(null);
useEffect(() => {
fetch("/api/leaderboard")
.then((r) => r.json())
.then((data) => {
setRows(data);
setLoading(false);
});
}, []);
if (viewingUserId) {
return (
<PublicProfileScreen
userId={viewingUserId}
onBack={() => setViewingUserId(null)}
/>
);
}
const sorted = [...rows]
.filter((r) =>
mode === "solo"
? r.soloGames > 0
: mode === "multi"
? r.multiGames > 0
: mode === "daily"
? r.dailyGames > 0
: mode === "blitz"
? r.blitzGames > 0
: true,
)
.sort((a, b) => {
if (mode === "solo")
return b.soloWins - a.soloWins || b.soloGames - a.soloGames;
if (mode === "multi")
return b.multiWins - a.multiWins || b.multiGames - a.multiGames;
if (mode === "daily")
return b.dailyWins - a.dailyWins || b.dailyGames - a.dailyGames;
if (mode === "blitz")
return b.blitzWins - a.blitzWins || b.blitzGames - a.blitzGames;
return b.wins - a.wins || b.totalGames - a.totalGames;
});
return (
<div className="min-h-dvh w-full bg-[#0f0f0f] text-[#f0f0f0] animate-fade-in max-w-2xl mx-auto px-4 py-5 sm:py-6 pb-12">
{/* Header */}
<div className="flex items-center gap-3 sm:gap-4 mb-5 sm:mb-6">
<button
className="min-h-9 px-3 rounded-lg text-xs sm:text-sm font-semibold bg-[#242424] border border-[#2e2e2e] text-[#f0f0f0] hover:bg-[#1a1a1a] cursor-pointer shrink-0"
onClick={onBack}
>
Retour
</button>
<h2 className="text-xl sm:text-2xl font-black">Classement</h2>
</div>
{/* Tabs */}
<div className="flex gap-2 mb-4 sm:mb-5 flex-wrap">
{(["all", "solo", "daily", "blitz", "multi"] as Mode[]).map((m) => (
<button
key={m}
className={`flex-1 py-2 rounded-xl text-xs sm:text-sm font-semibold border cursor-pointer transition-colors ${mode === m ? "bg-[#7c3aed] border-[#7c3aed] text-white" : "bg-[#1a1a1a] border-[#2e2e2e] text-[#888] hover:text-[#f0f0f0]"}`}
onClick={() => setMode(m)}
>
{m === "all" ? "Global" : m === "solo" ? "Solo" : m === "multi" ? "Multi" : m === "daily" ? "Daily" : "Blitz"}
</button>
))}
</div>
{loading ? (
<div className="flex justify-center py-12">
<div className="spinner" />
</div>
) : sorted.length === 0 ? (
<p className="text-[#888] text-sm text-center py-12">
Aucune partie jouée pour le moment.
</p>
) : (
<div className="flex flex-col gap-2 sm:gap-2.5">
{sorted.map((row, i) => {
const games =
mode === "solo"
? row.soloGames
: mode === "multi"
? row.multiGames
: mode === "daily"
? row.dailyGames
: mode === "blitz"
? row.blitzGames
: row.totalGames;
const wins =
mode === "solo"
? row.soloWins
: mode === "multi"
? row.multiWins
: mode === "daily"
? row.dailyWins
: mode === "blitz"
? row.blitzWins
: row.wins;
const avgClicks =
mode === "solo"
? row.soloAvgClicks
: mode === "daily"
? row.dailyAvgClicks
: mode === "all"
? row.avgClicks
: null;
const bestTime =
mode === "blitz"
? row.blitzBestTime
: mode === "all"
? row.bestTime
: null;
return (
<div
key={row.id}
onClick={() => setViewingUserId(row.id)}
className={`flex items-center gap-2.5 px-3.5 py-3 rounded-xl border cursor-pointer hover:brightness-110 transition-all ${i < 3 ? "border-[#7c3aed] bg-[#7c3aed]/8" : "border-[#2e2e2e] bg-[#1a1a1a]"}`}
>
<span className="text-xl w-8 text-center shrink-0">
{MEDALS[i] ?? `#${i + 1}`}
</span>
<div className="flex-1 min-w-0 flex flex-col gap-1">
<span className="font-bold text-sm truncate">{row.name}</span>
<div className="flex flex-wrap gap-x-3 gap-y-0.5">
<span className="text-xs text-[#888]">
<span className="font-bold text-[#f0f0f0]">{wins}</span>{" "}
victoires
</span>
<span className="text-xs text-[#888]">
<span className="font-bold text-[#f0f0f0]">{games}</span>{" "}
parties
</span>
{avgClicks != null && (
<span className="text-xs text-[#888]">
<span className="font-bold text-[#f0f0f0]">
{avgClicks}
</span>{" "}
clics moy.
</span>
)}
{bestTime != null && (
<span className="text-xs text-[#888]">
<span className="font-bold text-[#f0f0f0]">
{fmt(bestTime)}
</span>{" "}
{mode === "blitz" ? "meilleur temps" : "meilleur"}
</span>
)}
</div>
</div>
</div>
);
})}
</div>
)}
</div>
);
}