-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
255 lines (236 loc) · 6.81 KB
/
script.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
console.log("Welcome to Spotify!");
// Initialize Variables
let songIndex = 0;
let audioelement = new Audio("/songs/Leke Prabhu Ka Naam.mp3");
let masterPlay = document.getElementById("masterplay");
let progressBar = document.getElementById("seek-bar");
let cardPlay = document.getElementsByClassName("play-song");
let songItem = Array.from(document.getElementsByClassName("card"));
let musicName = document.getElementById("music-title");
let musicImage = document.getElementById("music-img");
let musicInfo = document.getElementById("music-info");
let shuffle = document.getElementById("remix");
let like = document.getElementById("like");
let initialTime = document.getElementById("cur-time");
let finalTime = document.getElementById("duration");
let musicIndex = 0;
// Array for songs list
let songs = [
{
songName: "Top Global",
songAbout: "Your daily updates...",
filePath: "/songs/Leke Prabhu Ka Naam.mp3",
coverPath: "images/card1.jpeg",
},
{
songName: "Mahiye Jinna So...",
songAbout: "Darshan Raval",
filePath: "/songs/Mahiye Jinna Sohna.mp3",
coverPath: "images/card2.jpeg",
},
{
songName: "Kalaastar",
songAbout: "Honey Singh",
filePath: "/songs/Kalaastar.mp3",
coverPath: "images/card3.jpeg",
},
{
songName: "Chaleya",
songAbout: "Jawan",
filePath: "/songs/Chaleya.mp3",
coverPath: "images/card4.jpeg",
},
{
songName: "Saari Duniya Ja...",
songAbout: "Animal",
filePath: "/songs/Saari Duniya Jala Denge.mp3",
coverPath: "images/card5.jpeg",
},
{
songName: "Arjan Vailly",
songAbout: "Animal",
filePath: "/songs/Arjan Vailly.mp3",
coverPath: "images/card6.jpeg",
},
{
songName: "Badass",
songAbout: "Leo",
filePath: "/songs/Badass Leo.mp3",
coverPath: "images/card7.jpeg",
},
{
songName: "Naa Ready",
songAbout: "Leo",
filePath: "/songs/Naa Ready.mp3",
coverPath: "images/card8.jpeg",
},
{
songName: "Best of Arijit Sin...",
songAbout: "Bollywood essentials",
filePath: "/songs/Heeriye.mp3",
coverPath: "images/card9.png",
},
{
songName: "This is Pritam",
songAbout: "This is Pritam. The b...",
filePath: "/songs/KHAIRIYAT.mp3",
coverPath: "images/card10.png",
},
{
songName: "Best of Honey Si...",
songAbout: "This is Honey Singh",
filePath: "/songs/Habibti.mp3",
coverPath: "images/card11.jpeg",
},
{
songName: "Top Songs - India",
songAbout: "Phir aur kya chahiye",
filePath: "/songs/Phir Aur Kya Chahiye.mp3",
coverPath: "images/card12.jpeg",
},
{
songName: "Top Songs- Global",
songAbout: "Mocking Bird",
filePath: "/songs/Mockingbird.mp3",
coverPath: "images/card13.jpeg",
},
];
function songUpdate() {
audioelement.src = songs[songIndex].filePath;
musicImage.src = songs[songIndex].coverPath;
musicName.innerText = songs[songIndex].songName;
musicInfo.innerText = songs[songIndex].songAbout;
audioelement.currentTime = 0;
audioelement.play();
masterPlay.src = "/images/pause_icon.png";
}
function changeToPause() {
let cardLoad = document.getElementById(songIndex);
cardLoad.src = "/images/pause_icon.png";
cardLoad.classList.add("show");
}
function changeToPlay() {
let cardLoad = document.getElementById(songIndex);
cardLoad.src = "/images/play_icon.png";
cardLoad.classList.remove("show");
}
// Accessing song name and info
songItem.forEach((element, i) => {
element.getElementsByClassName("card-img")[0].src = songs[i].coverPath;
element.getElementsByClassName("card-title")[0].innerText = songs[i].songName;
element.getElementsByClassName("card-info")[0].innerText = songs[i].songAbout;
});
// Handle Pause/Play
masterPlay.addEventListener("click", () => {
if (audioelement.paused || audioelement.currentTime <= 0) {
audioelement.play();
masterPlay.src = "/images/pause_icon.png";
changeToPause();
} else {
audioelement.pause();
masterPlay.src = "/images/play_icon.png";
changeToPlay();
}
});
// Listen to Events
audioelement.addEventListener("timeupdate", () => {
// Update Seek Bar
progress = parseInt((audioelement.currentTime / audioelement.duration) * 100);
progressBar.value = progress;
// Update duration
totalMin = Math.floor(audioelement.duration / 60);
totalSec = Math.floor(audioelement.duration % 60);
function digit(d) {
return d < 10 ? "0" + d.toString() : d.toString();
}
document.getElementById("min").innerText = totalMin;
document.getElementById("sec").innerText = digit(totalSec);
// Update Time
curMin = Math.floor(audioelement.currentTime / 60);
curSec = Math.floor(audioelement.currentTime % 60);
document.getElementById("c-min").innerText = curMin;
document.getElementById("c-sec").innerText = digit(curSec);
});
// Sync song to seek bar
progressBar.addEventListener("change", () => {
audioelement.currentTime = (progressBar.value * audioelement.duration) / 100;
});
// Make all pause to play icons
const makeAllPlays = () => {
Array.from(cardPlay).forEach((element) => {
element.src = "/images/play_musicbar.png";
element.classList.remove("show");
});
};
// Play selected song
Array.from(cardPlay).forEach((element, index) => {
element.addEventListener("click", (e) => {
if (!audioelement.paused && musicIndex === index) {
audioelement.pause();
element.src = "images/play_icon.png";
masterPlay.src = "/images/play_icon.png";
element.classList.remove("show");
} else {
makeAllPlays();
// songIndex = parseInt(e.target.id); // alternate
songIndex = index;
element.src = "images/pause_icon.png";
songUpdate();
element.classList.add("show");
musicIndex = index;
}
});
});
// Play Next
document.getElementById("next").addEventListener("click", () => {
if (songIndex >= 12) {
songIndex = 0;
} else {
songIndex += 1;
}
songUpdate();
makeAllPlays();
changeToPause();
});
// Play Previous
document.getElementById("previous").addEventListener("click", () => {
if (songIndex <= 0) {
songIndex = 12;
} else {
songIndex -= 1;
}
songUpdate();
makeAllPlays();
changeToPause();
});
// Play next after ending
audioelement.addEventListener("ended", () => {
if (songIndex >= 12) {
songIndex = 0;
} else {
songIndex += 1;
}
songUpdate();
makeAllPlays();
changeToPause();
});
// Shuffle - Random Play
shuffle.addEventListener("click", () => {
random = Math.floor(Math.random() * 13);
songIndex = random;
songUpdate();
makeAllPlays();
changeToPause();
});
// Like the song
like.addEventListener("click", () => {
if (like.classList[2] == "fa-solid") {
like.classList.remove("fa-solid");
like.classList.add("fa-regular");
alert("Removed from Favourite Songs!");
} else {
like.classList.remove("fa-regular");
like.classList.add("fa-solid");
alert("Added to Favourite Songs!");
}
});