cleanup, added country page and added button to go to country page on player info
All checks were successful
deploy / deploy (push) Successful in 58s

This commit is contained in:
Lee
2023-10-22 06:07:17 +01:00
parent 154eec2aac
commit 76c6ac6acd
5 changed files with 239 additions and 55 deletions

View File

@ -14,6 +14,7 @@ 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 GET_PLAYERS_BY_COUNTRY_URL = API_URL + "/players?page={}&countries={}";
const SearchType = {
RECENT: "recent",
@ -160,9 +161,13 @@ export async function fetchAllScores(
* Get the top players
*
* @param page the page to get the players from
* @param country the country to get the players from
* @returns a list of players
*/
export async function fetchTopPlayers(page: number = 1): Promise<
export async function fetchTopPlayers(
page: number = 1,
country?: string,
): Promise<
| {
players: ScoresaberPlayer[];
pageInfo: {
@ -173,9 +178,10 @@ export async function fetchTopPlayers(page: number = 1): Promise<
}
| undefined
> {
const response = await fetchQueue.fetch(
formatString(GET_PLAYERS_URL, true, page),
);
const url = country
? formatString(GET_PLAYERS_BY_COUNTRY_URL, true, page, country)
: formatString(GET_PLAYERS_URL, true, page);
const response = await fetchQueue.fetch(url);
const json = await response.json();
// Check if there was an error fetching the user data