-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
174 lines (155 loc) · 5.55 KB
/
index.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
// Function to fetch JSON data from a file
function fetchData() {
fetch("info.json") // Specify the path to your JSON file
.then((response) => {
if (!response.ok) {
throw new Error("Network response was not ok");
}
return response.json();
})
.then((data) => {
var information = data;
elems = document.getElementsByClassName("styled-table");
function sortby(a, b) {
console.log(a["# of Skill Badges Completed"]);
console.log(b["# of Skill Badges Completed"]);
var val =
-(
a["# of Skill Badges Completed"] +
a["# of Courses Completed"] +
a["# of GenAI Game Completed"]
) +
(b["# of Skill Badges Completed"] +
b["# of Courses Completed"] +
b["# of GenAI Game Completed"]);
return val;
}
// sorting
information = information.sort(sortby);
information = information.filter(
(prod) =>
prod["Redemption Status"] == "Yes" ||
prod["Student Name"] == "SIDDHARTHA PATRA"
);
console.log(information);
for (i = 0; i < elems.length; i++) {
for (j = 0; j < information.length; j++) {
elem = elems[i];
tr = document.createElement("tr");
td0 = document.createElement("td");
td1 = document.createElement("td");
td2 = document.createElement("td");
td3 = document.createElement("td");
td4 = document.createElement("td");
td5 = document.createElement("td");
td6 = document.createElement("td");
// td7 = document.createElement("td");
td0.textContent = j + 1;
tr.appendChild(td0);
td1.textContent = information[j]["Student Name"];
tr.appendChild(td1);
td2.textContent = information[j]["Enrolment Status"];
tr.appendChild(td2);
td3.textContent = information[j]["# of Courses Completed"];
tr.appendChild(td3);
td4.textContent = information[j]["# of Skill Badges Completed"];
tr.appendChild(td4);
td5.textContent = information[j]["# of GenAI Game Completed"];
tr.appendChild(td5);
td6.textContent =
information[j]["Total Completions of both Pathways"];
tr.appendChild(td6);
// td7.textContent = information[j]["Redemption Status"];
// tr.appendChild(td7);
elem.appendChild(tr);
}
}
})
.catch((error) => {
console.error("There was a problem fetching or displaying data:", error);
});
}
// Call the fetchData function when the page loads
window.addEventListener("load", fetchData);
const start = () => {
setTimeout(function () {
confetti.start();
}, 1000); // 1000 is time that after 1 second start the confetti ( 1000 = 1 sec)
};
// for stopping the confetti
const stop = () => {
setTimeout(function () {
confetti.stop();
}, 5000); // 5000 is time that after 5 second stop the confetti ( 5000 = 5 sec)
};
// after this here we are calling both the function so it works
start();
stop();
// Get the button:
let mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction();
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
const searchForm = document.getElementById("searchForm");
const searchInput = document.getElementById("searchInput");
const resultsTable = document
.getElementById("resultsTable")
.getElementsByTagName("tbody")[0];
searchForm.addEventListener("submit", function (e) {
e.preventDefault();
const searchQuery = searchInput.value.toLowerCase();
fetch("info.json")
.then((response) => {
return response.json();
})
.then((data) => {
const matchingStudents = searchStudentByName(data, searchQuery);
console.log(matchingStudents);
return matchingStudents;
})
.then((data) => displayResults(data));
});
function searchStudentByName(apiData, searchQuery) {
return apiData.filter((student) =>
student["Student Name"].toLowerCase().includes(searchQuery)
);
}
function displayResults(results) {
resultsTable.innerHTML = "";
if (results.length === 0) {
resultsTable.innerHTML =
'<tr><td colspan="3">No matching students found</td></tr>';
} else {
results.forEach((student, ind) => {
const row = resultsTable.insertRow();
const idCell = row.insertCell(0);
const nameCell = row.insertCell(1);
const statusCell = row.insertCell(2);
const courseCompletedCell = row.insertCell(3);
const badgeCell = row.insertCell(4);
const genaiCell = row.insertCell(5);
const totalCompletionCell = row.insertCell(6);
idCell.textContent = ind + 1;
nameCell.textContent = student["Student Name"];
statusCell.textContent = student["Enrolment Status"];
courseCompletedCell.textContent = student["# of Courses Completed"];
badgeCell.textContent = student["# of Skill Badges Completed"];
genaiCell.textContent = student["# of GenAI Game Completed"];
totalCompletionCell.textContent =
student["Total Completions of both Pathways"];
});
}
}