This repository was archived by the owner on Apr 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepgsongs.js
51 lines (47 loc) · 1.49 KB
/
epgsongs.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
const playlist = [{
name: 'earlyMorning',
times: [0, 1, 2, 3, 4, 5, 6],
songs: ["https://stream.zeno.fm/et8ras3bf2zuv"]
},
{
name: 'morning',
times: [6, 7, 8, 9],
songs: ["https://stream.zeno.fm/7rgndyacf2zuv"]
},
{
name: 'primetime',
times: [19, 20],
songs: ["https://stream.zeno.fm/yxauxfbcf2zuv"]
},
{
name: 'daytime',
times: [11, 12, 13, 14, 15, 16, 17, 18],
songs: ["https://stream.zeno.fm/bwens44bf2zuv"]
},
{
name: 'nightclub',
times: [21, 22, 23],
songs: ["https://stream.zeno.fm/vq7vtswbf2zuv"]
}
]
let nowPlaying = null;
const player = document.getElementById("player"); // Get Audio Element
player.autoplay = true;
player.addEventListener("ended", function () {
player.currentTime = 0;
console.log(`${selection} ended`);
selectRandom();
});
function selectRandom() {
// destructure object because all we want is the song array
const { songs } = playlist.find(list => list.times.includes(new Date().getHours()));
// remove the currently playing song, or nothing if null
const filteredSongs = songs.filter(song => song != nowPlaying);
// pick a random song out of the remaining songs
const selection = filteredSongs[Math.floor(Math.random() * filteredSongs.length)]
lastSong = selection; // Remember last song
player.src = selection; // Tell HTML the location of the new Song
console.log(`Now playing ${selection}`);
}
selectRandom(); // Select initial song
player.play; // Start song