show no data if data is missing instead of showing 0
Some checks failed
Deploy Backend / deploy (push) Successful in 5m1s
Deploy Website / deploy (push) Has been cancelled

This commit is contained in:
Lee
2024-10-12 03:11:02 +01:00
parent 1d6647b74e
commit 7327b8d169
2 changed files with 13 additions and 9 deletions

View File

@ -48,20 +48,24 @@ const renderChange = (player: ScoreSaberPlayer, type: "rank" | "countryRank" | "
const monthlyStat = monthlyStats?.[type];
const renderChange = (value: number | undefined, timeFrame: "daily" | "weekly" | "monthly") => {
if (value == undefined) {
return "Missing Data";
}
const format = (value: number) => {
const format = (value: number | undefined) => {
if (value == 0) {
return 0;
}
if (value == undefined) {
return "No Data";
}
return type == "pp" ? formatPp(value) + "pp" : formatNumberWithCommas(value);
};
return (
<p>
{capitalizeFirstLetter(timeFrame)} Change:{" "}
<span className={`${value >= 0 ? (value == 0 ? "" : "text-green-500") : "text-red-500"}`}>{format(value)}</span>
<span
className={`${value == undefined ? "" : value >= 0 ? (value == 0 ? "" : "text-green-500") : "text-red-500"}`}
>
{format(value)}
</span>
</p>
);
};