improved styling a bit and fixed referrerpolicy

This commit is contained in:
Joonas 2023-01-19 00:27:57 +02:00
parent 6dbb76be76
commit 0185d5dc4e
2 changed files with 35 additions and 4 deletions

View File

@ -69,15 +69,46 @@ export function County({ county }) {
<tbody>
{county.players
.sort((a, b) => {
return sort === "desc" ? a.rank - b.rank : b.rank - a.rank;
if (sort.field === "rank")
return sort.type === "desc"
? a.rank - b.rank
: b.rank - a.rank;
if (sort.field === "player") {
if (sort.type === "desc") {
if (a.playerName < b.playerName) {
return -1;
}
if (b.playerName < a.playerName) {
return 1;
}
return 0;
} else {
if (a.playerName > b.playerName) {
return -1;
}
if (b.playerName > a.playerName) {
return 1;
}
return 0;
}
}
})
.map((player) => (
<tr
key={player.id}
className="border-b border-ctp-surface2 odd:bg-ctp-surface0 even:bg-ctp-surface1"
>
<td className="p-2">{player.playerName}</td>
<td className="p-2">#{player.rank}</td>
<td className="p-2">
<a
className="text-ctp-subtext1 hover:text-ctp-text hover:underline"
href={`https://osu.ppy.sh/u/${player.playerName}`}
referrerPolicy="no-referrer"
target="_blank"
>
{player.playerName}
</a>
</td>
<td className="p-2 text-ctp-subtext1">#{player.rank}</td>
</tr>
))}
</tbody>

View File

@ -120,7 +120,7 @@ export default function Index() {
) : (
<a
href="https://osu.ppy.sh/oauth/authorize?client_id=20031&redirect_uri=http://localhost:3000/auth&response_type=code"
referrerPolicy="noreferrer"
referrerPolicy="no-referrer"
className="rounded-full border border-ctp-surface0 bg-ctp-surface0 px-4 py-2 shadow-md
shadow-ctp-overlay0 hover:bg-ctp-surface1 hover:shadow-ctp-overlay2"
>