add global ranking page
Some checks failed
deploy / deploy (push) Failing after 22s

This commit is contained in:
Lee
2023-10-21 01:25:38 +01:00
parent ad28c4cce5
commit 1b8069ef00
2 changed files with 219 additions and 0 deletions

View File

@ -13,6 +13,7 @@ const SEARCH_PLAYER_URL =
const PLAYER_SCORES =
API_URL + "/player/{}/scores?limit={}&sort={}&page={}&withMetadata=true";
const GET_PLAYER_DATA_FULL = API_URL + "/player/{}/full";
const GET_PLAYERS_URL = API_URL + "/players?page={}";
const SearchType = {
RECENT: "recent",
@ -141,3 +142,42 @@ export async function fetchAllScores(
return scores as ScoresaberPlayerScore[];
}
/**
* Get the top players
*
* @param page the page to get the players from
* @returns a list of players
*/
export async function fetchTopPlayers(page: number = 1): Promise<
| {
players: ScoresaberPlayer[];
pageInfo: {
totalPlayers: number;
page: number;
totalPages: number;
};
}
| undefined
> {
const response = await fetchQueue.fetch(
formatString(GET_PLAYERS_URL, true, page),
);
const json = await response.json();
// Check if there was an error fetching the user data
if (json.errorMessage) {
return undefined;
}
const players = json.players as ScoresaberPlayer[];
const metadata = json.metadata;
return {
players: players,
pageInfo: {
totalPlayers: metadata.total,
page: metadata.page,
totalPages: Math.ceil(metadata.total / metadata.itemsPerPage),
},
};
}