-
Notifications
You must be signed in to change notification settings - Fork 3
/
scheduleDaytest.js
679 lines (632 loc) · 23.9 KB
/
scheduleDaytest.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
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);
}
}
window.onload = restoreCheckboxState;
// Save state when checkbox is clicked
checkbox.addEventListener("change", saveCheckboxState);
// Function to fetch appointments for the specified date
function fetchAppointments(date) {
// 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(
"Invalid date format. Please enter date in the format 'DD Month', e.g., '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 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/appointments?user=${user}&start=${startTimestamp}&end=${endTimestamp}&valid=true&fields=subjects,type,cancelled,locations,startTimeSlot,endTimeSlot,start,end,groups,teachers,changeDescription&access_token=${accessToken}`;
fetch(apiUrl)
.then((response) => response.json())
.then((data) => {
const appointments = data.response.data;
// Sort appointments by start time
appointments.sort((a, b) => a.start - b.start);
const scheduleDiv = document.getElementById("schedule");
scheduleDiv.innerHTML = ""; // Clear existing schedule
const errorMessageDiv = document.getElementById("error-message");
if (appointments.length === 0) {
scheduleDiv.style.display = "none";
errorMessageDiv.style.display = "block";
} else {
scheduleDiv.style.display = "block";
errorMessageDiv.style.display = "none";
}
// Filter out cancelled lessons if there are multiple lessons for the same hour
const filteredAppointments = filterCancelledLessons(appointments);
filteredAppointments.forEach((appointment) => {
const startTime = new Date(appointment.start * 1000);
const endTime = new Date(appointment.end * 1000);
// Format start and end times
const 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
const subjectsMapping = {
ak: "Aardrijkskunde",
en: "Engels",
fa: "Frans",
gd: "Godsdienst",
gs: "Geschiedenis",
ha: "Handvaardigheid",
ict: "Informatiekunde",
in: "Informatiekunde",
kcv: "Klassieke Culturele Vorming",
lo: "Lichamelijke opvoeding",
men: "Mentorles",
mn: "Mens en natuur",
mu: "Muziek",
ne: "Nederlands",
te: "Tekenen/Techniek",
wi: "Wiskunde",
wis: "Wiskunde",
fr: "Frans",
nl: "Nederlands",
du: "Duits",
bi: "Biologie",
na: "Natuurkunde",
nat: "Natuurkunde",
sk: "Scheikunde",
nask: "NaSk",
ec: "Economie",
econ: "Economie",
ma: "Maatschappijleer",
maat: "Maatschappijleer",
be: "Beeldende Vorming",
kv: "Kunstvakken",
fi: "Filosofie",
la: "Latijn",
gr: "Grieks",
PROJECT: "Project",
rkn: "Rekentoets",
pe: "Physical education",
ontw: "Ontwerpen",
ltc: "Latijn",
gtc: "Grieks",
entl: "Engels",
ges: "Geschiedenis",
fatl: "Frans",
biol: "Biologie",
netl: "Nederlands",
gds: "Godsdienst",
wis: "Wiskunde",
die: "Diëtetiek",
kubv: "Kunst Beeldende Vakken",
bg: "Begeleiding",
sp: "Spaans",
BSA: "Bindend studieadvies",
bsa: "Bindend studieadvies",
bo: "Bewegingsonderwijs",
glstnl: "Global Studies NL",
nlt: "Natuur leven technologie",
wisd: "Wiskunde D",
wisc: "Wiskunde C",
wisb: "Wiskunde B",
wisa: "Wiskunde A",
Act: "Activiteit",
SPORTDAG: "Sportdag",
};
// Map subjects abbreviations to full names
let subjectsFullNames = appointment.subjects.map(
(subject) => subjectsMapping[subject] || subject
);
if (localStorage.getItem("afkorting") === "true") {
subjectsFullNames = appointment.subjects;
}
let changeDescription = "";
// Create appointment HTML
const appointmentDiv = document.createElement("div");
if (!appointment.startTimeSlot) {
var timeSlot = "";
if (appointment.type === "exam") {
var timeSlot = "Toets";
}
if (appointment.type === "activity") {
var timeSlot = "Activiteit";
}
} else {
var timeSlot = appointment.startTimeSlot;
}
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>'
: "";
}
const teachers =
"(" + appointment.teachers.filter((e) => e != user).join(", ") + ")";
appointmentDiv.innerHTML = `
<p><strong id="vaknaam">${subjectsFullNames.join(
", "
)}</strong><strong style="position:absolute;right:7.5px;" id="timeSlot">${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.type
);
const dago = Date.now(); if (dago <= appointment.end * 1000) {appointmentDiv.classList.add("test");} localStorage.setItem("LaatsteSync", dago);
// Check if the browser supports notifications
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 (Notification.permission !== "denied") {
if (localStorage.getItem("checkboxState") === "true") {
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,
});
}
}
}
});
}
}
} else {
console.log("This browser does not support notifications.");
}
scheduleDiv.appendChild(appointmentDiv);
});
})
.catch((error) => console.error("Error fetching data: ", error));
// 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;
fetchAppointments(dateInput);
});
setInterval(function() {if (document.querySelector("td")) {
document.querySelector("td").addEventListener("click", function () {
const dateInput = document.getElementById("dateInput").value;
fetchAppointments(dateInput);
});}}, 500);
document.getElementById("add").addEventListener("click", function () {
const today = new Date();
const day = today.getDate();
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;
fetchAppointments(formattedDate);
});
// 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 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
);
}
const daysOfWeek = ["zo", "ma", "di", "wo", "do", "vr", "za"];
const zomadiwodovrza1 = daysOfWeek[currentDate.getDay()];
const nextDay =
zomadiwodovrza1 +
" " +
currentDate.getDate() +
" " +
dutchMonthNames[currentDate.getMonth()];
document.getElementById("dateInput").value = nextDay;
fetchAppointments(nextDay);
});
// Function to handle next day button click
document.getElementById("nextDay").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 currentDate = new Date();
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) + 1
);
if (currentDate.getDay() == 0) {
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) + 2
);
}
if (currentDate.getDay() == 6) {
currentDate.setFullYear(
currentDate.getFullYear(),
monthIndex,
parseInt(day) + 3
);
}
const daysOfWeek = ["zo", "ma", "di", "wo", "do", "vr", "za"];
const zomadiwodovrza1 = daysOfWeek[currentDate.getDay()];
const nextDay =
zomadiwodovrza1 +
" " +
currentDate.getDate() +
" " +
dutchMonthNames[currentDate.getMonth()];
document.getElementById("dateInput").value = nextDay;
fetchAppointments(nextDay);
});
// Fetch appointments for today when the page loads
document.addEventListener("DOMContentLoaded", function () {
// Default to today's date
const today = new Date();
const day = today.getDate();
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;
fetchAppointments(formattedDate);
});
// Sla schoolnaam en token op
schoolName.value = localStorage.getItem("schoolName");
schoolName.oninput = () => {
localStorage.setItem("schoolName", schoolName.value);
};
authorizationCode.value = localStorage.getItem("authorizationCode");
authorizationCode.oninput = () => {
localStorage.setItem("authorizationCode", authorizationCode.value);
};
user.value = localStorage.getItem("user");
user.oninput = () => {
localStorage.setItem("user", user.value);
};
css.value = localStorage.getItem("css");
css.oninput = () => {
localStorage.setItem("css", css.value);
};
// Functie om dialoogvenster te tonen
function showDialog() {
const dialog = document.getElementById("dialog");
dialog.showModal();
}
// Functie om de access token te verkrijgen door middel van de koppelcode.
async function fetchToken(authorizationCode, schoolName) {
try {
const url = `https://${schoolName}.zportal.nl/api/v3/oauth/token?grant_type=authorization_code&code=${authorizationCode}`;
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
});
if (!response.ok) {
throw new Error(`Error ${response.status}: ${response.statusText}`);
}
const parsedresp = await response.json();
const accessToken = parsedresp["access_token"];
localStorage.setItem("access_token", accessToken);
return accessToken;
} catch (error) {
console.error("Error fetching access token:", error.message);
}
}
// Functie om dialoogvenster te verbergen
async function hideDialog() {
const dialog = document.getElementById("dialog");
const schoolName = document.getElementById("schoolName").value;
const authorizationCode = document.getElementById("authorizationCode").value;
// 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(authorizationCode)) {
if (accessToken == null || accessToken == "[object Promise]") {
accessToken = await fetchToken(authorizationCode, schoolName);
localStorage.setItem("access_token", accessToken);
}
} else if (/^[a-z0-9]{26}$/.test(authorizationCodeLS)) {
localStorage.setItem("access_token", authorizationCodeLS);
}
// Apply stored color theme on page load
const storedColor = localStorage.getItem("color");
if (storedColor) {
document
.getElementById("color-theme")
.setAttribute("href", `${storedColor}.css`);
}
dialog.close();
const dateInput = document.getElementById("dateInput").value;
fetchAppointments(dateInput);
document.getElementById("css").click();
}
document.addEventListener("DOMContentLoaded", function () {
const schoolName = localStorage.getItem("schoolName") || "";
const authorizationCode = localStorage.getItem("authorizationCode") || "";
if (schoolName.trim() === "" || authorizationCode.trim() === "") {
// Als een van de opgeslagen waarden leeg is, toon dialoogvenster
showDialog();
} else {
}
});
function update_section(with_what, what) {
document.getElementById(what + "goeshere").innerHTML = with_what;
}
document.addEventListener("DOMContentLoaded", function () {
document.getElementById("css").click();
});
function loadPreviousDaySchedule() {
document.getElementById("previousDay").click();
}
function loadNextDaySchedule() {
document.getElementById("nextDay").click();
}
// Function to handle arrow key presses
function handleArrowKeyPress(event) {
const key = event.key;
if (key === "ArrowLeft") {
// Arrow left, load previous day schedule
loadPreviousDaySchedule();
} else if (key === "ArrowRight") {
// Arrow right, load next day schedule
loadNextDaySchedule();
}
}
let startX;
let startY;
const minSwipeDistance = 50;
// Event listeners for touch events
document.addEventListener('touchstart', handleTouchStart, false);
document.addEventListener('touchmove', handleTouchMove, false);
document.addEventListener('touchend', handleTouchEnd, false);
function handleTouchStart(e) {
const touch = e.touches[0];
startX = touch.pageX;
startY = touch.pageY;
}
function handleTouchMove(e) {e.preventDefault();}
function handleTouchEnd(e) {
const touch = e.changedTouches[0];
const endX = touch.pageX;
const endY = touch.pageY;
const deltaX = endX - startX;
const deltaY = endY - startY;
if (Math.abs(deltaX) > Math.abs(deltaY)) {
if (Math.abs(deltaX) > minSwipeDistance) {
if (deltaX > 0) {
// Swipe left
loadPreviousDaySchedule();
} else {
// Swipe right
loadNextDaySchedule();
}
}
}
}
// Add event listener for keydown event on the document
document.addEventListener("keydown", handleArrowKeyPress);
// Focus on the input field to capture arrow key events
document.getElementById("keyboard").focus();
if (typeof navigator.serviceWorker !== "undefined") {
navigator.serviceWorker.register("sw.js");
}
// Function to apply color theme
function applyColorTheme(color) {
// Save selected color to local storage
localStorage.setItem("color", color);
// Apply color theme stylesheet
document
.getElementById("color-theme")
.setAttribute("href", `${storedColor}.css`);
}
// Apply stored color theme on page load
const storedColor = localStorage.getItem("color");
if (storedColor) {
applyColorTheme(storedColor);
}
// Color theme selector event listener
document.getElementById("color-select").addEventListener("change", function () {
applyColorTheme(this.value);
});