cleanup stat changes and add ranked and total scores change
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 46s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m13s

This commit is contained in:
Lee
2024-10-20 19:17:17 +01:00
parent a68e53734d
commit 336518ff70
8 changed files with 214 additions and 105 deletions

View File

@ -0,0 +1,32 @@
export type PlayerStatValue = {
/**
* The display name of the stat.
*/
displayName: string;
/**
* The value of the stat.
*/
value?: "rank" | "countryRank" | "pp";
};
export const PlayerStat: Record<string, PlayerStatValue> = {
Rank: {
displayName: "Rank",
value: "rank",
},
CountryRank: {
displayName: "Country Rank",
value: "countryRank",
},
PerformancePoints: {
displayName: "Performance Points",
value: "pp",
},
TotalPlayCount: {
displayName: "Total Play Count",
},
RankedPlayCount: {
displayName: "Ranked Play Count",
},
};

View File

@ -0,0 +1 @@
export type StatTimeframe = "daily" | "weekly" | "monthly";

View File

@ -27,3 +27,17 @@ export function formatNumberWithCommas(num: number) {
export function formatPp(num: number) {
return num.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 });
}
/**
* Formats the number
*
* @param num the number to format
* @param type the type of number to format
* @returns the formatted number
*/
export function formatNumber(num: number, type: "number" | "pp" = "number") {
if (type == "pp") {
return formatPp(num);
}
return formatNumberWithCommas(num);
}

View File

@ -3,6 +3,19 @@ import { kyFetch } from "./utils";
import { Config } from "../config";
import { AroundPlayer } from "../types/around-player";
import { AroundPlayerResponse } from "../response/around-player-response";
import ScoreSaberPlayer from "../player/impl/scoresaber-player";
import { formatDateMinimal, getMidnightAlignedDate } from "./time-utils";
/**
* Gets the player's history for today.
*
* @param player the player to get the history for
* @returns the player's history
*/
export function getPlayerHistoryToday(player: ScoreSaberPlayer) {
const today = getMidnightAlignedDate(new Date());
return player.statisticHistory[formatDateMinimal(today)] || {};
}
/**
* Sorts the player history based on date,