always show country flags in ranking pages
All checks were successful
deploy / deploy (push) Successful in 2m3s
All checks were successful
deploy / deploy (push) Successful in 2m3s
This commit is contained in:
parent
3b7f458d5c
commit
9e73ff3937
@ -57,7 +57,7 @@ export default function GlobalRanking({
|
||||
{players.map((player) => (
|
||||
<tr key={player.rank} className="border-b border-border">
|
||||
<PlayerRanking
|
||||
showCountryFlag={country == undefined ? false : true}
|
||||
isCountry={country == undefined ? false : true}
|
||||
player={player}
|
||||
/>
|
||||
</tr>
|
||||
|
@ -8,30 +8,26 @@ import CountyFlag from "../CountryFlag";
|
||||
|
||||
type PlayerRankingProps = {
|
||||
player: ScoresaberPlayer;
|
||||
showCountryFlag?: boolean;
|
||||
isCountry?: boolean;
|
||||
};
|
||||
|
||||
const Avatar = dynamic(() => import("@/components/Avatar"));
|
||||
|
||||
export default function PlayerRanking({
|
||||
player,
|
||||
showCountryFlag,
|
||||
isCountry,
|
||||
}: PlayerRankingProps) {
|
||||
const settingsStore = useStore(useSettingsStore, (store) => store);
|
||||
|
||||
return (
|
||||
<>
|
||||
<td className="px-4 py-2">
|
||||
#{formatNumber(showCountryFlag ? player.countryRank : player.rank)}{" "}
|
||||
<span className="text-sm">
|
||||
{showCountryFlag && "(#" + player.rank + ")"}
|
||||
</span>
|
||||
#{formatNumber(isCountry ? player.countryRank : player.rank)}{" "}
|
||||
<span className="text-sm">{isCountry && "(#" + player.rank + ")"}</span>
|
||||
</td>
|
||||
<td className="flex items-center gap-2 px-4 py-2">
|
||||
<Avatar url={player.profilePicture} label="Avatar" size={24} />
|
||||
{showCountryFlag && (
|
||||
<CountyFlag countryCode={player.country} className="!h-5 !w-5" />
|
||||
)}
|
||||
<CountyFlag countryCode={player.country} className="!h-5 !w-5" />
|
||||
<Link
|
||||
className="transform-gpu transition-all hover:text-blue-500"
|
||||
href={`/player/${player.id}/top/1`}
|
||||
|
Loading…
Reference in New Issue
Block a user