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
|
function getUrlParameter(sParam) {
const url_params = new URLSearchParams(window.location.search);
const found_param = url_params.get(sParam);
if (found_param === null) {
return ""
} else {
return found_param
}
}
function setupStorage() {
promises_to_run = [
localforage.setItem("logged_in", false),
localforage.setItem("username", ""),
localforage.setItem("password", ""),
localforage.setItem("profile", {}),
localforage.setItem("timetable", []),
localforage.setItem("teachers", []),
localforage.setItem("gradings", []),
localforage.setItem("grades", []),
localforage.setItem("absences", {}),
localforage.setItem("messages", {}),
localforage.setItem("directory", {}),
localforage.setItem("meals", {})
];
Promise.all(promises_to_run)
.then(
window.location.replace("/login.html")
);
}
localforage.getItem("logged_in")
.then(
function (value) {
// This code runs once the value has been loaded
// from the offline store.
if (value === null) {
// Setup the storage if it doesn't exist
setupStorage();
} else if (value === false) {
// If storage exists, but user isn't logged in, redirect to login
window.location.replace("/login.html");
} else {
// User is logged in, execute appropriate action
if (getUrlParameter("m") !== "") {
window.location.replace("/pages/messaging.html#" + getUrlParameter("m"));
} else {
window.location.replace("/pages/timetable.html");
}
}
}
).catch(
function (err) {
// This code runs if there were any errors
console.log(err);
}
);
|