Merge pull request #226 from teaxyz/api-repos-maintainers

fetch stats from server
This commit is contained in:
Chris Waters 2022-12-15 16:39:02 -05:00 committed by GitHub
commit 31e6cdf1d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 16 deletions

View file

@ -12,7 +12,7 @@ exclude = [
"https://www.clarity.ms/tag/",
"https://www.googletagmanager.com/gtm.js",
".*/mailto:.*@.*",
"https://tea.xyz/tea.white-paper",
"https://tea.xyz/tea.white-paper", # fragment used in js
"https://tea.xyz/tea.products",
"https://tea.xyz/tea.nebraska-man",
"https://tea.xyz/tea.cli",
@ -26,5 +26,6 @@ exclude = [
"https://openssl.org/",
"https://twitter.com/teaxyz_",
"file:///home/runner/work/www/www/public/+github.com/rhash/RHash",
"file:///home/runner/work/www/www/public/+github.com/rhash/RHash"
"file:///home/runner/work/www/www/public/+github.com/rhash/RHash",
"https://app.tea.xyz/api/signups", # can take a little too long, and no reason to hammer here.
]

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>