-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
67 lines (54 loc) · 1.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
const form = document.getElementById("form");
const search = document.getElementById("search");
const result = document.getElementById("result");
const apiURL = "https://api.lyrics.ovh";
// Get Search Value
form.addEventListener("submit", e => {
e.preventDefault();
searchValue = search.value.trim();
if (!searchValue) {
alert("Nothing to search");
} else {
beginSearch(searchValue);
}
})
// Search function
async function beginSearch(searchValue) {
const searchResult = await fetch(`${apiURL}/suggest/${searchValue}`);
const data = await searchResult.json();
displayData(data);
}
// Display Search Result
function displayData(data) {
result.innerHTML = `
<ul class="songs">
${data.data
.map(song=> `<li>
<div>
<strong>${song.artist.name}</strong> -${song.title}
</div>
<span data-artist="${song.artist.name}" data-songtitle="${song.title}">Get Lyrics</span>
</li>`
)
.join('')}
</ul>
`;
}
//event listener in get lyrics button
result.addEventListener('click', e=>{
const clickedElement = e.target;
//checking clicked elemet is button or not
if (clickedElement.tagName === 'SPAN'){
const artist = clickedElement.getAttribute('data-artist');
const songTitle = clickedElement.getAttribute('data-songtitle');
getLyrics(artist, songTitle)
}
})
// Get lyrics for song
async function getLyrics(artist, songTitle) {
const response = await fetch(`${apiURL}/v1/${artist}/${songTitle}`);
const data = await response.json();
const lyrics = data.lyrics.replace(/(\r\n|\r|\n)/g, '<br>');
result.innerHTML = `<h2><strong>${artist}</strong> - ${songTitle}</h2>
<p>${lyrics}</p>`;
}