-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
327 lines (281 loc) · 10.5 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Enkel Snitt Kalkulator</title>
<style>
:root {
--background-color: #f8f8f8;
--text-color: #333;
--link-color: #4caf50;
--button-background: #4caf50;
--footer-background: #f2f2f2;
--footer-color: #333;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #333;
--text-color: #fff;
--link-color: #77dd77;
--button-background: #77dd77;
--footer-background: #333;
--footer-color: #fff;
}
}
body {
font-family: Arial, sans-serif;
margin: 2vw;
background-color: var(--background-color);
color: var(--text-color);
}
h1 {
text-align: center;
color: var(--link-color);
margin-bottom: 2vw;
}
b {
display: block;
text-align: center;
font-weight: bold;
margin-bottom: 2vw;
}
a {
color: var(--link-color);
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #333;
}
label {
font-weight: bold;
}
textarea {
width: 90vw;
height: 30vh;
resize: vertical;
margin-bottom: 1vw;
padding: 1vw;
border: 0.1vw solid #ccc;
border-radius: 0.4vw;
background-color: #fff;
color: #333;
}
button {
display: block;
margin: 1vw auto;
padding: 1vw 2vw;
background-color: var(--button-background);
color: #fff;
border: none;
border-radius: 0.4vw;
cursor: pointer;
font-size: 1.6vw;
transition: background-color 0.3s;
}
button:hover {
background-color: #45a049;
}
#result {
text-align: center;
font-weight: bold;
}
ul {
list-style: none;
padding-left: 0;
text-align: center;
display: inline-block;
}
ol {
counter-reset: my-counter;
list-style: none;
padding-left: 0;
text-align: center;
}
li {
position: relative;
counter-increment: my-counter;
margin-bottom: 10px;
padding-left: 2vw;
text-align: left;
}
ol li:before {
content: counter(my-counter);
position: absolute;
left: 0;
top: 0;
font-size: 1vw;
font-weight: bold;
line-height: 1;
color: var(--link-color);
}
ul li:before {
position: absolute;
left: 0;
top: 0;
content: "•";
font-size: 1vw;
font-weight: bold;
line-height: 1;
color: var(--link-color);
display: inline-block;
}
li:last-child {
margin-bottom: 0;
}
#instructions {
text-align: center;
}
footer {
background-color: var(--footer-background);
color: var(--footer-color);
padding: 2vw;
text-align: center;
}
footer a {
color: var(--text-color);
font-style: italic;
font-weight: bold;
text-decoration: none;
}
footer a:hover {
color: red;
}
</style>
<script>
// Grade values mapping
const gradeValues = {
A: 5,
B: 4,
C: 3,
D: 2,
E: 1,
F: 0
};
const findLetterGrade = (number) => {
let roundedGrade = parseInt(Math.round(number))
for (const grade in gradeValues) {
if (gradeValues[grade] === roundedGrade) {
return grade;
}
}
return null; // Return null if no grade matches the number
}
// Array to store grade objects
let gradeArray = [];
// Calculation function triggered by input change or button click
const calculate = () => {
// Retrieve input text from textarea
const text = document.getElementById("inputField").value;
// Check if the input field is empty
if (text.trim() === "") {
document.getElementById("result").innerHTML = ""
return;
}
// Variables to store final grade and number of elements
let tempGrade = 0;
let tempWeigth = 0.0;
let totalWeigth = 0.0;
// Split the text into rows
const rows = text.split('\n');
// Determine the starting index for iteration based on the presence of a header row
let i = 0;
if (text.includes("Emnekode")) {
i = 1;
}
// Iterate over each row starting from index 1 (to skip the header row) or 0 if the header row is not present
for (; i < rows.length; i++) {
const columns = rows[i].split('\t');
const aWeight = columns[3];
const aGrade = columns[4];
// Push the values to the array as an object
const obj = {
weight: parseFloat(aWeight),
grade: aGrade
};
gradeArray.push(obj);
}
// Calculate the final grade by multiplying grade value and weight for each object in the array
for (let obj of gradeArray) {
const grade = gradeValues[obj.grade] * obj.weight;
totalWeigth += obj.weight;
// Source https://www.oslomet.no/studier/soknad-og-opptak/poengberegning-rangeringsregler
// Check if the grade is a valid number
if (!isNaN(grade) && Number.isInteger(grade)) {
tempGrade += grade;
tempWeigth += obj.weight;
}
}
// Calculate the average grade and display the result
const finalGrade = ((tempGrade / tempWeigth)).toFixed(2);
if ((isNaN(finalGrade)) || isNaN(totalWeigth)) {
document.getElementById("result").innerHTML = `Noe gikk feil, forsto meg ikke på noen av karakterene`;
}
else {
document.getElementById("result").innerHTML = `Voilà!😎 Ditt snitt er ${finalGrade} av totalt ${totalWeigth} studiepoeng, dette tilsvarer en ${findLetterGrade(finalGrade)}`;
}
// Reset the gradeArray for future calculations
gradeArray = [];
}
// Event listeners for input change and button click
document.addEventListener("DOMContentLoaded", () => {
const inputField = document.getElementById("inputField");
inputField.addEventListener("input", calculate);
const calculateButton = document.getElementById("calculateButton");
calculateButton.addEventListener("click", calculate);
});
</script>
</head>
<body>
<h1>Enkel Snitt Kalkulator</h1>
<div id="form">
<b> For å finne ditt snitt gjør følgende</b>
<ol id="instructions">
<li>Logg inn på <a href="https://sok.samordnaopptak.no/">Samordnaopptak</a></li>
<li>Naviger fra "Gå til dokumentasjon" til Høyre utdanning eller trykk <a
href="https://sok.samordnaopptak.no/#/documentation" target="noreferrer noopener">her</a></li>
<li>Kopier hele tabellen som vist under og lim den inn i tekstfeltet</li>
<li>Trykk "Beregn snittet mitt"</li>
</ol>
<br>
<label for="inputField">Karakter fra Samordnaopptak</label>
<textarea type="text" id="inputField" placeholder="Emnekode Emne Termin Poeng Karakter
ADSE2100 Menneske maskin interaksjon 2022 Høst 10 X
DAPE1400 Programmering 2021 Høst 10 X
DATA1500 Databaser 2022 Vår 10 X
DATA1700 Webprogrammering 2022 Vår 10 X
DAFE2200 Systemutvikling 2022 Høst 10 X
DATA1200 Webutvikling og inkluderende design 2021 Høst 5 X
ADSE1310 Internet of Things 2022 Vår 10 X
DATA2500 Operativsystemer 2023 Vår 10 X
ADTS2310 Testing av programvare 2023 Vår 10 X
DATA1100 Teknologi og samfunn for programmerere 2021 Høst 5 X
DATA2410 Datanettverk og skytjenester 2023 Vår 10 X
DATS2300 Algoritmer og datastrukturer 2022 Høst 10 X
DAPE1300 Diskret matematikk 2021 Høst 10 X"></textarea>
<button id="calculateButton">Beregn snittet mitt</button>
</div>
<p id="result"></p>
<footer>
<p>Ingen av karakterene blir lagret eller sendt. Siden er ikke tilknyttet Samordna Opptak. Den er laget
fordi jeg selv var for lat å regne det ut selv 😋</p>
<p>Karakterene er kalkulert på følgende måte</p>
<p>Formel vektet gjennomsnitt</p>
<ul>
<li>Karakter A med 20 studiepoeng blir 5 x 20 = 100.</li>
<li>Karakter B med 10 studiepoeng blir 4 x 10 = 40.</li>
<li>Karakter B med 15 studiepoeng blir 4 x 15 = 60.</li>
<li>Karakter D med 10 studiepoeng blir 2 x 10 = 20.</li>
</ul>
<p> Den totale summen av alle karakterene deles deretter på antall studiepoeng. Hentet fra
<a href="https://www.oslomet.no/studier/soknad-og-opptak/poengberegning-rangeringsregler"> <i>OsloMet
2023</i>
</a>
</p>
<p>Laget av <a href="https://github.com/rasmusjs">Rasmus</a>, gjerne send <a
href="mailto:[email protected]?subject=Feil på Enkel Snitt kalkulator">meg</a> en epost dersom
du opplever noe feil. Eller endre det <a
href="https://github.com/rasmusjs/Enkel-Snitt-Kalkulator/tree/main">selv</a> på</p>
</footer>
</body>
<!-- Made by Rasmus https://github.com/rasmusjs -->
</html>