some bug fixes and add the ranking page
All checks were successful
Deploy Backend / deploy (push) Successful in 2m22s
Deploy Website / deploy (push) Successful in 4m8s

This commit is contained in:
Lee
2024-10-11 02:43:28 +01:00
parent f649fb9c7f
commit e35c1c77d3
13 changed files with 345 additions and 18 deletions

View File

@ -48,6 +48,11 @@ export default interface ScoreSaberPlayer extends Player {
*/
permissions: number;
/**
* The pages for the players positions.
*/
rankPages: ScoreSaberRankPages;
/**
* Whether the player is banned or not.
*/
@ -167,6 +172,10 @@ export async function getScoreSaberPlayerFromToken(
const countryRankChange = getChange("countryRank");
const ppChange = getChange("pp");
const getRankPosition = (rank: number): number => {
return Math.floor(rank / 50) + 1;
};
return {
id: token.id,
name: token.name,
@ -186,6 +195,10 @@ export async function getScoreSaberPlayerFromToken(
badges: badges,
statisticHistory: statisticHistory,
statistics: token.scoreStats,
rankPages: {
global: getRankPosition(token.rank),
country: getRankPosition(token.countryRank),
},
permissions: token.permissions,
banned: token.banned,
inactive: token.inactive,
@ -262,3 +275,15 @@ export type ScoreSaberPlayerStatistics = {
*/
replaysWatched: number;
};
export type ScoreSaberRankPages = {
/**
* Their page for their global rank position.
*/
global: number;
/**
* Their page for their country rank position.
*/
country: number;
};

View File

@ -0,0 +1,11 @@
let regionNames = new Intl.DisplayNames(["en"], { type: "region" });
/**
* Returns the normalized region name
*
* @param region the region to normalize
* @returns the normalized region name
*/
export function normalizedRegionName(region: string) {
return regionNames.of(region);
}