2021-11-21 22:30:54 +00:00
|
|
|
export async function getSports() {
|
|
|
|
const response = await fetch('/data/sports');
|
|
|
|
const sportsList = await response.json();
|
|
|
|
return sportsList;
|
2021-11-21 22:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getSeasons() {
|
|
|
|
const response = await fetch('/data/seasons');
|
|
|
|
const seasonsList = await response.json();
|
|
|
|
return seasonsList;
|
2021-11-21 23:24:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getGenders(sportID) {
|
|
|
|
const response = await fetch(`/data/genders?sport=${+sportID}`);
|
|
|
|
const gendersList = await response.json();
|
|
|
|
return gendersList;
|
2021-11-21 23:48:03 +00:00
|
|
|
}
|
|
|
|
|
2021-11-22 21:58:43 +00:00
|
|
|
export async function getDivisions(sportID = undefined, gender = undefined) {
|
|
|
|
let URL = '/data/divisions?';
|
|
|
|
if(sportID) URL += `sport=${+sportID}&`;
|
|
|
|
if(gender) URL += `gender=${gender}&`;
|
|
|
|
|
|
|
|
const response = await fetch(URL);
|
2021-11-21 23:48:03 +00:00
|
|
|
const divisionsList = await response.json();
|
|
|
|
return divisionsList;
|
2021-11-22 00:15:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getTeams(sportID) {
|
|
|
|
const response = await fetch(`/data/teams?sport=${+sportID}`);
|
|
|
|
const teamsList = await response.json();
|
|
|
|
return teamsList;
|
2021-11-22 04:59:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function getTeamName(teamID) {
|
|
|
|
const response = await fetch(`/data/team?team=${+teamID}`);
|
|
|
|
const team = await response.json();
|
|
|
|
return team.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getGames(teamID, divisionID, seasonID) {
|
|
|
|
const response = await fetch(`/data/games?team=${+teamID}&division=${+divisionID}&season=${+seasonID}`);
|
|
|
|
const gamesList = await response.json();
|
|
|
|
return gamesList;
|
2021-11-21 22:30:54 +00:00
|
|
|
}
|