63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
|
import ScoreSaberPlayer from "@/app/common/leaderboard/types/scoresaber/scoresaber-player";
|
||
|
import { formatNumberWithCommas } from "@/app/common/number-utils";
|
||
|
import { GlobeAmericasIcon } from "@heroicons/react/24/solid";
|
||
|
import CountryFlag from "../country-flag";
|
||
|
import { Avatar, AvatarImage } from "../ui/avatar";
|
||
|
import ClaimProfile from "./claim-profile";
|
||
|
import PlayerSubName from "./player-sub-name";
|
||
|
|
||
|
const playerSubNames = [
|
||
|
{
|
||
|
icon: () => {
|
||
|
return <GlobeAmericasIcon className="h-5 w-5" />;
|
||
|
},
|
||
|
render: (player: ScoreSaberPlayer) => {
|
||
|
return <p>#{formatNumberWithCommas(player.rank)}</p>;
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
icon: (player: ScoreSaberPlayer) => {
|
||
|
return <CountryFlag country={player.country} size={15} />;
|
||
|
},
|
||
|
render: (player: ScoreSaberPlayer) => {
|
||
|
return <p>#{formatNumberWithCommas(player.countryRank)}</p>;
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
render: (player: ScoreSaberPlayer) => {
|
||
|
return <p className="tex-pp">{formatNumberWithCommas(player.pp)}pp</p>;
|
||
|
},
|
||
|
},
|
||
|
];
|
||
|
|
||
|
type Props = {
|
||
|
player: ScoreSaberPlayer;
|
||
|
};
|
||
|
|
||
|
export default function PlayerHeader({ player }: Props) {
|
||
|
return (
|
||
|
<div className="flex flex-col bg-secondary p-2 rounded-md">
|
||
|
<div className="flex gap-3 flex-col items-center text-center sm:flex-row sm:items-start sm:text-start relative select-none">
|
||
|
<Avatar className="w-32 h-32 pointer-events-none">
|
||
|
<AvatarImage fetchPriority="high" src={player.profilePicture} />
|
||
|
</Avatar>
|
||
|
<div>
|
||
|
<p className="font-bold text-2xl">{player.name}</p>
|
||
|
<div className="flex gap-2">
|
||
|
{playerSubNames.map((subName, index) => {
|
||
|
return (
|
||
|
<PlayerSubName icon={subName.icon && subName.icon(player)} key={index}>
|
||
|
{subName.render(player)}
|
||
|
</PlayerSubName>
|
||
|
);
|
||
|
})}
|
||
|
</div>
|
||
|
<div className="absolute top-0 right-0">
|
||
|
<ClaimProfile playerId={player.id} />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|