cleanup stat changes and add ranked and total scores change
This commit is contained in:
32
projects/common/src/player/player-stat.ts
Normal file
32
projects/common/src/player/player-stat.ts
Normal 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",
|
||||
},
|
||||
};
|
1
projects/common/src/player/stat-timeframe.ts
Normal file
1
projects/common/src/player/stat-timeframe.ts
Normal file
@ -0,0 +1 @@
|
||||
export type StatTimeframe = "daily" | "weekly" | "monthly";
|
@ -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);
|
||||
}
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user