-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathscript.js
More file actions
241 lines (212 loc) · 7.74 KB
/
script.js
File metadata and controls
241 lines (212 loc) · 7.74 KB
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
function dialog(title, content, buttons = [{text: "Close", onclick: "closeDialog();", type: "primary"}], allowEscape = true) {
$(".dialog").html(`
<div class="dialogTitle cutOff"></div>
<div class="dialogContent"></div>
<div class="dialogActions"></div>
`);
$(".dialogTitle").text(title);
$(".dialogContent").html(content);
for (var i = 0; i < buttons.length; i++) {
$(".dialogActions").html(
$(".dialogActions").html() +
"<button" +
(
buttons[i].type == "secondary" ?
" class='secondary'" :
(
buttons[i].type == "bad" ?
" class='bad'" :
(
buttons[i].type == "reallyBad" ?
" class='reallyBad'" :
(
buttons[i].type == "highlight" ?
" class='highlight'" :
""
)
)
)
) +
" onclick='" +
buttons[i].onclick +
"'>" +
buttons[i].text +
"</button>"
);
}
if (allowEscape) {
$(".dialogBackground").attr("onclick", "closeDialog();");
} else {
$(".dialogBackground").attr("onclick", "");
}
$(".dialogBackground").fadeIn();
$(".dialog").fadeIn();
}
function closeDialog() {
$(".dialogBackground").fadeOut();
$(".dialog").fadeOut();
}
function random(min, max) {
return Math.floor(Math.random() * (max - min + 1) + min);
}
window.alert = function(text, title = "Information") {
dialog(title, text, [{text: "OK", onclick: "closeDialog();", type: "primary"}]);
};
$(function() {
$("*[import]").each(function() {
if (!window.location.href.startsWith("file:///")) {
var thisPassOn = this;
$.ajax({
url: $(this).attr("import"),
error: function() {
$(thisPassOn).html("Could not load associated information.");
}
}).done(function(data) {
$(thisPassOn).html(data);
});
} else {
$(this).html("<em>Content will go here at run-time: " + $(this).attr("import") + "</em>");
}
});
$("*[markdown]").each(function() {
if (!window.location.href.startsWith("file:///")) {
var thisPassOn = this;
$.ajax({
url: $(this).attr("markdown"),
error: function() {
$(thisPassOn).html("Could not load associated information.");
}
}).done(function(data) {
$(thisPassOn).html(new showdown.Converter().makeHtml(data));
});
} else {
$(this).html("<em>Content will go here at run-time: " + $(this).attr("markdown") + "</em>");
}
});
$("body").on("mousedown", "*", function(event) {
if (($(this).is(":focus") || $(this).is(event.target)) && $(this).css("outline-style") == "none") {
$(this).css("outline", "none").on("blur", function() {
$(this).off("blur").css("outline", "");
});
}
});
setInterval(function() {
$("*[markdownrf]").each(function() {
if (!window.location.href.startsWith("file:///")) {
var thisPassOn = this;
$.ajax({
url: $(this).attr("markdownrf"),
error: function() {
$(thisPassOn).html("Could not load associated information.");
}
}).done(function(data) {
if ($(thisPassOn).html() != new showdown.Converter().makeHtml(data)) {
$(thisPassOn).html(new showdown.Converter().makeHtml(data));
}
});
} else {
$(this).html("<em>Content will go here at run-time: " + $(this).attr("markdownrf") + "</em>");
}
});
}, 1000);
firebase.auth().onAuthStateChanged(function() {
if (isStaff(currentUid)) {
$(".admin").css("display", "block");
$(".adminSpan").css("display", "inline-block");
$(".notAdmin").css("display", "none");
$(".notAdminSpan").css("display", "none");
} else {
$(".admin").css("display", "none");
$(".adminSpan").css("display", "none");
$(".notAdmin").css("display", "block");
$(".notAdminSpan").css("display", "inline-block");
}
});
setInterval(function() {
$(".loader").css("color", "#262626");
}, 4000);
setTimeout(function() {
setInterval(function() {
$(".loader").css("color", "#424242");
}, 4000);
$(".loader").css("color", "#424242");
}, 2000);
$(".loader").css("color", "#262626");
(function() {
var isChromium = window.chrome;
var winNav = window.navigator;
var vendorName = winNav.vendor;
var isOpera = typeof window.opr !== "undefined";
var isIEedge = winNav.userAgent.indexOf("Edge") > -1;
var isIOSChrome = winNav.userAgent.match("CriOS");
var isSafari = winNav.userAgent.indexOf("Safari") > -1;
var isFirefox = navigator.userAgent.search("Firefox") > -1;
var isSamsungBrowser = navigator.userAgent.match(/samsungBrowser/i);
if (!(
isChromium !== null &&
typeof isChromium !== "undefined" &&
vendorName === "Google Inc." &&
isOpera === false &&
isIEedge === false
) && (
!isFirefox &&
!isIOSChrome &&
!isSamsungBrowser &&
!isSafari
)) {
window.location.href = "/notSupported.html";
}
})();
});
function copyCurrentURL() {
var dummy = document.createElement("input"),
text = window.location.href;
document.body.appendChild(dummy);
dummy.value = text;
dummy.select();
document.execCommand("copy");
document.body.removeChild(dummy);
}
// Keyboard Shortcuts
$(document).ready(function () {
$('body').on('keydown',function(e){
if (e.altKey && e.which == 71) {
// Alt + G (redirects to index.html)
window.location.href = "/";
} else if (e.altKey && e.which == 67) {
// Alt + C (redirects to chat.html)
window.location.href = "/chat.html";
} else if (e.altKey && e.which == 65) {
// Alt + A (redirects to account)
window.location.href = "/account";
} else if (e.altKey && e.which == 82) {
// Alt + R (redirects to upload.html)
window.location.href = "/upload.html";
} else if (window.location.href.indexOf("/game") > -1) {
if (e.altKey && e.which == 76) {
// Alt + L (likes/unlikes game)
like();
} else if (e.altKey && e.which == 85) {
// Alt + U (goes to uploader's profile)
document.getElementById("uploaderProfile").click();
}
}
});
});
function capitalizeText(str) {
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}
let deferredPrompt;
window.addEventListener('beforeinstallprompt', (e) => {
// Stash the event so it can be triggered later.
deferredPrompt = e;
});
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js', { scope: '/' })
.then(function(registration) {
console.log('Service Worker Registered');
});
navigator.serviceWorker.ready.then(function(registration) {
console.log('Service Worker Ready');
});
}