"use client"; import { formatNumberWithCommas, formatPp } from "@ssr/common/utils/number-utils"; import ScoreSaberPlayerToken from "@ssr/common/types/token/scoresaber/score-saber-player-token"; import useDatabase from "@/hooks/use-database"; import { useLiveQuery } from "dexie-react-hooks"; import { clsx } from "clsx"; import { PlayerInfo } from "@/components/player/player-info"; type PlayerRankingProps = { player: ScoreSaberPlayerToken; isCountry: boolean; }; export function PlayerRanking({ player, isCountry }: PlayerRankingProps) { const database = useDatabase(); const claimedPlayer = useLiveQuery(() => database.getClaimedPlayer()); const history = player.histories.split(",").map(Number); const weeklyRankChange = history[history?.length - 6] - player.rank; return ( <> #{formatNumberWithCommas(isCountry ? player.countryRank : player.rank)}{" "} {isCountry && "(#" + formatNumberWithCommas(player.rank) + ")"} {formatPp(player.pp)}pp {formatNumberWithCommas(player.scoreStats.totalPlayCount)} {formatNumberWithCommas(player.scoreStats.rankedPlayCount)} {player.scoreStats.averageRankedAccuracy.toFixed(2) + "%"} = 0 ? weeklyRankChange != 0 && "text-green-500" : "text-red-500" )} > {formatNumberWithCommas(weeklyRankChange)} ); }