added local score fetching
All checks were successful
deploy / deploy (push) Successful in 2m11s

This commit is contained in:
Lee
2023-10-22 02:17:21 +01:00
parent 0a4708c6bc
commit 1ff7c246c3
6 changed files with 218 additions and 19 deletions

View File

@ -120,6 +120,7 @@ export async function fetchScores(
export async function fetchAllScores(
playerId: string,
searchType: string,
callback?: (currentPage: number, totalPages: number) => void,
): Promise<ScoresaberPlayerScore[] | undefined> {
const scores = new Array();
@ -131,15 +132,21 @@ export async function fetchAllScores(
done = true;
break;
}
const { scores } = response;
if (scores.length === 0) {
const { scores: scoresFetched } = response;
if (scoresFetched.length === 0) {
done = true;
break;
}
scores.push(...scores);
scores.push(...scoresFetched);
if (callback) {
callback(page, response.pageInfo.totalPages);
}
page++;
} while (!done);
console.log(scores);
return scores as ScoresaberPlayerScore[];
}