-
Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy pathmain.js
218 lines (188 loc) · 6.85 KB
/
main.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// Initialize AOS (Animate On Scroll)
AOS.init();
// Array containing contributors data
const Contributors = contributors;
// Variables
const searchbox = document.getElementById("search");
let searchResult = null;
let initialContributorsNumber = 72;
// Get the current year dynamically
const currentYear = new Date().getFullYear();
// Function to set the current year in the HTML
function setCurrentYear() {
const yearElements = [
// { id: "current-year", defaultValue: currentYear },
{ id: "current-year-title", defaultValue: currentYear },
{ id: "current-year-footer", defaultValue: currentYear },
{ id: "current-year-copyright", defaultValue: currentYear },
];
yearElements.forEach((element) => {
const el = document.getElementById(element.id);
if (el) {
el.textContent = element.defaultValue;
} else {
console.warn(`Element with ID '${element.id}' not found in the DOM.`);
}
});
// Set the document title with the current year
document.title = `Hacktoberfest ${currentYear} - Contributors`;
}
// Call the function to set the current year
setCurrentYear();
/**
* Filters contributors based on the search string.
* @param {string} str - The search string.
* @param {Array} array - The array of contributors.
* @returns {Array} - The filtered list of contributors.
*/
function filterUsers(str = "ContributorName", array) {
const inputString = typeof str === "string" ? str.toLowerCase() : "";
if (str === "") return "Cannot be empty, please enter a name";
return array.filter((item) => {
const fullName = item.fullname || "";
return fullName.toLowerCase().includes(inputString);
});
}
/**
* Renders the contributors on the page.
* @param {Array} array - The array of contributors to render.
*/
function render(array) {
array.forEach((item) => {
let username = document.createElement("span");
username.innerHTML = item.fullname;
let user = document.createElement("a");
user.className = "box-item";
user.setAttribute("href", item.username);
user.setAttribute("id", item.id);
user.append(username);
if (item.id <= initialContributorsNumber) {
document.getElementById("contributors").append(user);
}
});
}
// Load contributors after document loads.
render(contributors);
/**
* Loads more contributors when "Load More" button is clicked.
*/
function loadMore() {
if (initialContributorsNumber >= contributors.length) {
render(contributors);
} else {
initialContributorsNumber += 84;
document.getElementById("contributors").innerHTML =
"<div class='text-center' id='loading'>Loading...</div>";
render(contributors);
document.querySelectorAll("a.box-item").forEach((con) => {
con.innerHTML += `<img loading="lazy" src="https://avatars.githubusercontent.com/${
con.href.split("https://github.com/")[1]
}">`;
});
document.getElementById("loading").setAttribute("hidden", true);
if (initialContributorsNumber >= contributors.length) {
document.getElementById("loadMore").setAttribute("hidden", true);
}
}
}
// Event listener for "Load More" button
const loadMoreBtn = document.getElementById("loadMore");
loadMoreBtn.addEventListener("click", loadMore);
// Add avatars to contributor links
document.querySelectorAll("a.box-item").forEach((con) => {
con.innerHTML += `<img loading="lazy" src="https://avatars.githubusercontent.com/${
con.href.split("https://github.com/")[1]
}">`;
});
// Event listener for the search box
searchbox.addEventListener("keyup", async (e) => {
searchbox.value !== ""
? document.getElementById("loadMore").classList.add("hidden")
: document.getElementById("loadMore").classList.remove("hidden");
searchResult = await filterUsers(e.target.value, contributors);
document.getElementById("contributors").innerHTML =
e.target.value !== ""
? "<div class='text-center' id='loading'>Loading...</div>"
: "";
e.target.value !== ""
? searchResult.forEach((item) => {
let username = document.createElement("span");
username.innerHTML = item.fullname;
let user = document.createElement("a");
user.className = "box-item";
user.setAttribute("href", item.username);
user.append(username);
document.getElementById("contributors").append(user);
})
: contributors.forEach((item) => {
let username = document.createElement("span");
username.innerHTML = item.fullname;
let user = document.createElement("a");
user.className = "box-item";
user.setAttribute("href", item.username);
user.append(username);
if (item.id <= initialContributorsNumber) {
document.getElementById("contributors").append(user);
}
});
document.querySelectorAll("a.box-item").forEach((con) => {
con.innerHTML += `<img loading="lazy" src="https://github.com/${
con.href.split("https://github.com/")[1]
}.png">`;
});
document.getElementById("loading").setAttribute("hidden", true);
});
/* Back-to-top button functionality */
const backToTopButton = document.querySelector("#back-to-top-btn");
window.addEventListener("scroll", scrollFunction);
function scrollFunction() {
if (window.pageYOffset > 300) {
if (!backToTopButton.classList.contains("btnEntrance")) {
backToTopButton.classList.remove("btnExit");
backToTopButton.classList.add("btnEntrance");
backToTopButton.style.display = "block";
}
} else {
if (backToTopButton.classList.contains("btnEntrance")) {
backToTopButton.classList.remove("btnEntrance");
backToTopButton.classList.add("btnExit");
setTimeout(function () {
backToTopButton.style.display = "none";
}, 250);
}
}
}
backToTopButton.addEventListener("click", smoothScrollBackToTop);
function smoothScrollBackToTop() {
const targetPosition = 0;
const startPosition = window.pageYOffset;
const distance = targetPosition - startPosition;
const duration = 750;
let start = null;
window.requestAnimationFrame(step);
function step(timestamp) {
if (!start) start = timestamp;
const progress = timestamp - start;
window.scrollTo(
0,
easeInOutCubic(progress, startPosition, distance, duration)
);
if (progress < duration) window.requestAnimationFrame(step);
}
}
function easeInOutCubic(t, b, c, d) {
t /= d / 2;
if (t < 1) return (c / 2) * t * t * t + b;
t -= 2;
return (c / 2) * (t * t * t + 2) + b;
}
// Toggle dark/light theme
$(".tdnn").click(function () {
$("body").toggleClass("light");
$(".moon").toggleClass("sun");
$(".tdnn").toggleClass("day");
});
// Display live stats with the dynamic year
document.getElementById(
"stats"
).innerHTML = `You guys are awesome, we have again passed the GitHub rate limit this hour. <a href="https://github.com/fineanmol/Hacktoberfest${currentYear}" target="_blank">Here</a> is a link to check out our repo's live stats.`;