-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
350 lines (331 loc) · 11.3 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
// work on https://cusis.cuhk.edu.hk/psc/CSPRD/EMPLOYEE/HRMS/c/NUI_FRAMEWORK.PT_AGSTARTPAGE_NUI.GBL?CONTEXTIDPARAMS=TEMPLATE_ID%3aPTPPNAVCOL&scname=CS_SSR_ACADEMIC_RECORDS_FL&PanelCollapsible=Y&PTPPB_GROUPLET_ID=ACADEMICRECORDS&CRefName=ACADEMICRECORDS
const tabList = document.getElementsByClassName(
"ps_ag-step-group-list-level1"
)[0];
function getGradeDetails() {
const titles = ["class", "description", "term", "grade", "units", "status"];
const allGradedClasses = [
...document.getElementsByClassName("ps_grid-body")[0].children
]
.map(x => {
let obj = new Object();
obj["subject"] = x.firstElementChild.innerText.slice(0, 4);
[...x.children].forEach((y, i) => (obj[titles[i]] = y.innerText));
return obj;
})
.filter(x => x["status"] === "Taken" && parseInt(x["units"]))
.map(x => {
x["units"] = parseInt(x["units"]);
return x;
});
return allGradedClasses;
}
let gradeDetails = [];
function genGradeAnalyserPage() {
function getGroups(groupByValue) {
const gradeOder = [
"A",
"A-",
"B+",
"B",
"B-",
"C+",
"C",
"C-",
"D+",
"D",
"P",
"F"
];
let groups = gradeDetails
.map(x => x[groupByValue])
.filter((value, index, array) => array.indexOf(value) === index);
switch (groupByValue) {
case "subject":
groups = groups
.map(x => {
return {
count: gradeDetails.filter(y => y[groupByValue] === x).length,
value: x
};
})
.filter(x => x.count > 3)
.sort((x, y) => {
if (x.count < y.count) {
return 1;
} else if (x.count > y.count) {
return -1;
} else {
return 0;
}
})
.map(x => x.value);
groups.push("Other");
break;
case "grade":
groups.sort((x, y) => {
if (gradeOder.indexOf(x) < gradeOder.indexOf(y)) {
return -1;
} else if (gradeOder.indexOf(x) > gradeOder.indexOf(y)) {
return 1;
} else {
return 0;
}
});
break;
default:
groups.sort();
}
return groups;
}
function groupByChanged() {
const displayBySelect = document.getElementById("displayBy");
displayBySelect.innerHTML = `
<option disabled selected value> -- please select -- </option>
<option value="all">All</option>
<option value="none">No grouping</option>
`;
const groupByValue = document.getElementById("groupBy").value;
if (!groupByValue) {
return;
}
const groups = getGroups(groupByValue);
groups.forEach(groupName => {
displayBySelect.innerHTML +=
"<option value='" + groupName + "'>" + groupName + "</option>";
});
}
function clickShowResult(event) {
function checkBelongsToGroup(classDetails, groupMode, group, groups) {
if (groupMode === "subject" && group === "Other") {
return groups.indexOf(classDetails[groupMode]) == -1;
} else {
return classDetails[groupMode] === group;
}
}
event.preventDefault();
const groupByValue = document.getElementById("groupBy").value;
const distinguishByValue = document.getElementById("distinguishBy").value;
const calculateByValue = document.getElementById("calculateBy").value;
const displayByValue = document.getElementById("displayBy").value;
if (
!groupByValue ||
!distinguishByValue ||
!calculateByValue ||
!displayByValue
) {
return;
}
const groupByGroups = getGroups(groupByValue);
const distinguishByGroups = getGroups(distinguishByValue);
let plotData;
if (displayByValue === "all") {
plotData = distinguishByGroups
.map(distinguishByGroup =>
gradeDetails.filter(classDetails =>
checkBelongsToGroup(
classDetails,
distinguishByValue,
distinguishByGroup,
distinguishByGroups
)
)
)
.map((classesDetails, index) => {
const trace = {
x: groupByGroups,
y: new Array(groupByGroups.length).fill(0),
name: distinguishByGroups[index],
type: "bar"
};
classesDetails.forEach(classDetails => {
const groupIndex = groupByGroups.findIndex(groupName =>
checkBelongsToGroup(
classDetails,
groupByValue,
groupName,
groupByGroups
)
);
if (groupIndex != -1) {
switch (calculateByValue) {
case "course":
trace.y[groupIndex] += 1;
break;
case "credit":
trace.y[groupIndex] += classDetails["units"];
break;
}
}
});
return trace;
});
} else {
plotData = [
{
values: new Array(distinguishByGroups.length).fill(0),
labels: distinguishByGroups,
type: "pie",
textinfo: "label+percent+value",
textposition: "outside",
automargin: true
}
];
const filteredGradeDetails =
displayByValue === "none"
? gradeDetails
: gradeDetails.filter(classDetails =>
checkBelongsToGroup(
classDetails,
groupByValue,
displayByValue,
groupByGroups
)
);
filteredGradeDetails.forEach(classDetails => {
const groupIndex = distinguishByGroups.findIndex(groupName =>
checkBelongsToGroup(
classDetails,
distinguishByValue,
groupName,
distinguishByGroups
)
);
if (groupIndex != -1) {
switch (calculateByValue) {
case "course":
plotData[0].values[groupIndex] += 1;
break;
case "credit":
plotData[0].values[groupIndex] += classDetails["units"];
break;
}
}
});
while (plotData[0].values.indexOf(0) != -1) {
const indexToRemove = plotData[0].values.indexOf(0);
plotData[0].values.splice(indexToRemove, 1);
plotData[0].labels.splice(indexToRemove, 1);
}
}
const layout = {
autosize: true
};
Plotly.newPlot("plotDiv", plotData, layout);
}
const pageContainer = document.getElementById("divPAGECONTAINER_TGT");
const gradeAnalyserRoot = document.createElement("div");
const portlyScript = document.createElement("script");
portlyScript.setAttribute("src", "https://cdn.plot.ly/plotly-1.2.0.min.js");
const groupBySelectDiv = document.createElement("div");
groupBySelectDiv.innerHTML = `
<label for="groupBy">Group by:</label>
<select name="groupBy" id="groupBy">
<option disabled selected value> -- please select -- </option>
<option value="subject">Subject</option>
<option value="term">Term</option>
<option value="grade">Grade</option>
</select>
`;
const distinguishBySelectDiv = document.createElement("div");
distinguishBySelectDiv.innerHTML = `
<label for="distinguishBy">Distinguish by:</label>
<select name="distinguishBy" id="distinguishBy">
<option disabled selected value> -- please select -- </option>
<option value="subject">Subject</option>
<option value="term">Term</option>
<option value="grade">Grade</option>
</select>
`;
const calculateBySelectDiv = document.createElement("div");
calculateBySelectDiv.innerHTML = `
<label for="calculateBy">Calculate by:</label>
<select name="calculateBy" id="calculateBy">
<option disabled selected value> -- please select -- </option>
<option value="course">By course</option>
<option value="credit">By credit</option>
</select>
`;
const displayBySelectDiv = document.createElement("div");
displayBySelectDiv.innerHTML = `
<label for="displayBy">Show result for:</label>
<select name="displayBy" id="displayBy">
<option disabled selected value> -- please select -- </option>
</select>
`;
const showResultButtonDiv = document.createElement("div");
showResultButtonDiv.innerHTML = `
<button class='ps-button' id='showResult'>
<span class='ps-text'>Show result</span>
</button>
`;
const plotDiv = document.createElement("div");
plotDiv.setAttribute("id", "plotDiv");
gradeAnalyserRoot.setAttribute(
"class",
"ps_scrollable ps_scrollable_v sbar sbar_v"
);
gradeAnalyserRoot.append(portlyScript);
gradeAnalyserRoot.append(plotDiv);
gradeAnalyserRoot.append(groupBySelectDiv);
gradeAnalyserRoot.append(distinguishBySelectDiv);
gradeAnalyserRoot.append(calculateBySelectDiv);
gradeAnalyserRoot.append(displayBySelectDiv);
gradeAnalyserRoot.append(showResultButtonDiv);
pageContainer.innerHTML = "";
pageContainer.append(gradeAnalyserRoot);
document.getElementById("groupBy").addEventListener("change", groupByChanged);
document
.getElementById("showResult")
.addEventListener("click", clickShowResult);
}
async function clickGradeAnalyser() {
cancelBubble(event);
document
.getElementsByClassName("ps_ag-step-group-list")[0]
.firstElementChild.children[1].firstElementChild.click();
await new Promise(r => setTimeout(r, 1000));
gradeDetails = getGradeDetails();
if (!top.ptgpPage.openCustomStepButton(`gradeAnalyser`)) {
top.ptgpPage.selectStep(`gradeAnalyser`);
}
genGradeAnalyserPage();
return false;
}
const gradeAnalyserTabButton = document.createElement("li");
gradeAnalyserTabButton.setAttribute(
"class",
"ps_box-scrollarea-row psc_rowact ps-listitem psc_margin-none ps_ag-step"
);
gradeAnalyserTabButton.setAttribute("ptgpid", "gradeAnalyser");
gradeAnalyserTabButton.innerHTML = `
<div class="ps_box-group psc_layout ps_ag-step-button-wrapper">
<div
ptgpid="gradeAnalyser"
onkeydown="cancelBubble(event);ptgpPage.stepKeyboardEventHandler(event, 'gradeAnalyser');"
class="ps_box-group psc_layout ps_ag-step-button ps_ag-step-first psc_visited"
id="gradeAnalyserTabButton"
>
<div class="ps_box-group psc_layout ps_ag-step-wrapper psc_nolabel psc_display-inlineblock">
<div class="ps_box-group psc_layout ps_ag-step-main psc_display-inlineblock">
<div class="ps_box-group psc_layout ps_ag-step-link-wrapper">
<div class="ps_box-img psc_margin-none ps_ag-step-link-icon psc_display-inlineblock">
<img
src="https://cusis.cuhk.edu.hk/cs/CSPRD/cache/PS_PERF_STATUS_PIE_CHART_L_FL_1.svg"
class="ps-img"
alt=""
title="Grade Analyser"
/>
</div><div class="ps_box-edit psc_disabled psc_wrappable psc_has_value psc_margin-none ps_ag-step-link-label psc_display-inlineblock psc_label-suppressed">
<span class="ps_box-value">Grade Analyser</span>
</div>
</div>
</div>
</div>
</div>
</div>
`;
tabList.append(gradeAnalyserTabButton);
document
.getElementById("gradeAnalyserTabButton")
.addEventListener("click", clickGradeAnalyser);