add basic player view
All checks were successful
deploy / deploy (push) Successful in 1m37s

This commit is contained in:
Lee
2023-10-19 15:48:02 +01:00
parent 1e52ac3d93
commit ce7eb17242
9 changed files with 238 additions and 2 deletions

9
src/utils/number.ts Normal file
View File

@ -0,0 +1,9 @@
/**
* Formats a number to a string with commas
*
* @param number the number to format
* @returns the formatted number
*/
export function formatNumber(number: number) {
return number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}

View File

@ -17,6 +17,7 @@ const SEARCH_PLAYER_URL =
API_URL + "/players?search={}&page=1&withMetadata=false";
const PLAYER_SCORES =
API_URL + "/player/{}/scores?limit={}&sort={}&page={}&withMetadata=true";
const GET_PLAYER_DATA_FULL = API_URL + "/player/{}/full";
const SearchType = {
RECENT: "recent",
@ -43,6 +44,35 @@ export async function searchByName(
return json.players as ScoresaberPlayer[];
}
/**
* Returns the player info for the provided player id
*
* @param playerId the id of the player
* @returns the player info
*/
export async function getPlayerInfo(
playerId: string,
): Promise<ScoresaberPlayer | undefined> {
const response = await fetch(formatString(GET_PLAYER_DATA_FULL, playerId));
const json = await response.json();
// Check if there was an error fetching the user data
if (json.errorMessage) {
return undefined;
}
return json as ScoresaberPlayer;
}
/**
* Get the players scores from the given page
*
* @param playerId the id of the player
* @param page the page to get the scores from
* @param searchType the type of search to perform
* @param limit the limit of scores to get
* @returns a list of scores
*/
export async function fetchScores(
playerId: string,
page: number = 1,