-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
532 lines (411 loc) · 14.1 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
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
let arjitsongs, edsongs, btssongs, ritvizsongs, allsongs;
fetch("./JSON/arjit.json")
.then((data) => data.json())
.then((data) => {
arjitsongs = data;
})
fetch("./JSON/bts.json")
.then((data) => data.json())
.then((data) => {
btssongs = data;
})
fetch("./JSON/ed.json")
.then((data) => data.json())
.then((data) => {
edsongs = data;
})
fetch("./JSON/ritviz.json")
.then((data) => data.json())
.then((data) => {
ritvizsongs = data;
console.log(ritvizsongs);
})
//grab all buttons
var mq = window.matchMedia( "(max-width: 600px)" );
const logo = document.querySelectorAll('#logo path');
const burger = document.querySelector('.burger');
const nav = document.querySelector('.nav-links');
const navlinks = document.querySelectorAll('.nav-links li');
const albumsorsongs = document.querySelector(".albumsorsongs");
const albums = document.querySelector(".albums");
const showalbums = document.querySelector(".showalbums");
let checked = false;
let selectedartist;
let nametodisplay;
let imgsrc;
let currentsong;
let currentsongvalue;
let selectedlist;
let songsactivated = false;
let a = 1; //flap is initially down
//grab all buttons
const playorpause = document.querySelector(".playorpause");
const previoussong = document.querySelector(".previoussong");
const forwardsong = document.querySelector(".forwardsong");
const progressFill = document.querySelector(".progress-fill");
const songname = document.querySelector(".songname");
const flapArtist = document.querySelector(".Artist");
const shuffle = document.querySelector(".shuffle");
const repeat = document.querySelector(".repeat");
const images = document.querySelector(".images")
//default progressfill
progressFill.style.width = `0%`
//to toggle between audio and songs
let albumhtmlcontent = `
<div class="albums">
<div class="albumsection1">
<div class="albumdiv album1"><img src="./artistimg/SPB.jpg" alt=""></div>
<span class="artistname artist1">S P B </span>
<div class="albumdiv album2"><img src="./artistimg/BTS.jpg" alt=""></div>
<span class="artistname artist2">BTS </span>
</div>
<div class="albumsection2">
<div class="albumdiv album3"><img src="./artistimg/arjit.jpg" alt=""></div>
<span class="artistname artist3"> Arjit Singh</span>
<div class="albumdiv album4"><img src="./artistimg/ed.jpg" alt=""></div>
<span class="artistname artist4">Ed Sheeran </span>
</div>
</div>
`;
//setup audio
let audio = new Audio;
//stroke animation begins
//delay given and display made none to the preloading page
const div = document.querySelector('.music');
setTimeout(function () {
div.style.display = "none";
}, 4000);
//translate position of flap upwards and downwards in the main class
let flap = document.querySelector('.flap');
const translatebtn = document.querySelector('.translatebtn');
const main = document.querySelector('.main');
translatebtn.addEventListener('click', move)
//toggle flap
function move() {
translatebtn.style.transition = "all 1.5s";
flap.style.transition = "all 1.5s ease";
images.style.transition = "all 1.5s ease";
if (a === 0) {
if (mq.matches) {
flap.style.transform = 'translateY(480px)';
}
else{
//going down
flap.style.transform = 'translateY(420px)';
}
translatebtn.style.transform = 'rotate(180deg)';
images.style.opacity = '0';
a = 1;
}
else {
//going up
flap.style.transform = "translateY(0px)";
translatebtn.style.transform = "rotate(0deg)";
images.style.opacity = "1";
a = 0;
}
}
//navbar
const navslide = () => {
burger.addEventListener('click', () => {
nav.classList.toggle('nav-active');
//toggle nav links
//animate lnks
navlinks.forEach((link, index) => {
if (link.style.animation) {
link.style.animation = '';
}
else {
link.style.animation = `navlinkfade 0.3s ease forwards ${index / 7 + 1}s`;
}
});
//burger animation
burger.classList.toggle('toggle');
});
}
//function invoked
navslide();
//grab all json file
//when clicked on album show songs or when clicked on song play song
albumsorsongs.addEventListener("click", (e) => {
// console.log(e.target.parentElement);
if (e.target.parentElement.classList.contains("albumdiv")) {
if (e.target.parentElement.classList.contains("album1")) {
imgsrc = `./artistimg/SPB.jpg`;
nametodisplay = "S P Balasubramaniam"
selectedartist = ritvizsongs.songs;
albumsorsongs.innerHTML = `
<div class="songs">
<img src="${imgsrc}" alt="">
<div class="artistnamedisplay">${nametodisplay}</div>
<ul class="songlist">
</ul>
</div>
`;
const songlist = document.querySelector(".songlist")
selectedartist.forEach((song) => {
let li = document.createElement("li");
li.classList.add("songselect");
li.innerHTML = `${song.name}<i class="fas fa-music"></i>`;
songlist.appendChild(li);
})
if (checked) {
const dsong = document.querySelectorAll("li")
console.log(dsong);
dsong.forEach((song) => {
song.classList.add("darkmodeactivatedsongs")
})
}
songsactivated = true;
}
else if (e.target.parentElement.classList.contains("album2")) {
imgsrc = `./artistimg/BTS.jpg`
nametodisplay = "BTS";
selectedartist = btssongs.songs;
albumsorsongs.innerHTML = `
<div class="songs">
<img src="${imgsrc}" alt="">
<div class="artistnamedisplay">${nametodisplay}</div>
<ul class="songlist">
</ul>
</div>
`;
const songlist = document.querySelector(".songlist")
selectedartist.forEach((song) => {
let li = document.createElement("li");
li.classList.add("songselect");
li.innerHTML = `${song.name}<i class="fas fa-music"></i>`;
songlist.appendChild(li);
})
if (checked) {
const dsong = document.querySelectorAll("li")
console.log(dsong);
dsong.forEach((song) => {
song.classList.add("darkmodeactivatedsongs")
})
}
songsactivated = true;
}
else if (e.target.parentElement.classList.contains("album3")) {
imgsrc = `./artistimg/arjit.jpg`
selectedartist = arjitsongs.songs;
nametodisplay = "Arjit Singh"
albumsorsongs.innerHTML = `
<div class="songs">
<img src="${imgsrc}" alt="">
<div class="artistnamedisplay">${nametodisplay}</div>
<ul class="songlist">
</ul>
</div>
`;
const songlist = document.querySelector(".songlist")
selectedartist.forEach((song) => {
let li = document.createElement("li");
li.classList.add("songselect");
li.innerHTML = `${song.name}<i class="fas fa-music"></i>`;
songlist.appendChild(li);
})
if (checked) {
const dsong = document.querySelectorAll("li")
console.log(dsong);
dsong.forEach((song) => {
song.classList.add("darkmodeactivatedsongs")
})
}
songsactivated = true;
}
else {
songsactivated = false;
imgsrc = `./artistimg/ed.jpg`;
nametodisplay = "Ed Sheeran"
selectedartist = edsongs.songs;
albumsorsongs.innerHTML = `
<div class="songs">
<img src="${imgsrc}" alt="">
<div class="artistnamedisplay">${nametodisplay}</div>
<ul class="songlist">
</ul>
</div>
`;
const songlist = document.querySelector(".songlist")
selectedartist.forEach((song) => {
let li = document.createElement("li");
li.classList.add("songselect");
li.innerHTML = `${song.name}<i class="fas fa-music"> </i>`;
songlist.appendChild(li);
})
if (checked) {
const dsong = document.querySelectorAll("li")
console.log(dsong);
dsong.forEach((song) => {
song.classList.add("darkmodeactivatedsongs")
})
}
songsactivated = true;
}
}
else if (e.target.classList.contains("songselect")) {
console.log("here");
//all further
audio.currentTime = 0;
console.log(selectedartist);
selectedartist.forEach((song, index) => {
if (e.target.innerText === song.name) {
console.log(e.target.innerText);
selectedlist = e.target;
audio.src = song.src;
currentsong = song;
currentsongvalue = index;
playorpause.innerHTML = `<i class="fas fa-pause"></i>`;
audio.play();
flapupdate();
}
})
}
})
//showalbums in nav slide
showalbums.addEventListener("click", () => {
albumsorsongs.innerHTML = albumhtmlcontent;
// nav.classList.remove('nav-active');
if (a === 0) {
if (mq.matches) {
flap.style.transform = 'translateY(485px)';
}
else{
//going down
flap.style.transform = 'translateY(420px)';
}
translatebtn.style.transform = 'rotate(180deg)';
images.style.opacity = '0';
a = 1;
}
nav.classList.toggle('nav-active');
//toggle nav links
//animate lnks
navlinks.forEach((link, index) => {
if (link.style.animation) {
link.style.animation = '';
}
else {
link.style.animation = `navlinkfade 0.3s ease forwards ${index / 7 + 1}s`;
}
});
//burger animation
burger.classList.toggle('toggle');
})
//play pause toggle
playorpause.addEventListener("click", () => {
if (audio.paused) {
console.log("here");
audio.play();
playorpause.innerHTML = `<i class="fas fa-pause"></i>`;
}
else {
console.log("should be here");
audio.pause();
playorpause.innerHTML = `<i class="fas fa-play"></i>`;
}
})
//progress bar
audio.addEventListener("timeupdate", () => {
let currenttime = audio.currentTime;
let duration = audio.duration;
let progressvalue = audio.currentTime / audio.duration;
progressFill.style.width = `${progressvalue * 100}%`
// console.log(progressvalue);
if (audio.ended) {
nextsong();
}
})
//backward song
previoussong.addEventListener("click", () => {
audio.currentTime = 0;
if (currentsongvalue === 0) {
currentsongvalue = selectedartist.length - 1;
}
else {
currentsongvalue--;
}
audio.src = selectedartist[currentsongvalue].src;
playorpause.innerHTML = `<i class="fas fa-pause"></i>`;
flapupdate();
audio.play();
})
//forward song
forwardsong.addEventListener("click", nextsong)
function nextsong() {
audio.currentTime = 0;
if (currentsongvalue === selectedartist.length - 1) {
currentsongvalue = 0;
}
else {
currentsongvalue++;
}
audio.src = selectedartist[currentsongvalue].src;
playorpause.innerHTML = `<i class="fas fa-pause"></i>`;
flapupdate();
audio.play();
}
//update flap
const flapupdate = () => {
images.src = selectedartist[currentsongvalue].pic;
flapArtist.textContent = selectedartist[currentsongvalue].artist;
songname.textContent = selectedartist[currentsongvalue].name;
}
//replay
repeat.addEventListener("click", () => {
audio.currentTime = 0;
audio.play();
})
//shuffle button
shuffle.addEventListener("click", () => {
let randomsong = (Math.floor(Math.random() * selectedartist.length));
console.log(randomsong);
audio.src = selectedartist[randomsong].src;
currentsongvalue = randomsong;
playorpause.innerHTML = `<i class="fas fa-pause"></i>`;
audio.currentTime = 0;
audio.play();
flapupdate();
})
//dark mode
const dflap = document.querySelector(".flap")
const darkmodebtn = document.querySelector(".darkmode-btn");
const input = document.querySelector("input");
const dheader = document.querySelector(".main-contents")
const dmain = document.querySelector(".main")
const dtransbtn = document.querySelector(".translatebtn")
const dprogressfill = document.querySelector(".progress-fill")
input.addEventListener('click', darkmodefunction)
function darkmodefunction() {
checked = !checked;
if (checked) {
dflap.classList.add("darkmodeactivatedflap")
dheader.classList.add("darkmodeactivatedheader")
dmain.classList.add("darkmodeactivatedmain")
dprogressfill.classList.add("darkmodeprogress")
dtransbtn.classList.add("darkmodetransbtn")
if (songsactivated) {
const dsong = document.querySelectorAll("li")
console.log(dsong);
dsong.forEach((song) => {
song.classList.add("darkmodeactivatedsongs")
})
}
}
else {
dflap.classList.remove("darkmodeactivatedflap")
dheader.classList.remove("darkmodeactivatedheader")
dmain.classList.remove("darkmodeactivatedmain")
dprogressfill.classList.remove("darkmodeprogress")
dtransbtn.classList.remove("darkmodetransbtn")
if (songsactivated) {
const dsong = document.querySelectorAll("li")
console.log(dsong);
dsong.forEach((song) => {
song.classList.remove("darkmodeactivatedsongs")
})
}
// dsong.classList.toggle("darkmodeactivatedsongs")
}
}