-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
141 lines (126 loc) · 3.88 KB
/
app.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
/**
* © 2023-2024 Wo-r, Released under the GNU General Public License.
*/
(async function () {
"use strict";
const hlp = await import("/src/helpers.js");
const site = await import("/src/site.js");
/**
* Set the site theme to match the currently set user theme.
*/
{
if (hlp.get("theme") == undefined) {
hlp.set("theme", {
sync: true,
theme: "dark",
color: "blue"
});
}
// Automatically set the theme if sync is sync is enabled.
let theme = hlp.get("theme");
if (theme.sync) {
theme.theme = window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
hlp.set("theme", theme);
}
$("body").addClass(`${hlp.gettheme("theme-bg")} ${hlp.gettheme("theme-text")}`).removeClass("bg-blue-700");
$("#pre-loader").addClass(hlp.gettheme("bg", "700"));
}
/**
* Sets the tailwind configurations for the site.
*/
tailwind.config = {
plugins: [],
theme: {
extend: {
width: {
"full": "100% !important"
},
screens: {
"3xl-sm": "535px",
"2xl-sm": "475px",
"1xl-sm": "425px",
"xl-sm": "375px",
"lg-sm": "325px",
"md-sm": "275px",
"sm-sm": "225px"
},
// Keep original container sizes, since it will try to follow
// screen widths for some reason.
container: {
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px'
},
},
}
}
};
/**
* Registers the Service Worker allowing the website to become a Web App.
*/
if ("serviceWorker" in navigator) {
self.addEventListener("install", function (e) {});
self.addEventListener("activate", function (e) {});
self.addEventListener("fetch", function (e) {
e.respondWith(fetch(e.request));
});
navigator.serviceWorker.register("app.js");
}
/**
* Anything localstorage must be setup, so it doesn't need more complex code
* make sure it exists anyways.
*/
{
if (hlp.get("page") == undefined && hlp.session.exists) {
hlp.set("page", {
page: "overview",
params: []
});
}
if (hlp.get("page") == undefined || (hlp.get("page") != undefined && !hlp.session.exists)) {
hlp.set("page", {
page: "login",
params: []
});
}
if (hlp.get("settings") == undefined) {
hlp.set("settings", [
{
option: "include-self",
$value: true
},
{
option: "chip-indicators",
$value: true
},
{
option: "hide-excused",
$value: false
}
]);
}
if (hlp.get("pfp") == undefined) {
hlp.set("pfp", "");
}
if (hlp.get("hidden") == undefined) {
hlp.set("hidden", []);
}
if (hlp.get("gpa") == undefined) {
hlp.set("gpa", {
regular: null,
weighted: null,
courses: []
});
}
if (hlp.get("activities") == undefined) {
hlp.set("activities", []);
}
}
/**
* Run the currently set page.
*/
site.runtime(hlp.get("page").page)
})();