forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub-stars.js
79 lines (67 loc) · 2.2 KB
/
github-stars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
var githubStarsScript = $("script[src*=github-stars]");
var starCountCallDate = githubStarsScript.attr("star-count-call-date");
var starCountData = githubStarsScript.attr("star-count-data");
var ecosystemStars = githubStarsScript.attr("ecosystem");
var cloudfrontUrl = "";
if (ecosystemStars == "true") {
cloudfrontUrl = "https://d2ze5o8gurgoho.cloudfront.net/star-count";
}
else {
cloudfrontUrl = "https://du4l4liqvfo92.cloudfront.net/star-count";
}
var today = new Date();
var starCountCallDateParsed = new Date(
parseInt(localStorage.getItem(starCountCallDate), 10)
);
if (
Date.parse(today) >
starCountCallDateParsed.setDate(starCountCallDateParsed.getDate() + 7) ||
localStorage.getItem(starCountCallDate) == null
) {
updateStarCount();
} else {
useLocalStorageStarCount();
}
function updateStarCount() {
console.log("Updated star count fetched");
$.getJSON(cloudfrontUrl, function (data) {
localStorage.setItem(starCountCallDate, Date.parse(today));
localStorage.setItem(starCountData, JSON.stringify(data));
updateStarsOnPage(data);
});
}
function useLocalStorageStarCount() {
var data = JSON.parse(localStorage.getItem(starCountData));
updateStarsOnPage(data);
}
// Loop through each card and add the star count
// Once each card has its star count then the pagination script is added
function updateStarsOnPage(data) {
return new Promise(function (resolve, reject) {
for (var i = 0; i < data.length; i++) {
var starCount = data[i].stars;
if (starCount > 999) {
starCount = numeral(starCount).format("0.0a");
} else if (starCount > 9999) {
starCount = numeral(starCount).format("0.00a");
}
$("[data-id='" + data[i].id + "'] .github-stars-count-whole-number").html(data[i].stars);
$("[data-id='" + data[i].id + "'] .github-stars-count").html(starCount);
}
resolve(
$("#filter-script").html(addFilterScript())
);
});
}
function addFilterScript() {
var data = $("#filter-script").data();
var script =
"<script list-id=" +
data["listId"] +
" display-count=" +
data["displayCount"] +
" pagination=" +
data["pagination"] +
" src='/assets/filter-hub-tags.js'></script>";
return script;
}