-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathscript.js
51 lines (45 loc) · 1.47 KB
/
script.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
// Function to format large numbers with K suffix
function formatNumber(num) {
if (num >= 1000) {
return (num / 1000).toFixed(1) + 'k';
}
return num.toString();
}
// Function to fetch star count from GitHub API
async function fetchStarCount(repo) {
try {
const response = await fetch(`https://api.github.com/repos/${repo}`);
const data = await response.json();
return data.stargazers_count;
} catch (error) {
console.error(`Error fetching stars for ${repo}:`, error);
return null;
}
}
// Function to update star counts
async function updateStarCounts() {
const starCounts = document.querySelectorAll('.star-count');
const uniqueRepos = new Set();
// Collect unique repos
starCounts.forEach(element => {
uniqueRepos.add(element.dataset.repo);
});
// Fetch star counts for each unique repo
const starData = {};
for (const repo of uniqueRepos) {
const count = await fetchStarCount(repo);
if (count !== null) {
starData[repo] = count;
}
}
// Update all elements with the fetched data
starCounts.forEach(element => {
const repo = element.dataset.repo;
const count = starData[repo];
if (count !== undefined) {
element.querySelector('.count').textContent = formatNumber(count);
}
});
}
// Update star counts when the page loads
document.addEventListener('DOMContentLoaded', updateStarCounts);