You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
function goTo()
|
|
{
|
|
window.open("https://discord.com/api/oauth2/authorize?client_id=356104008366030863&redirect_uri=https%3A%2F%2Frem.wordfights.com%2FcreateLeague&response_type=token&scope=identify")
|
|
}
|
|
function goToLeague(recordID)
|
|
{
|
|
location.replace(location.origin+'/league/'+recordID)
|
|
}
|
|
window.onload = ()=>
|
|
{
|
|
presentLeagues();
|
|
}
|
|
async function presentLeagues()
|
|
{
|
|
var leagues = await fetch(`${window.location.origin}/api/getAllLeagues`,
|
|
{
|
|
method: "GET",
|
|
})
|
|
.then(res=>{return res.json()})
|
|
.then(response=>
|
|
{
|
|
return response.data;
|
|
})
|
|
.catch(console.error)
|
|
var table = document.getElementById('LeaguesTable');
|
|
var rows = '';
|
|
for(var league of leagues)
|
|
{
|
|
(async (league)=>
|
|
{
|
|
var aux = `
|
|
<tr>
|
|
<td onclick="goToLeague('${league._id}')" class="league">${league.Name}</td>
|
|
<td>${league.Players.length}</td>
|
|
</tr>
|
|
`
|
|
rows+=aux;
|
|
})(league)
|
|
}
|
|
var auxHTML =
|
|
`
|
|
<table id="LeaguesTable">
|
|
<tr>
|
|
<th id="LeagueHeader">League</th>
|
|
<th id="PlayerHeader">Players</t>
|
|
</tr>
|
|
${rows}
|
|
</table>
|
|
`
|
|
table.innerHTML = auxHTML;
|
|
|
|
}
|