smh my head
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 58s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m55s

This commit is contained in:
Lee 2024-10-29 18:52:14 +00:00
parent 448155a3c3
commit de441b698c
3 changed files with 6 additions and 8 deletions

@ -1,5 +1,5 @@
import ScoreSaberPlayer from "./impl/scoresaber-player";
import { Timeframe } from "../timeframe";
import { StatisticRange } from "./player";
export type PlayerStatValue = {
/**
@ -10,7 +10,7 @@ export type PlayerStatValue = {
/**
* The value of the stat.
*/
value: (player: ScoreSaberPlayer, range: Timeframe) => number | undefined;
value: (player: ScoreSaberPlayer, range: StatisticRange) => number | undefined;
};
export type PlayerStatChangeType =

@ -1,5 +1,4 @@
import { PlayerHistory } from "./player-history";
import { Timeframe } from "../timeframe";
export default class Player {
/**
@ -56,8 +55,7 @@ export default class Player {
}
}
export type StatisticRange = "daily" | "weekly" | "monthly";
export type StatisticChange = {
daily: PlayerHistory;
weekly: PlayerHistory;
monthly: PlayerHistory;
[key in StatisticRange]: PlayerHistory;
};

@ -4,7 +4,7 @@ import { capitalizeFirstLetter } from "@/common/string-utils";
import Tooltip from "@/components/tooltip";
import { ReactElement } from "react";
import { PlayerStatValue } from "@ssr/common/player/player-stat-change";
import { Timeframe } from "@ssr/common/timeframe";
import { StatisticRange } from "@ssr/common/player/player";
type ChangeOverTimeProps = {
/**
@ -40,7 +40,7 @@ export function ChangeOverTime({ player, type, children }: ChangeOverTimeProps)
};
// Renders the change for a given time frame
const renderChange = (value: number | undefined, range: Timeframe) => (
const renderChange = (value: number | undefined, range: StatisticRange) => (
<p>
{capitalizeFirstLetter(range)} Change:{" "}
<span className={value === undefined ? "" : value >= 0 ? (value === 0 ? "" : "text-green-500") : "text-red-500"}>