add daily, weekly and monthly change to rank, countryRank and pp as a hover
All checks were successful
Deploy Backend / deploy (push) Successful in 2m26s
Deploy Website / deploy (push) Successful in 3m34s

This commit is contained in:
Lee
2024-10-11 19:35:39 +01:00
parent a0681d7b1c
commit ccedfa2645
3 changed files with 74 additions and 27 deletions

View File

@ -158,31 +158,27 @@ export async function getScoreSaberPlayerFromToken(
.sort((a, b) => Date.parse(b[0]) - Date.parse(a[0]))
.reduce((obj, [key, value]) => ({ ...obj, [key]: value }), {});
const yesterdayDate = formatDateMinimal(getMidnightAlignedDate(getDaysAgoDate(1)));
const todayStats = statisticHistory[todayDate];
const yesterdayStats = statisticHistory[yesterdayDate];
const hasChange = !!(todayStats && yesterdayStats);
/**
* Gets the change in the given stat
*
* @param statType the stat to check
* @param daysAgo the amount of days ago to get the stat for
* @return the change
*/
const getChange = (statType: "rank" | "countryRank" | "pp"): number => {
const getChange = (statType: "rank" | "countryRank" | "pp", daysAgo: number = 1): number => {
const todayStats = statisticHistory[todayDate];
const otherDate = formatDateMinimal(getMidnightAlignedDate(getDaysAgoDate(daysAgo)));
const otherStats = statisticHistory[otherDate];
const hasChange = !!(todayStats && otherStats);
if (!hasChange) {
return 0;
}
const statToday = todayStats[`${statType}`];
const statYesterday = yesterdayStats[`${statType}`];
return !!(statToday && statYesterday) ? statToday - statYesterday : 0;
const statOther = otherStats[`${statType}`];
return (!!(statToday && statOther) ? statToday - statOther : 0) * -1;
};
// Calculate the changes
const rankChange = getChange("rank");
const countryRankChange = getChange("countryRank");
const ppChange = getChange("pp");
const getRankPosition = (rank: number): number => {
return Math.floor(rank / 50) + 1;
};
@ -198,9 +194,21 @@ export async function getScoreSaberPlayerFromToken(
bio: bio,
pp: token.pp,
statisticChange: {
rank: rankChange * -1, // Reverse the rank change
countryRank: countryRankChange * -1, // Reverse the country rank change
pp: ppChange,
today: {
rank: getChange("rank", 1),
countryRank: getChange("countryRank", 1),
pp: getChange("pp", 1),
},
weekly: {
rank: getChange("rank", 7),
countryRank: getChange("countryRank", 7),
pp: getChange("pp", 7),
},
monthly: {
rank: getChange("rank", 30),
countryRank: getChange("countryRank", 30),
pp: getChange("pp", 30),
},
},
role: role,
badges: badges,

View File

@ -55,4 +55,8 @@ export default class Player {
}
}
export type StatisticChange = PlayerHistory;
export type StatisticChange = {
today: PlayerHistory;
weekly: PlayerHistory;
monthly: PlayerHistory;
};