-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
97 lines (81 loc) · 2.65 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
const form = document.getElementById("form");
const search = document.getElementById("search");
const results = document.getElementById("results");
const more = document.getElementById("more");
//api
const apiUrl = "https://api.lyrics.ovh";
//search song by name or by an artist
async function searchSongs(term) {
// fetch(`${apiUrl}/suggest/${term}`)
// .then((res) => res.json())
// .then((data) => console.log(data));
const res = await fetch(`${apiUrl}/suggest/${term}`);
const data = await res.json();
showData(data);
}
//Show data and artist in the dom
function showData(data) {
// let output = "";
// data.data.forEach((song) => {
// output += `
// <li>
// <span><b>${song.artist.name}</b> - ${song.title}</span>
// <button class="btn" data-artist="${song.artist.name}" data-songtitle="${song.title}">Get Lyrics</button>
// </li>
// `;
// });
// results.innerHTML = `<ul class="songs">${output}</ul>`;
results.innerHTML = `<ul class="songs">${data.data
.map(
(song) => `<li>
<span><b>${song.artist.name}</b> - ${song.title}</span>
<button class="btn" data-artist="${song.artist.name}" data-songtitle="${song.title}">Get Lyrics</button>
</li>`
)
.join("")}</ul> `;
if (data.prev || data.next) {
more.innerHTML = `${
data.prev
? `<button class="btn" onClick="getMoreSongs('${data.prev}')">Prev</button>`
: ""
} ${
data.next
? `<button class="btn" onClick="getMoreSongs('${data.next}')">Next</button>`
: ""
}`;
} else {
more.innerHTML = "";
}
}
//get prev and next songs
async function getMoreSongs(url) {
const res = await fetch(`https://cors-anywhere.herokuapp.com/${url}`);
const data = await res.json();
showData(data);
}
async function getLyrics(artist, songTitle) {
const res = await fetch(`${apiUrl}/v1/${artist}/${songTitle}`);
const data = await res.json();
const lyrics = data.lyrics.replace(/(\r\n|\r|\n)/g, "<br>");
results.innerHTML = `<h2><b>${artist}</b> - ${songTitle}</h2> <span>${lyrics}</span>`;
more.innerHTML = "";
}
//event listeners
form.addEventListener("submit", (e) => {
e.preventDefault();
const searchTerm = search.value.trim();
if (!searchTerm) {
alert("Please type something in the search box");
} else {
searchSongs(searchTerm);
}
});
//Get lyrics button click
results.addEventListener("click", (e) => {
const clickedEl = e.target;
if (clickedEl.tagName === "BUTTON") {
const artist = clickedEl.getAttribute("data-artist");
const songTitle = clickedEl.getAttribute("data-songtitle");
getLyrics(artist, songTitle);
}
});