-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalerts.js
330 lines (255 loc) · 9.06 KB
/
alerts.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
var alerts = [];
var day_one = ["Alt-j", "The XX", "QOTSA","Rhye"];
var hours = ["18h00", "19h30", "21h00", "22h30"];
var palcos = ["Palco 1", "Palco 2", "Palco 1", "Palco1"];
var day_two = ["Foals", "Slide", "MGMT", "DIIV"];
function loadData (data) {
localStorage.setItem("AlertsData", JSON.stringify(data));
}
function addAlert (name) {
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
if (storedData != null) {
storedData.push(name);
loadData(storedData);
}
else {
alerts.push(name);
loadData(alerts);
}
}
function showAlert (name) {
var btn = document.createElement("BUTTON");
var alert = document.createTextNode(name);
btn.appendChild(alert);
var att = document.createAttribute("class");
att.value = "menuButtons1";
btn.setAttributeNode(att);
var scrollbar = document.getElementsByClassName("scrollbar")[0];
scrollbar.appendChild(btn);
}
function showEvent (name, horas, palco) {
var btn = document.createElement("BUTTON");
var alert = document.createTextNode(name);
btn.appendChild(alert);
var att = document.createAttribute("class");
att.value = "eventbutton";
btn.setAttributeNode(att);
btn.setAttribute('onclick', 'getName(\'' + name + '\', \'' + horas + '\', \'' + palco + '\');');
var scrollbar = document.getElementsByClassName("scrollbar")[0];
scrollbar.appendChild(btn);
}
function getName(name, horas, palco) {
document.getElementById('bubble1').style.visibility = "visible";
document.getElementById('cross1').style.visibility = "visible";
document.getElementById('bubble1').innerHTML = name + "\n" + horas + "\n" + palco;
}
function exitTimers(mapTextId) {
document.getElementById('bubble1').style.visibility = "hidden";
document.getElementById('cross1').style.visibility = "hidden";
}
function showRemovingButton (name) {
var btn = document.createElement("BUTTON");
var firstName = document.createTextNode(name);
btn.appendChild(firstName);
var att = document.createAttribute("class");
att.value = "menuButtons1";
btn.setAttributeNode(att);
btn.setAttribute('onclick', 'changeVisibilityRemovingAlert(\'' + name + '\');');
var scrollbar = document.getElementsByClassName("scrollbar")[0];
scrollbar.appendChild(btn);
}
function showAddingButton (name) {
var btn = document.createElement("BUTTON");
var firstName = document.createTextNode(name);
btn.appendChild(firstName);
var att = document.createAttribute("class");
att.value = "menuButtons1";
btn.setAttributeNode(att);
btn.setAttribute('onclick', 'changeVisibilityAddingAlert(\'' + name + '\');');
var scrollbar = document.getElementsByClassName("scrollbar")[0];
scrollbar.appendChild(btn);
}
function changeVisibilityRemovingAlert (name) {
var buttons = document.getElementsByClassName("scrollbar");
for (var i = 0; i < buttons.length; i++)
buttons[i].style.display = "none";
var removerButton = document.getElementById("remover");
if (removerButton.style.visibility == "hidden")
removerButton.style.visibility = "visible";
var yes = document.createElement("BUTTON");
yes.appendChild(document.createTextNode("Sim"));
var no = document.createElement("BUTTON");
no.appendChild(document.createTextNode("Não"));
var att1 = document.createAttribute("class");
att1.value = "option1";
yes.setAttributeNode(att1);
yes.setAttribute('onclick', ' removeAlert(\'' + name + '\'); window.location.assign("notificationsMenu.html");');
var att2 = document.createAttribute("class");
att2.value = "option2";
no.setAttributeNode(att2);
no.setAttribute('onclick', 'window.location.assign("notificationsMenu.html");');
var cont = document.getElementById("container");
cont.appendChild(removerButton);
cont.appendChild(yes);
cont.appendChild(no);
}
function changeVisibilityAddingAlert (name) {
var buttons = document.getElementsByClassName("scrollbar");
for (var i = 0; i < buttons.length; i++)
buttons[i].style.display = "none";
var addButton = document.getElementById("adicionar");
if (addButton.style.visibility == "hidden")
addButton.style.visibility = "visible";
var yes = document.createElement("BUTTON");
yes.appendChild(document.createTextNode("Sim"));
var no = document.createElement("BUTTON");
no.appendChild(document.createTextNode("Não"));
var att1 = document.createAttribute("class");
att1.value = "option1";
yes.setAttributeNode(att1);
yes.setAttribute('onclick', ' addAlert(\'' + name + '\'); window.location.assign("showAllNotifications.html");');
var att2 = document.createAttribute("class");
att2.value = "option2";
no.setAttributeNode(att2);
no.setAttribute('onclick', 'window.location.assign("notificationsMenu.html");');
var cont = document.getElementById("container");
cont.appendChild(addButton);
cont.appendChild(yes);
cont.appendChild(no);
}
function showRemovingButtons() {
var len, name;
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
len = storedData.length;
for (i = 0; i < len; i++) {
name = storedData[i];
showRemovingButton(name);
}
}
function showAddingButtons1() {
var len, name;
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
len = day_one.length;
for (i = 0; i < len; i++) {
name = day_one[i];
if (storedData == null)
showAddingButton(name);
else if (!storedData.includes(name))
showAddingButton(name)
}
}
function showAddingButtons2() {
var len, name;
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
len = day_two.length;
for (i = 0; i < len; i++) {
name = day_two[i];
if (storedData == null)
showAddingButton(name);
else if (!storedData.includes(name))
showAddingButton(name)
}
}
function showAllNotifications () {
var len, name;
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
if (storedData != null) {
len = storedData.length;
for (i = 0; i < len; i++) {
name = storedData[i];
hora = hours[i],
palco = palcos[i],
showEvent(name, hora, palco);
}
}
}
function removeAlert (name) {
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
var i, len;
len = storedData.length;
var index = storedData.indexOf(name);
storedData.splice(index,1);
//storedData.sort();
loadData(storedData);
}
/*var alert_active = "false";
function displayAlert(){
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
if(storedData.length != 0){
var name = storedData[0];
var alert_active = JSON.parse(localStorage.getItem('alert_active'));
if (alert_active == "true") {
var alert = document.getElementsByClassName('alertUnlocked')[0];
byePopup();
//var cross = document.getElementById('cross2');
console.log(alert);
alert.parentNode.removeChild(alert);
//cross.parentNode.removeChild(cross);
removeAlert(name);
alert_active = "false";
checkLocation();
}
else {
showOnUnlock(name);
alert_active = "true";
}
localStorage.setItem("alert_active", JSON.stringify(alert_active));
}
}
function displayAlertOnLock(){
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
if(storedData.length != 0){
var name = storedData[0];
var alert_active = JSON.parse(localStorage.getItem('alert_active'));
if (alert_active == "true") {
var alert = document.getElementsByClassName('alertLock')[0];
console.log(alert);
alert.parentNode.removeChild(alert);
removeAlert(name);
alert_active = "false";
}
else {
showOnLock(name);
alert_active = "true";
}
localStorage.setItem("alert_active", JSON.stringify(alert_active));
}
}
function alertOnLock() {
var storedData = JSON.parse(localStorage.getItem("AlertsData"));
var name = storedData[0];
var alert_active = JSON.parse(localStorage.getItem('alert_active'));
if (alert_active == "true") {
showOnLock(name);
}
localStorage.setItem("alert_active", JSON.stringify(alert_active));
}
function showOnLock (name) {
var btn = document.createElement("BUTTON");
var alert = document.createTextNode(name);
btn.appendChild(alert);
var att = document.createAttribute("class");
att.value = "alertLock";
btn.setAttributeNode(att);
var scrollbar = document.getElementsByClassName("main_screen")[0];
scrollbar.appendChild(btn);
}
function byePopup() {
var alert = document.getElementsByClassName('alertUnlocked')[0];
var cross = document.getElementById("cross2");
cross.style.display = "none";
}
function showOnUnlock (name) {
var cross = document.getElementById("cross2");
cross.style.display = "inline";
var btn = document.createElement("BUTTON");
var alert = document.createTextNode("Em 5 mins:\n" + name);
btn.appendChild(alert);
var att = document.createAttribute("class");
att.value = "alertUnlocked";
btn.setAttributeNode(att);
var scrollbar = document.getElementsByClassName("main_screen")[0];
scrollbar.appendChild(btn);
//scrollbar.appendChild(img);
//img.onclick = byePopup();
}*/