some bug fixes and add the ranking page
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
11
projects/common/src/utils/region-utils.ts
Normal file
11
projects/common/src/utils/region-utils.ts
Normal 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);
|
||||
}
|
Reference in New Issue
Block a user