import { formatNumberWithCommas, formatPp } from "@ssr/common/utils/number-utils"; import { GlobeAmericasIcon } from "@heroicons/react/24/solid"; import { useQuery } from "@tanstack/react-query"; import Link from "next/link"; import { ReactElement } from "react"; import Card from "../card"; import CountryFlag from "../country-flag"; import { PlayerRankingSkeleton } from "@/components/ranking/player-ranking-skeleton"; import ScoreSaberPlayer from "@ssr/common/player/impl/scoresaber-player"; import { getPlayersAroundPlayer } from "@ssr/common/utils/player-utils"; import { AroundPlayer } from "@ssr/common/types/around-player"; import { PlayerInfo } from "@/components/player/player-info"; const PLAYER_NAME_MAX_LENGTH = 18; type MiniProps = { /** * The type of ranking to display. */ type: "Global" | "Country"; /** * The player on this profile. */ player: ScoreSaberPlayer; /** * Whether the data should be updated */ shouldUpdate?: boolean; }; type Variants = { [key: string]: { icon: (player: ScoreSaberPlayer) => ReactElement; }; }; const miniVariants: Variants = { Global: { icon: () => , }, Country: { icon: (player: ScoreSaberPlayer) => { return ; }, }, }; export default function Mini({ type, player, shouldUpdate }: MiniProps) { if (shouldUpdate == undefined) { shouldUpdate = true; } const variant = miniVariants[type]; const icon = variant.icon(player); const { data: response, isLoading, isError, } = useQuery({ queryKey: ["mini-ranking-" + type, player.id, type], queryFn: () => getPlayersAroundPlayer(player.id, type.toLowerCase() as AroundPlayer), enabled: shouldUpdate, }); if (isLoading || !response) { return ; } if (isError) { return

Error loading ranking

; } return (
{icon}

{type} Ranking

{response.players.map((playerRanking, index) => { const rank = type == "Global" ? playerRanking.rank : playerRanking.countryRank; const ppDifference = playerRanking.pp - player.pp; return (

#{formatNumberWithCommas(rank)}

{formatPp(playerRanking.pp)}pp

{playerRanking.id !== player.id && (

0 ? "text-green-400" : "text-red-400"}`}> {ppDifference > 0 ? "+" : ""} {formatPp(ppDifference)}

)}
); })}
); }