"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 ( <>