-
Notifications
You must be signed in to change notification settings - Fork 2
/
Script.html
596 lines (513 loc) · 21.6 KB
/
Script.html
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
<script>
// For getting all folders inside main folder and putting in dropdown box
google.script.run.withSuccessHandler(yearbtn).Yearbtn();
let LatestFolderId = ' ';
function yearbtn(returnedArray_from_Yearbtn) {
const [FolderName, FolderId] = returnedArray_from_Yearbtn;
for (i = 0; i < FolderName.length; i++) {
Folder = FolderName[i];
$(".dropdown-menu").append("<p class ='dropdown-item'" + "id = '" + FolderId[i] + "' onclick = " + "FolderCounter('" + FolderId[i] + "')" + ">" + Folder + "</p>");
};
LatestFolderId = FolderId[0];
FolderCounter(LatestFolderId);
document.getElementById("year_btn").innerHTML = FolderName[0];
};
// For getting info of folders of the dropdown item clicked from the Code.gs file
function FolderCounter(FolderId) {
$(".cards-holder").empty();
$(".cards-holder").append("<div class='loading-parent text-center'><div class='loading'></div></div>");
var name = document.getElementById(FolderId).innerHTML;
document.getElementById("year_btn").innerHTML = name;
google.script.run.withSuccessHandler(Show_Folders).CardsDisplay(FolderId);
};
// Displaying all the folders of the dropdown item received by Cards Display function in Code.gs File
function Show_Folders(returnedArray_from_CardsDisplay) {
let [FolderName, FolderId] = returnedArray_from_CardsDisplay;
for (i = 0; i < FolderName.length; i++) {
Folder = FolderName[i];
$(".cards-holder").append(
"<a href='#header'>"
+ "<div class='book'" + "onclick =" + "doStuff('" + FolderId[i] + "')>"
+ "<ul>"
+ "<li class='page page3'></li>"
+ "<li class='page page2'></li>"
+ "<li class='page page1'></li>"
+ "<li class='cover'>"
+ "<div class='card-title'><h5>" + Folder + "</h5></div>"
+ "</li>"
+ "</ul>"
+ "</div>"
+ "</a>");
};
$(".loading-parent").remove();
};
// for breadscrumb
var Idarray = [];
var Namearray = [];
function updateBreadCrumb(arg) {
if (Idarray.includes(arg[0])) {
var ind = Idarray.indexOf(arg[0]);
Idarray = Idarray.slice(0, ind + 1);
Namearray = Namearray.slice(0, ind + 1);
$("#list").empty();
$("#list").append("<li onclick='gohome()' class='breadcrumb-item'>Home</li>");
for (i = 0; i < Idarray.length; i++) {
$("#list").append(
"<li onclick=" + "doStuff('" + Idarray[i] + "') class='breadcrumb-item'>" + Namearray[i] + "</li>");
}
}
else {
Idarray.push(arg[0]);
Namearray.push(arg[1]);
$("#list").empty();
$("#list").append("<li onclick='gohome()' class='breadcrumb-item'>Home</li>");
for (i = 0; i < Idarray.length; i++) {
$("#list").append(
"<li onclick=" + "doStuff('" + Idarray[i] + "') class='breadcrumb-item'>" + Namearray[i] + "</li>");
}
}
$("#list li").last().addClass("disabled");
$("#list li").last().addClass("active");
document.getElementById("event-after-home").innerHTML = Namearray[Namearray.length-1];
}
// when someone clicks on the "Home" in breadscrumb
function gohome() {
$(".welcome-container").css("height", "100%");
$("#Home").removeClass("hide");
$("#Home").addClass("show");
$("#header").addClass("header");
$(".welcome").css("display", "flex");
$("#nav-logo").css("width", "60px !important");
$(".navbar-collapse").removeClass("nav-color");
$(".navbar-nav").removeClass("nav-color");
$(".navbar").removeClass("bg-colored");
$("#Event").css("display", "none");
$("#form").css("display", "block");
$("#Albums").css("display", "block");
$(".fetchedPage").remove();
$(".FolderView").empty();
$("#case-folders").empty();
$(".loading-parent").remove();
//FolderCounter(LatestFolderId);
Idarray.length = 0;
Namearray.length = 0;
$("#list").empty();
$("#list").append("<li onclick='gohome()' class='breadcrumb-item active'>Home</li>");
$("#back_link").attr("href", "#Albums");
document.getElementById("event-after-home").innerHTML = '';
document.getElementById("searchInput1").value = '';
document.getElementById("searchInput2").value = '';
}
// function on backbutton
function goback() {
var prev = Idarray[Idarray.length - 2];
if (prev === undefined) {
$(".welcome-container").css("height", "100%");
$("#Home").removeClass("hide");
$("#Home").addClass("show");
$("#header").addClass("header");
$(".welcome").css("display", "flex");
$("#nav-logo").css("width", "60px !important");
$(".navbar-collapse").removeClass("nav-color");
$(".navbar-nav").removeClass("nav-color");
$(".navbar").removeClass("bg-colored");
$("#Event").css("display", "none");
$("#form").css("display", "block");
$("#Albums").css("display", "block");
$(".fetchedPage").remove();
$(".FolderView").empty();
$("#case-folders").empty();
$(".loading-parent").remove();
//FolderCounter(LatestFolderId);
Idarray.length = 0;
Namearray.length = 0;
$("#list").empty();
$("#list").append("<li onclick='gohome()' class='breadcrumb-item active'>Home</li>");
$("#back_link").attr("href", "#Albums");
document.getElementById("event-after-home").innerHTML = '';
document.getElementById("searchInput1").value = '';
document.getElementById("searchInput2").value = '';
}
else {
doStuff(prev.toString());
}
}
// the function called every ome when someone clicks on a folder
function doStuff(FolderId) {
if ($("#Home").hasClass("show")) {
$("#Home").removeClass("show");
$("#Home").addClass("hide");
$("#header").removeClass("header");
$(".welcome").css("display", "none");
$("#nav-logo").css("width", "50px !important");
$(".navbar-collapse").addClass("nav-color");
$(".navbar").addClass("bg-colored");
$("#form").css("display", "none");
$("#Event").css("display", "block");
$("#Albums").css("display", "none");
$(".welcome-container").css("height", "20%");
};
$("#video").attr("src", "#");
$("#video").css("display", "none");
$(".FileView").css("display", "none");
$(".empty-folder").remove();
$(".WebsiteFetch").append("<div class='loading-parent text-center'><div class='loading'></div></div>");
$(".fetchedPage").remove();
$(".bttn").remove();
if (Namearray[Idarray.indexOf(FolderId)] == "Search Results") {
search(FolderId);
$("#list").empty();
$("#list").append("<li onclick='gohome()' class='breadcrumb-item active'>Home</li>");
}
else {
google.script.run.withSuccessHandler(change).Checker(FolderId);
google.script.run.withSuccessHandler(updateBreadCrumb).getData(FolderId);
}
};
// called to fetch the child folders and files in a folder
function change(returnedArray) {
const [Folders, Files, FoldersId, ParentID] = returnedArray;
$(".FolderView").empty();
$("#case-folders").empty();
var embed_url = "https://drive.google.com/embeddedfolderview?id=" + ParentID + "#grid";
if (Files.length > 0) {
google.script.run.withSuccessHandler(webfetch).Websitefetch(embed_url);
};
if (Files.length == 0) {
$(".fetchedPage").remove();
if (Folders.length == 0) {
$(".FolderView").append("<div class='contribute' style='position:relative;'>"
+ "<a id='contriLink' href = 'https://docs.google.com/forms/d/e/ID_OF_FORM/viewform?entry.ENTRY_NO_FOR_FIELD=' target='_blank'><button type='button' class='btn btn-danger' onclick='addIdToLink()'><i class='fas fa-folder-plus' style='font-size: 200%;'></i> Contribute Here</button>"
+ "</a></div>");
$(".FolderView").append(
"<div class = 'empty-folder' style='position: relative; z-index: 999;'><h1>Empty Folder</h1></div>"
);
$(".loading-parent").remove();
};
};
if (Folders.length > 0) {
$(".FolderView").append("<div class='contribute' style='position:relative;'>"
+ "<a id='contriLink' href = 'https://docs.google.com/forms/d/e/ID_OF_FORM/viewform?entry.ENTRY_NO_FOR_FIELD=' target='_blank'><button type='button' class='btn btn-danger' onclick='addIdToLink()'><i class='fas fa-folder-plus' style='font-size: 200%;'></i> Contribute Here</button>"
+ "</a></div>");
for (i = 0; i < Folders.length; i++) {
Folder = Folders[i];
$(".FolderView").append(
"<a href='#header'>"
+ "<div class='book bttn show'" + "onclick =" + "doStuff('" + FoldersId[i] + "')>"
+ "<ul>"
+ "<li class='page page3'></li>"
+ "<li class='page page2'></li>"
+ "<li class='page page1'></li>"
+ "<li class='cover'>"
+ "<div class='card-title'><h5>" + Folder + "</h5></div>"
+ "</li>"
+ "</ul>"
+ "</div>"
+ "</a>");
};
$(".loading-parent").remove();
};
};
// For fetching all the files within a folder
function webfetch(content) {
driveLinks = [];
$(".download-btn").remove();
$(".fetchedPage").remove();
$(".WebsiteFetch").append("<div class = 'fetchedPage'>" + content + "</div>");
$(".flip-contents").removeClass("flip-list-view");
$(".flip-contents").addClass("flip-grid-view");
$(".flip-entry-list-icon").remove();
$(".flip-entry-info a").attr("data-lightbox", "Images");
imgViewer();
};
// called whenever the url is fetched to bring in all the files
var driveLinks = [];
function imgViewer() {
var imglist = $(".flip-entry img");
var lg_imglist = $(".flip-entry-info a");
for (i = 0; i < imglist.length; i++) {
var lg_img = lg_imglist[i];
driveLinks.push($(lg_img).attr("href"));
$(lg_img).removeAttr("href");
$(lg_img).attr("id", i.toString());
}
$(".flip-entry-info a").click(function () {
var id = $(this).attr("id");
var num = parseInt(id);
var link = driveLinks[num];
link = link.replace("https://drive.google.com/file/d/", "");
link = link.replace("/view?usp=drive_web", "");
var embed_url = "https://drive.google.com/file/d/" + link + "/preview";
$(".FileView").css("display", "block");
$("#video").css("display", "block");
$("#video").attr("src", embed_url);
var download_url = "https://drive.google.com/uc?export=download&id=" + link;
$(".download_url").attr("href", download_url);
});
$(".loading-parent").remove();
};
// called when cross is clicked on iframe
function close_book() {
$("#video").attr("src", "#");
$("#video").css("display", "none");
$(".FileView").css("display", "none");
}
// to make the iframe full screen
function fullScreen() {
var elem = document.getElementById("video");
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.mozRequestFullScreen) { /* Firefox */
elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullscreen) { /* Chrome, Safari and Opera */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE/Edge */
elem.msRequestFullscreen();
}
}
// adding id of folder to pre-filled link of form in base-64 conversion
function addIdToLink() {
const FolderId = Idarray[Idarray.length - 1].toString();
var b64 = btoa(FolderId);
var link = $("#contriLink").attr("href");
link = link + "DONOTEDIT<" + b64 + ">";
$("#contriLink").attr("href", link);
}
// fetches results of search query from Code.gs file
function search() {
var query1 = document.getElementById("searchInput1").value.toLowerCase().split(' ').join('');
var query2 = document.getElementById("searchInput2").value.toLowerCase().split(' ').join('');
if (query1 != "") {
Namearray.length = 0;
Idarray.length = 0;
Namearray.push("Search Results");
Idarray.push(query1);
document.getElementById("event-after-home").innerHTML = 'Search Results';
google.script.run.withSuccessHandler(displayFolders).searchFiles(query1);
}
else if (query2 != "") {
Namearray.length = 0;
Idarray.length = 0;
Namearray.push("Search Results");
Idarray.push(query2);
document.getElementById("event-after-home").innerHTML = 'Search Results';
google.script.run.withSuccessHandler(displayFolders).searchFiles(query2);
}
}
// displays the folders and files of results obtained for search query from Code.gs file
function displayFolders(result) {
if ($("#Home").hasClass("show")) {
$("#Home").removeClass("show");
$("#Home").addClass("hide");
$("#header").removeClass("header");
$(".welcome").css("display", "none");
$("#nav-logo").css("width", "50px !important");
$(".navbar-nav").addClass("nav-color");
$(".navbar").addClass("bg-colored");
$("#form").css("display", "none");
$("#Event").css("display", "block");
$("#Albums").css("display", "none");
$(".welcome-container").css("height", "20%");
};
$(".WebsiteFetch").append("<div class='loading-parent text-center'><div class='loading'></div></div>");
if (result.length == 0) {
$(".FolderView").empty();
$("#case-folders").empty();
$("#video").attr("src", "#");
$("#video").css("display", "none");
$(".FileView").css("display", "none");
$(".WebsiteFetch").empty();
$(".FolderView").append(
"<div class = 'empty-folder' style='position: relative; z-index: 999;'><h1>No results found</h1></div>");
}
else {
$(".FolderView").empty();
$("#case-folders").empty();
$("#video").attr("src", "#");
$("#video").css("display", "none");
$(".FileView").css("display", "none");
$(".WebsiteFetch").empty();
for (i = 0; i < result.length; i++) {
if (result[i][2] == "File") {
$(".WebsiteFetch").append(
"<a href='#video'>"
+ "<div class='book bttn show'" + "onclick =" + "openBook('" + result[i][1] + "')>"
+ "<span class='tooltiptext'>" + result[i][3] + "</span>"
+ "<ul>"
+ "<li class='page page3'></li>"
+ "<li class='page page2'></li>"
+ "<li class='page page1'></li>"
+ "<li class='cover'>"
+ "<div class='card-title'><h5>" + result[i][0] + "</h5></div>"
+ "</li>"
+ "</ul>"
+ "</div>"
+ "</a>");
}
else {
$("#case-folders").append(
"<div class='folder bttn show' id='wallop' onclick=" + "doStuff('" + result[i][1] + "')><span>" + result[i][0] + "</span>"
+ "</div>"
);
}
}
}
$(".loading-parent").remove();
}
// to open a book obtained in search results
function openBook(id) {
var embed_url = "https://drive.google.com/file/d/" + id + "/preview";
$(".FileView").css("display", "block");
$("#video").css("display", "block");
$("#video").attr("src", embed_url);
var download_url = "https://drive.google.com/uc?export=download&id=" + id;
$(".download_url").attr("href", download_url);
}
// called when "Home" or "Event" is clicked in navbar
function hideMenu() {
$(".navbar-collapse").removeClass("show");
$(".navbar-toggler").attr("aria-expanded", "false");
$(".navbar-toggler").addClass("collapsed");
$(".welcome-container").css("height", "100%");
$("#Home").removeClass("hide");
$("#Home").addClass("show");
$("#header").addClass("header");
$(".welcome").css("display", "flex");
$("#nav-logo").css("width", "60px !important");
$(".navbar-collapse").removeClass("nav-color");
$(".navbar-nav").removeClass("nav-color");
$(".navbar").removeClass("bg-colored");
$("#Event").css("display", "none");
$("#form").css("display", "block");
$("#Albums").css("display", "block");
$(".fetchedPage").remove();
$(".FolderView").empty();
$("#case-folders").empty();
$(".loading-parent").remove();
Idarray.length = 0;
Namearray.length = 0;
$("#list").empty();
$("#list").append("<li onclick='gohome()' class='breadcrumb-item active'>Home</li>");
$("#back_link").attr("href", "#Albums");
document.getElementById("event-after-home").innerHTML = '';
document.getElementById("searchInput1").value = '';
document.getElementById("searchInput2").value = '';
}
// called when "Disquss" or "Sign Out" is clicked in nav-bar
function hideDisqusMenu() {
$(".navbar-collapse").removeClass("show");
$(".navbar-toggler").attr("aria-expanded", "false");
$(".navbar-toggler").addClass("collapsed");
}
// particles.js config
particlesJS("particles-js", {
"particles": {
"number": {
"value": 80,
"density": {
"enable": true,
"value_area": 1000
}
},
"color": {
"value": "#f20d0d"
},
"shape": {
"type": "edge",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": true,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 25,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": false,
"distance": 500,
"color": "#ffffff",
"opacity": 0.4,
"width": 2
},
"move": {
"enable": true,
"speed": 6,
"direction": "top-right",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "bubble"
},
"onclick": {
"enable": true,
"mode": "repulse"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 0.5
}
},
"bubble": {
"distance": 400,
"size": 4,
"duration": 0.3,
"opacity": 1,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
</script>