mirror of
https://github.com/ivabus/www
synced 2024-11-10 06:25:14 +03:00
Merge pull request #265 from teaxyz/truncate-stars
0.0k Format for Stargazers + Release Version Display
This commit is contained in:
commit
8f5a1a0a18
|
@ -15,7 +15,7 @@
|
|||
<ul class="list-group list-group-flush">
|
||||
<a class="list-group-item" role="button" href="https://twitter.com/teaxyz"><i class="icon-twitter social-icon"></i>Twitter</a>
|
||||
<a class="list-group-item" role="button" href="https://discord.gg/KCZsXfJphn"><i class="icon-discord social-icon"></i>Discord</a>
|
||||
<a class="list-group-item" role="button" href="https://github.com/teaxyz"><i class="icon-github social-icon"></i>GitHub <span style="font-size:16px;">(☆<span id="starcount"></span>)</span></a>
|
||||
<a class="list-group-item" role="button" href="https://github.com/teaxyz/cli"><i class="icon-github social-icon"></i>GitHub <span style="font-size:16px;">(☆<span class="stargazers"></span>, <span class="release"></span>)</span></a>
|
||||
<a class="list-group-item" role="button" href="https://t.me/tea_xyz"><i class="icon-telegram social-icon"></i>Telegram</a>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -178,25 +178,27 @@ integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+
|
|||
</script>
|
||||
|
||||
<script>
|
||||
function getStarcount(repo, resultElement) {
|
||||
var repo = 'teaxyz/cli';
|
||||
var url = 'https://api.github.com/repos/' + repo;
|
||||
axios.get(url)
|
||||
.then(function (response) {
|
||||
console.log(response.data.stargazers_count);
|
||||
document.getElementById('starcount').innerHTML=response.data.stargazers_count;
|
||||
document.getElementById('starcount2').innerHTML=response.data.stargazers_count;
|
||||
resultElement.innerHTML = response.data.stargazers_count;
|
||||
})
|
||||
.catch(function (error) {
|
||||
console.log(error);
|
||||
$(document).ready(function() {
|
||||
var repository = "teaxyz/cli";
|
||||
var url = "https://api.github.com/repos/" + repository;
|
||||
|
||||
$.get(url, function(data) {
|
||||
var stargazers = numeral(data.stargazers_count).format("0.0a");
|
||||
$(".stargazers").html(stargazers);
|
||||
});
|
||||
}
|
||||
|
||||
function repo() {
|
||||
var repo = 'teaxyz/cli';
|
||||
getStarcount(repo, starcount);
|
||||
}
|
||||
|
||||
document.addEventListener('DOMContentLoaded', repo());
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
|
||||
$(document).ready(function() {
|
||||
var repository = "teaxyz/cli";
|
||||
var url = "https://api.github.com/repos/"+ repository +"/releases/latest";
|
||||
|
||||
$.get(url, function(data) {
|
||||
var release = data.tag_name;
|
||||
$(".release").html(release);
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
|
|
@ -113,5 +113,7 @@
|
|||
|
||||
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>
|
||||
|
||||
</head>
|
||||
</head>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
</li>
|
||||
{{ end }}
|
||||
<li class="nav-item mt-lg-0 mt-md-0 mt-sm-3 mt-3">
|
||||
<a class="nav-link" aria-current="page" href="https://github.com/teaxyz">GITHUB (☆<span id="starcount2"></span>)</a>
|
||||
<a class="nav-link" aria-current="page" href="https://github.com/teaxyz/cli">GITHUB (☆<span class="stargazers"></span>, <span class="release"></span>)</a>
|
||||
</li>
|
||||
</ul>
|
||||
<!--
|
||||
|
|
Loading…
Reference in a new issue