-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscheduleDay.js
1352 lines (1290 loc) · 48.9 KB
/
scheduleDay.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
window.onblur = function () {
window.blurTime = performance.now();
};
window.onfocus = function () {
const focusTime = performance.now();
if (
document.getElementById("dateInput").value !== "" &&
localStorage.getItem("access_token") &&
localStorage.getItem("schoolName") &&
focusTime - window.blurTime >= 60000
) {
fetchAppointments(document.getElementById("dateInput").value, "focus");
}
};
const $ = (e) => document.querySelectorAll(e);
const _switches = $("body")[0];
const _colors = $("input[name='color']");
// Load saved theme on page load
const savedTheme = localStorage.getItem("theme");
if (savedTheme) {
_switches.setAttribute("data-theme", savedTheme);
_colors.forEach((radio) => {
radio.checked = radio.value === savedTheme;
});
} else {
// Set default theme from checked radio
const defaultTheme = document.querySelector(
'input[name="color"]:checked'
).value;
_switches.setAttribute("data-theme", defaultTheme);
}
// Get computed style from the body
const bodyStyles = getComputedStyle(document.body);
function hexToRgb(hex) {
hex = hex.replace(/^#/, "");
let bigint = parseInt(hex, 16);
return [(bigint >> 16) & 255, (bigint >> 8) & 255, bigint & 255];
}
function blendWithBlack(rgb, alpha) {
return rgb.map((channel) => Math.round(channel * (1 - alpha)));
}
function rgbToHex(rgb) {
return `#${rgb.map((x) => x.toString(16).padStart(2, "0")).join("")}`;
}
// Get the CSS variable value
const primaryLight = bodyStyles.getPropertyValue("--primary-light").trim();
const rgb = hexToRgb(primaryLight);
var darkerRgb = blendWithBlack(rgb, 0.3);
if (primaryLight == "#4dd0e1") {
darkerRgb = blendWithBlack(rgb, 0.34);
}
if (primaryLight == "#ffcc02") {
darkerRgb = blendWithBlack(rgb, 0.4);
}
const darkerHex = rgbToHex(darkerRgb);
// Select the meta tag
let themeMetaTag = document.querySelector('meta[name="theme-color"]');
// If the meta tag exists, update it; otherwise, create a new one
if (themeMetaTag) {
themeMetaTag.setAttribute("content", darkerHex);
} else {
themeMetaTag = document.createElement("meta");
themeMetaTag.setAttribute("name", "theme-color");
themeMetaTag.setAttribute("content", darkerHex);
document.head.appendChild(themeMetaTag);
}
// Save theme when changed
_colors.forEach((radio) => {
radio.addEventListener("change", (e) => {
if (e.target.checked) {
_switches.setAttribute("data-theme", e.target.value);
localStorage.setItem("theme", e.target.value);
// Get the CSS variable value
const primaryLight = bodyStyles
.getPropertyValue("--primary-light")
.trim();
const rgb = hexToRgb(primaryLight);
var darkerRgb = blendWithBlack(rgb, 0.3);
if (primaryLight == "#4dd0e1") {
darkerRgb = blendWithBlack(rgb, 0.34);
}
if (primaryLight == "#ffcc02") {
darkerRgb = blendWithBlack(rgb, 0.4);
}
const darkerHex = rgbToHex(darkerRgb);
// Select the meta tag
let themeMetaTag = document.querySelector('meta[name="theme-color"]');
// If the meta tag exists, update it; otherwise, create a new one
if (themeMetaTag) {
themeMetaTag.setAttribute("content", darkerHex);
} else {
themeMetaTag = document.createElement("meta");
themeMetaTag.setAttribute("name", "theme-color");
themeMetaTag.setAttribute("content", darkerHex);
document.head.appendChild(themeMetaTag);
}
}
});
});
const authorizationCode = document.getElementById("authorizationCode").value;
var authorizationCodeLS = localStorage.getItem("authorizationCode");
// Wissel de koppelcode in voor de access token (maar alleen als die nog niet in local storage staat)
let accessToken = localStorage.getItem("access_token");
if (/^\d{12}$/.test(authorizationCodeLS)) {
if (accessToken == null || accessToken == "[object Promise]") {
hideDialog();
}
} else if (/^[a-z0-9]{26}$/.test(authorizationCodeLS)) {
localStorage.setItem("access_token", authorizationCodeLS);
}
// Dutch month names
const dutchMonthNames = [
"jan",
"feb",
"mar",
"apr",
"mei",
"jun",
"jul",
"aug",
"sep",
"okt",
"nov",
"dec",
];
const checkbox = document.getElementById("meldingen");
// Function to save checkbox state to localStorage
function saveCheckboxState() {
localStorage.setItem("checkboxState", checkbox.checked);
}
// Function to restore checkbox state from localStorage
function restoreCheckboxState() {
const savedState = localStorage.getItem("checkboxState");
if (savedState !== null) {
checkbox.checked = JSON.parse(savedState);
}
}
const checkbox1 = document.getElementById("vakafkorting");
// Function to save checkbox state to localStorage
function saveCheckboxState1() {
localStorage.setItem("afkorting", checkbox1.checked);
}
// Function to restore checkbox state from localStorage
function restoreCheckboxState1() {
const savedState1 = localStorage.getItem("afkorting");
if (savedState1 !== null) {
checkbox1.checked = JSON.parse(savedState1);
}
}
checkbox1.addEventListener("change", saveCheckboxState1);
// Save state when checkbox is clicked
checkbox.addEventListener("change", saveCheckboxState);
function convertH2M(timeInHour) {
var timeParts = timeInHour.split(":");
return Number(timeParts[0]) * 60 + Number(timeParts[1]);
}
async function fetchAnnouncements() {
const response = await fetch(
"https://" +
localStorage.getItem("schoolName") +
".zportal.nl/api/v3/announcements?user=~me¤t=true&access_token=" +
localStorage.getItem("access_token")
);
const data = await response.json();
const appointments = data.response.data;
var announcementsContainer = document.getElementById("schedule");
var announcementsDiv = document.createElement("div");
announcementsContainer.innerHTML = "";
if (appointments.length === 0) {
announcementsContainer.innerHTML = `<strong id="error-message" style="text-align: center; display: block"
><img
src="es_geenresultaten.webp"
alt=""
style="text-align: center"
width="200px"
height="104px"
/><br />
Geen mededelingen gevonden.</strong
>`;
}
appointments.forEach((announcement) => {
var start = announcement.start * 1000;
start = new Date(start);
var date = start
.toLocaleTimeString("nl-NL", {
day: "2-digit",
month: "short",
hour: "2-digit",
minute: "2-digit",
})
.replace(/^0+/, "");
announcementsDiv.innerHTML =
"<strong>" +
announcement.title +
"</strong><span> " +
date +
"<p>" +
announcement.text +
"</p>";
announcementsContainer.appendChild(announcementsDiv);
});
}
async function userInfo(date) {
const authorizationCode = localStorage.getItem("access_token");
const response = await fetch(
"https://csvincentvangogh.zportal.nl/api/v3/users/~me?fields=code,isEmployee&access_token=" +
authorizationCode
);
const data = await response.json();
const isEmployee = data.response.data[0].isEmployee;
var userType = "student";
if (isEmployee == true) {
userType = "teacher";
}
localStorage.setItem("selectedUserType", userType);
localStorage.setItem("userType", userType);
if (!localStorage.getItem("subjects")) {
retrieveSubjectFullNames();
}
fetchAppointments(date);
}
Date.prototype.getWeek = function () {
var date = new Date(this.getTime());
date.setHours(0, 0, 0, 0);
date.setDate(date.getDate() + 3 - ((date.getDay() + 6) % 7));
var week1 = new Date(date.getFullYear(), 0, 4);
return (
1 +
Math.round(
((date.getTime() - week1.getTime()) / 86400000 -
3 +
((week1.getDay() + 6) % 7)) /
7
)
);
};
function cleanupOldStorage() {
const twoWeeksAgo = new Date();
twoWeeksAgo.setDate(twoWeeksAgo.getDate() - 14);
const yearTwoWeeksAgo = twoWeeksAgo.getFullYear();
const weekTwoWeeksAgo = twoWeeksAgo.getWeek();
Object.keys(localStorage).forEach((key) => {
if (/^\d{4}\d+$/.test(key)) {
// Match format YYYYW
const year = parseInt(key.substring(0, 4), 10);
const week = parseInt(key.substring(4), 10);
if (
year < yearTwoWeeksAgo ||
(year === yearTwoWeeksAgo && week < weekTwoWeeksAgo)
) {
localStorage.removeItem(key);
}
}
});
}
async function retrieveSubjectFullNames() {
let url = `https://${localStorage.getItem(
"schoolName"
)}.zportal.nl/api/v3/subjectselectionsubjects?access_token=${localStorage.getItem(
"access_token"
)}&fields=code,name`;
return fetch(url)
.then((r) => r.json())
.then((result) => {
let teacherTranslations = {};
let subjects = result.response.data;
subjects.forEach((subject) => {
let lastName = subject.name;
if (!lastName) {
return;
}
let commaIndex = lastName.indexOf(",");
if (commaIndex != -1) {
lastName = lastName.substring(0, commaIndex);
}
let fullName = lastName;
teacherTranslations[subject.code] = fullName;
});
localStorage.setItem("subjects", JSON.stringify(teacherTranslations));
});
}
// Function to fetch appointments for the specified date
function fetchAppointments(date, focus) {
// Parse the input date string to get the date and month
const datum = document.getElementById("dateInput").value;
if (/^[a-zA-Z]{2}\s/.test(datum)) {
var [zomadiwodovrza, day, monthName] = datum.split(" ");
} else {
var [day, monthName] = datum.split(" ");
}
const today1 = new Date();
const day1 = today1.getDate();
const daysOfWeek1 = ["zo", "ma", "di", "wo", "do", "vr", "za"];
const zomadiwodovrza1 = daysOfWeek1[today1.getDay()];
const monthName1 = dutchMonthNames[today1.getMonth()];
const formattedDate3 = `${day1} ${monthName1}`;
const formattedDate2 = `${zomadiwodovrza1} ${day1} ${monthName1}`;
if (datum !== formattedDate3 && datum !== formattedDate2) {
document.getElementById("add").setAttribute("style", "display: block;");
}
if (datum === formattedDate3 || datum === formattedDate2) {
document.getElementById("add").setAttribute("style", "display: none;");
}
const monthShort = monthName.substring(0, 3);
const monthIndex = dutchMonthNames.findIndex(
(month) => month.toLowerCase() === monthShort
);
if (monthIndex === -1 || isNaN(parseInt(day))) {
console.error(
"Incorrecte datumformaat. Voer de datum in in het formaat '12 aug' of 'di 12 aug'."
);
return;
}
const currentDate = new Date();
const currentYear = currentDate.getFullYear();
// Construct a Date object with the specified date and current year
const startDate = new Date(currentYear, monthIndex, parseInt(day, 10));
const endDate = new Date(startDate);
endDate.setDate(endDate.getDate() + 1);
const user = document.getElementById("user").value || "~me";
const userType = localStorage.getItem("userType");
const year = startDate.getFullYear();
let week = startDate.getWeek(); // Bereken weeknummer
if (week < 10) week = `0${week}`; // Voeg een voorloopnul toe aan enkelcijferige weken
const schoolName = document.getElementById("schoolName").value;
const authorizationCode = document.getElementById("authorizationCode").value;
let accessToken = localStorage.getItem("access_token");
// Wissel de koppelcode in voor de access token (maar alleen als die nog niet in local storage staat)
let accessToken1 = localStorage.getItem("access_token");
if (/^\d{12}$/.test(authorizationCodeLS)) {
if (accessToken1 == null || accessToken == "undefined") {
accessToken1 = fetchToken(authorizationCode, schoolName);
localStorage.setItem("access_token", accessToken1);
}
} else if (/^[a-z0-9]{26}$/.test(authorizationCodeLS)) {
localStorage.setItem("access_token", authorizationCodeLS);
}
const startTimestamp = Math.floor(startDate.getTime() / 1000);
const endTimestamp = Math.floor(endDate.getTime() / 1000);
const apiUrl = `https://${schoolName}.zportal.nl/api/v3/liveschedule?access_token=${accessToken}&${userType}=~me&week=${year}${week}`;
fetch(apiUrl)
.then((response) => response.json())
.then((data) => {
const appointments = data.response.data[0].appointments;
// Sort appointments by start time
appointments.sort((a, b) => a.start - b.start);
const scheduleDiv = document.getElementById("schedule");
scheduleDiv.innerHTML = ""; // Clear existing schedule
// Checkt bij lege weken of het in een maand met vakanties zit en bepaalt op basis daarvan de vakantie
if (appointments.length === 0) {
if (monthName == "okt" || monthName == "nov") {
scheduleDiv.setAttribute("class", "herfstVak");
}
if (monthName == "dec" || monthName == "jan") {
scheduleDiv.setAttribute("class", "kerstVak");
}
if (monthName == "feb" || monthName == "mar") {
scheduleDiv.setAttribute("class", "voorjaarsVak");
}
if (monthName == "apr" || monthName == "mei") {
scheduleDiv.setAttribute("class", "meiVak");
}
if (monthName == "juli" || monthName == "aug" || monthName == "sep") {
scheduleDiv.setAttribute("class", "zomerVak");
}
} else if (scheduleDiv.getAttribute("class")) {
scheduleDiv.classList.remove(scheduleDiv.getAttribute("class"));
}
// Filter out cancelled lessons if there are multiple lessons for the same hour
const filteredAppointments = filterCancelledLessons(appointments);
let i = 0;
filteredAppointments.forEach((appointment) => {
const startTime = new Date(appointment.start * 1000);
const endTime = new Date(appointment.end * 1000);
// Format start and end times
var startTimeString = startTime
.toLocaleTimeString("nl-NL", {
hour: "2-digit",
minute: "2-digit",
})
.replace(/^0+/, "");
const endTimeString = endTime
.toLocaleTimeString("nl-NL", {
hour: "2-digit",
minute: "2-digit",
})
.replace(/^0+/, "");
// Object met vak afkortingen en hun volledige namen
if (localStorage.getItem("subjects")) {
var subjectsMapping = JSON.parse(localStorage.getItem("subjects"));
}
// Map subjects abbreviations to full names
let subjectsFullNames = appointment.subjects.map(
(subject) => subjectsMapping[subject] || subject
);
if (
appointment.subjects.toString() == "men" &&
localStorage.getItem("schoolName") == "csvincentvangogh"
) {
if (
appointment.groups.toString().includes("1") ||
appointment.groups.toString().includes("2")
) {
subjectsFullNames = ["Mentorles"];
}
}
if (
subjectsFullNames.toString() ===
subjectsFullNames.toString().toUpperCase()
) {
subjectsFullNames = [
subjectsFullNames.toString().charAt(0) +
subjectsFullNames.toString().slice(1).toLowerCase(),
];
}
if (appointment.appointmentInstance == null) {
subjectsFullNames = appointment.actions[0].appointment.subjects.map(
(subject) => subjectsMapping[subject] || subject
);
if (
subjectsFullNames.toString() ===
subjectsFullNames.toString().toUpperCase()
) {
subjectsFullNames = [
subjectsFullNames.toString().charAt(0) +
subjectsFullNames.toString().slice(1).toLowerCase(),
];
}
}
if (localStorage.getItem("afkorting") === "true") {
subjectsFullNames = appointment.subjects;
if (
appointment.subjects.toString() ===
appointment.subjects.toString().toUpperCase()
) {
subjectsFullNames = [
appointment.subjects.toString().charAt(0) +
appointment.subjects.toString().slice(1).toLowerCase(),
];
}
if (appointment.appointmentInstance == null) {
subjectsFullNames = appointment.actions[0].appointment.subjects;
if (
appointment.actions[0].appointment.subjects.toString() ===
appointment.actions[0].appointment.subjects
.toString()
.toUpperCase()
) {
subjectsFullNames = [
appointment.actions[0].appointment.subjects
.toString()
.charAt(0) +
appointment.actions[0].appointment.subjects
.toString()
.slice(1)
.toLowerCase(),
];
}
}
}
let changeDescription = "";
// Create appointment HTML
const appointmentDiv = document.createElement("div");
var timeSlot = "";
if (!appointment.startTimeSlot) {
timeSlot = "";
} else {
timeSlot = appointment.startTimeSlot;
}
var info = "";
if (appointment.appointmentType === "exam") {
info = '<span id="exam">Toets</span>';
}
if (appointment.appointmentType === "activity") {
info = '<span id="activity">Activiteit</span>';
}
if (appointment.appointmentType === "interlude") {
info = '<span id="interlude">Pauze</span>';
}
let warning = "";
let warningsymbol = "";
if (appointment.changeDescription !== "") {
warning = appointment.changeDescription;
warningsymbol = warning
? '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#ff9800" style="vertical-align: sub; margin-right: 2.5px;"><path d="M120-103q-18 0-32.09-8.8Q73.83-120.6 66-135q-8-14-8.5-30.6Q57-182.19 66-198l359-622q9-16 24.1-23.5 15.11-7.5 31-7.5 15.9 0 30.9 7.5 15 7.5 24 23.5l359 622q9 15.81 8.5 32.4Q902-149 894-135t-22 23q-14 9-32 9H120Zm360-140q18 0 31.5-13.5T525-288q0-18-13.5-31T480-332q-18 0-31.5 13T435-288q0 18 13.5 31.5T480-243Zm0-117q17 0 28.5-11.5T520-400v-109q0-17-11.5-28.5T480-549q-17 0-28.5 11.5T440-509v109q0 17 11.5 28.5T480-360Z"/></svg>'
: "";
}
if (appointment.appointmentInstance == null) {
warning = "Afgemeld";
warningsymbol = warning
? `<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" id="icon" style="margin-right: 2.5px"><path d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q54 0 104-17.5t92-50.5L228-676q-33 42-50.5 92T160-480q0 134 93 227t227 93Zm252-124q33-42 50.5-92T800-480q0-134-93-227t-227-93q-54 0-104 17.5T284-732l448 448Z"/></svg>`
: "";
} else if (appointment.schedulerRemark !== "") {
warning = appointment.schedulerRemark;
warningsymbol = warning
? `<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" id="icon" style="margin-right: 2.5px"><path d="M440-280h80v-240h-80v240Zm40-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z"/></svg>`
: "";
}
const teachers =
"(" + appointment.teachers.filter((e) => e != user).join(", ") + ")";
appointmentDiv.innerHTML = `
<p><strong id="vaknaam">${subjectsFullNames.join(
", "
)}</strong><strong style="float: right; margin-right: 9px" id="timeSlot">${info}${timeSlot}</strong></p>
<p>${startTimeString} - ${endTimeString} <span style="margin-left: 10px;">${appointment.locations.join(
", "
)} ${teachers == "()" ? "" : teachers} <span class="warning">
${warningsymbol}
<span class="warningMessage">${warning}</span>
</span></span></p>
<p class="className">${appointment.groups.join(", ")}</p>
`;
appointmentDiv.classList.add(
appointment.cancelled ? "cancelled" : appointment.appointmentType
);
if (appointment.appointmentInstance == null) {
appointmentDiv.classList.remove("cancelled");
appointmentDiv.classList.add("notEnrolled");
}
// Zet pauze tijd om van uren naar minuten
if (i >= -1 && window.endTime) {
var startDecimal = convertH2M(startTimeString);
var endDecimal = convertH2M(window.endTime);
var pauzeTijd = startDecimal - endDecimal;
}
// Stel pauzetijd in bij dezelfde dag
if (i >= 1 && startTimeString != window.endTime) {
appointmentDiv.style = "margin-top: 20px";
if (pauzeTijd >= 280) {
appointmentDiv.style = "margin-top: 525px";
} else if (pauzeTijd >= 240) {
appointmentDiv.style = "margin-top: 450px";
} else if (pauzeTijd >= 200) {
appointmentDiv.style = "margin-top: 375px";
} else if (pauzeTijd >= 160) {
appointmentDiv.style = "margin-top: 300px";
} else if (pauzeTijd >= 120) {
appointmentDiv.style = "margin-top: 225px";
} else if (pauzeTijd >= 80) {
appointmentDiv.style = "margin-top: 150px";
} else if (pauzeTijd >= 40) {
appointmentDiv.style = "margin-top: 75px";
}
}
// Stel pauzetijd in als het het eerste uur is van de week of een andere dag
if (i == 0 || pauzeTijd <= -1) {
startTimeString = Number(startTimeString.replace(":", ""));
// 1e uur
if (timeSlot == 1) {
appointmentDiv.style = "margin-top: 0";
} else if (timeSlot == 2) {
appointmentDiv.style = "margin-top: 75px";
} else if (timeSlot == 3) {
appointmentDiv.style = "margin-top: 150px";
} else if (timeSlot == 4) {
appointmentDiv.style = "margin-top: 225px";
} else if (timeSlot == 5) {
appointmentDiv.style = "margin-top: 300px";
} else if (timeSlot == 6) {
appointmentDiv.style = "margin-top: 375px";
} else if (timeSlot == 7) {
appointmentDiv.style = "margin-top: 450px";
} else if (timeSlot == 8) {
appointmentDiv.style = "margin-top: 525px";
} else if (timeSlot == 9) {
appointmentDiv.style = "margin-top: 600px";
} else if (timeSlot == 10) {
appointmentDiv.style = "margin-top: 675px";
}
}
window.endTime = endTimeString;
i++;
if (focus) {
if (appointmentDiv.getAttribute("style") != null) {
appointmentDiv.style =
appointmentDiv.getAttribute("style") + "; animation-name: none";
} else {
appointmentDiv.style = "animation-name: none";
}
}
const dago = Date.now();
if (dago >= appointment.end * 1000) {
appointmentDiv.classList.add("test");
}
localStorage.setItem("LaatsteSync", dago);
// Check if the browser supports notifications
if (
localStorage.getItem("checkboxState") === "true" &&
localStorage.getItem("checkboxState") != null
) {
if ("Notification" in window) {
// Check if permission has already been granted
if (
Notification.permission === "granted" &&
appointment.cancelled === false
) {
if (datum === formattedDate3 || datum === formattedDate2) {
if (localStorage.getItem("LastNotificationDate") !== datum) {
const startTime = new Date(appointment.start * 1000);
// If it's okay, create a notification
new Notification(subjectsFullNames, {
body:
startTimeString +
"-" +
endTimeString +
" • " +
appointment.locations +
" (" +
appointment.teachers +
")",
icon: "logo.svg",
timestamp: startTime,
});
}
}
}
}
// If the permission is not granted yet, request for it
else if (
localStorage.getItem("checkboxState") === "true" &&
localStorage.getItem("checkboxState") != null
) {
if (Notification.permission !== "denied") {
Notification.requestPermission().then(function (permission) {
// If the user accepts, send the notification
if (
permission === "granted" &&
appointment.cancelled === false
) {
if (datum === formattedDate3 || datum === formattedDate2) {
if (
localStorage.getItem("LastNotificationDate") !== datum
) {
const startTime = new Date(appointment.start * 1000);
// If it's okay, create a notification
new Notification(subjectsFullNames, {
body:
startTimeString +
"-" +
endTimeString +
" • " +
appointment.locations +
" (" +
appointment.teachers +
")",
icon: "logo.svg",
timestamp: startTime,
});
}
}
}
});
}
}
}
appointmentDiv.classList.add(startTime.getDay());
scheduleDiv.appendChild(appointmentDiv);
});
})
.catch((error) =>
console.error("Probleem met het laden van het rooster: ", error)
)
.then((data) => {
// Filter rooster van de week op basis van dag
var week1 = startDate.getWeek();
var yearWeek = year + "" + week1;
var div1 = document.createElement("span");
var scheduleDiv = document.getElementById("schedule");
div1.classList.add("1", "container");
scheduleDiv.appendChild(div1);
[...document.getElementsByClassName("1")].forEach((element) => {
if (element !== div1) {
div1.appendChild(element);
}
});
var div2 = document.createElement("span");
div2.classList.add("2", "container");
scheduleDiv.appendChild(div2);
[...document.getElementsByClassName("2")].forEach((element) => {
if (element !== div2) {
div2.appendChild(element);
}
});
var div3 = document.createElement("span");
div3.classList.add("3", "container");
scheduleDiv.appendChild(div3);
[...document.getElementsByClassName("3")].forEach((element) => {
if (element !== div3) {
div3.appendChild(element);
}
});
var div4 = document.createElement("span");
div4.classList.add("4", "container");
scheduleDiv.appendChild(div4);
[...document.getElementsByClassName("4")].forEach((element) => {
if (element !== div4) {
div4.appendChild(element);
}
});
var div5 = document.createElement("span");
div5.classList.add("5", "container");
scheduleDiv.appendChild(div5);
[...document.getElementsByClassName("5")].forEach((element) => {
if (element !== div5) {
div5.appendChild(element);
}
});
var div6 = document.createElement("span");
div6.classList.add("6", "container");
scheduleDiv.appendChild(div6);
[...document.getElementsByClassName("6")].forEach((element) => {
if (element !== div6) {
div6.appendChild(element);
}
});
var div0 = document.createElement("span");
div0.classList.add("0", "container");
scheduleDiv.appendChild(div0);
[...document.getElementsByClassName("0")].forEach((element) => {
if (element !== div0) {
div0.appendChild(element);
}
});
// Laat bij lege dagen een bericht zien en laat vakanties zien
[1, 2, 3, 4, 5, 6, 0].forEach((num) => {
let element = document.querySelector(`.${CSS.escape(num)}`);
if (element && element.innerHTML.trim() === "") {
element.innerHTML = `<strong id="error-message" style="text-align: center; display: block"
><img
src="es_geenresultaten.webp"
alt=""
style="text-align: center"
width="200px"
height="104px"
/><br />
Geen rooster gevonden voor deze dag.</strong
>`;
if (document.querySelector(".herfstVak")) {
element.innerHTML = "<div>Herfstvakantie</div>" + element.innerHTML;
}
if (document.querySelector(".kerstVak")) {
element.innerHTML = "<div>Kerstvakantie</div>" + element.innerHTML;
}
if (document.querySelector(".voorjaarsVak")) {
element.innerHTML =
"<div>Voorjaarsvakantie</div>" + element.innerHTML;
}
if (document.querySelector(".meiVak")) {
element.innerHTML = "<div>Meivakantie</div>" + element.innerHTML;
}
if (document.querySelector(".zomerVak")) {
element.innerHTML = "<div>Zomervakantie</div>" + element.innerHTML;
}
}
});
localStorage.setItem(yearWeek, scheduleDiv.innerHTML);
});
// Retry every 500ms until the element with id 'vaknaam' exists
const retryInterval = setInterval(function () {
const vaknaamElement = document.getElementById("vaknaam");
if (vaknaamElement) {
if (datum === formattedDate3 || datum === formattedDate2) {
// Element exists, save the date from dateInput to localStorage
const dateInputValue = document.getElementById("dateInput").value;
localStorage.setItem("LastNotificationDate", dateInputValue);
// Stop retrying
clearInterval(retryInterval);
}
}
}, 50); // Check every 50ms
}
// Function to filter out cancelled lessons if there are multiple lessons for the same hour
function filterCancelledLessons(appointments) {
const filteredAppointments = [];
appointments.forEach((appointment) => {
// Check if there is already an appointment for the same hour
const existingAppointment = filteredAppointments.find(
(appt) =>
appt.startTimeSlot === appointment.startTimeSlot &&
appt.start <= appointment.start &&
appt.end >= appointment.end
);
if (existingAppointment) {
// If there's already an appointment and it's not cancelled, keep it and discard the current one
if (!existingAppointment.cancelled && appointment.cancelled) {
return;
}
// If the existing appointment is cancelled, replace it with the current one
if (existingAppointment.cancelled && !appointment.cancelled) {
filteredAppointments.splice(
filteredAppointments.indexOf(existingAppointment),
1,
appointment
);
}
} else {
filteredAppointments.push(appointment);
}
});
return filteredAppointments;
}
// Function to handle loading schedule when button is clicked
document.getElementById("dateInput").addEventListener("change", function () {
const dateInput = document.getElementById("dateInput").value;
if (/^[a-zA-Z]{2}\s/.test(dateInput)) {
var [zomadiwodovrza1, day1, month] = dateInput.split(" ");
} else {
var [day1, month] = dateInput.split(" ");
}
const monthShort = month.substring(0, 3);
const monthIndex = dutchMonthNames.findIndex(
(monthName) => monthName.toLowerCase() === monthShort
);
const currentDate = new Date();
const ActualCurrentDate = new Date();
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day1)
);
var currentWeek = currentDate.getWeek();
var currentYear = currentDate.getFullYear();
const currentDay = currentDate.getDay();
const today = new Date();
const nowWeek = today.getWeek();
if (currentDay == 1) {
document.getElementById("schedule").style = "right: 0;";
} else if (currentDay == 2) {
document.getElementById("schedule").style = "right: 100vw;";
} else if (currentDay == 3) {
document.getElementById("schedule").style = "right: 200vw;";
} else if (currentDay == 4) {
document.getElementById("schedule").style = "right: 300vw;";
} else if (currentDay == 5) {
document.getElementById("schedule").style = "right: 400vw;";
} else if (currentDay == 6) {
document.getElementById("schedule").style = "right: 500vw;";
} else if (currentDay == 0) {
document.getElementById("schedule").style = "right: 600vw;";
}
const ActualCurrentDateInfo =
ActualCurrentDate.getDate() + "" + ActualCurrentDate.getMonth();
const currentDateInfo = currentDate.getDate() + "" + currentDate.getMonth();
if (ActualCurrentDateInfo != currentDateInfo) {
document.getElementById("add").setAttribute("style", "display: block;");
}
if (ActualCurrentDateInfo == currentDateInfo) {
document.getElementById("add").setAttribute("style", "display: none;");
}
if (currentWeek - nowWeek != 0) {
if (localStorage.getItem(currentYear + "" + currentWeek)) {
document.getElementById("schedule").innerHTML = localStorage.getItem(
currentYear + "" + currentWeek
);
} else {
document.getElementById("schedule").innerHTML = "";
}
fetchAppointments(dateInput);
}
});
document.getElementById("add").addEventListener("click", function () {
const dateInput = document.getElementById("dateInput").value;
if (/^[a-zA-Z]{2}\s/.test(dateInput)) {
var [zomadiwodovrza1, day1, month] = dateInput.split(" ");
} else {
var [day1, month] = dateInput.split(" ");
}
const monthShort = month.substring(0, 3);
const monthIndex = dutchMonthNames.findIndex(
(monthName) => monthName.toLowerCase() === monthShort
);
const previousDate = new Date();
previousDate.setFullYear(
previousDate.getFullYear(),
monthIndex,
parseInt(day1)
);
const previousWeek = previousDate.getWeek();
const today = new Date();
const day = today.getDate();
const currentWeek = today.getWeek();
var currentYear = today.getFullYear();
const currentDay = today.getDay();
const daysOfWeek = ["zo", "ma", "di", "wo", "do", "vr", "za"];
const zomadiwodovrza = daysOfWeek[today.getDay()];
const monthName = dutchMonthNames[today.getMonth()];
const formattedDate = `${day} ${monthName}`;
const formattedDate1 = `${zomadiwodovrza} ${day} ${monthName}`;
document.getElementById("dateInput").value = formattedDate1;
if (currentDay == 1) {
document.getElementById("schedule").style = "right: 0;";
} else if (currentDay == 2) {
document.getElementById("schedule").style = "right: 100vw;";
} else if (currentDay == 3) {
document.getElementById("schedule").style = "right: 200vw;";
} else if (currentDay == 4) {
document.getElementById("schedule").style = "right: 300vw;";
} else if (currentDay == 5) {
document.getElementById("schedule").style = "right: 400vw;";
} else if (currentDay == 6) {
document.getElementById("schedule").style = "right: 500vw;";
} else if (currentDay == 0) {
document.getElementById("schedule").style = "right: 600vw;";
}
if (currentWeek - previousWeek != 0) {
if (localStorage.getItem(currentYear + "" + currentWeek)) {
document.getElementById("schedule").innerHTML = localStorage.getItem(
currentYear + "" + currentWeek
);
} else {
document.getElementById("schedule").innerHTML = "";
}
fetchAppointments(formattedDate);
}
document.getElementById("add").setAttribute("style", "display: none;");
});
// Function to handle previous day button click
document.getElementById("previousDay").addEventListener("click", function () {
const dateInput = document.getElementById("dateInput").value;
if (/^[a-zA-Z]{2}\s/.test(dateInput)) {
var [zomadiwodovrza, day, month] = dateInput.split(" ");
} else {
var [day, month] = dateInput.split(" ");
}
const monthShort = month.substring(0, 3);
const monthIndex = dutchMonthNames.findIndex(
(monthName) => monthName.toLowerCase() === monthShort
);
const previousDate = new Date();
previousDate.setFullYear(
previousDate.getFullYear(),
monthIndex,
parseInt(day)
);
var previousWeek = previousDate.getWeek();
const ActualCurrentDate = new Date();
const currentDate = new Date();
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) - 1
);
if (currentDate.getDay() == 0) {
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) - 3
);
}
if (currentDate.getDay() == 6) {
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) - 2
);
}