fetch stats from server

This commit is contained in:
Jacob Heider 2022-12-14 17:47:50 -05:00
parent 0b87514ba5
commit 9926f2318c
No known key found for this signature in database
GPG key ID: A98011B5713535BF

View file

@ -89,6 +89,8 @@ integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+
$('#count5').html(signups)
$('#count6').html(signups)
$('#count7').html(signups)
$('#stat-one').html(res.repos ? res.repos.toLocaleString() : "")
$('#stat-two').html(res.maintainers ? res.maintainers.toLocaleString() : "")
})
} catch (e) {
console.error(e)
@ -192,17 +194,3 @@ integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+
}
</script>
<script>
fetch('stats.json')
.then(res => res.json())
.then((out) => {
//Debugging + Reference
console.log(out);
document.getElementById('stat-one').innerHTML = out[0].num_repos;
document.getElementById('stat-two').innerHTML = out[0].num_maintainers;
})
.catch(err => { throw err });
</script>