-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
78 lines (65 loc) · 2.15 KB
/
Copy pathscript.js
File metadata and controls
78 lines (65 loc) · 2.15 KB
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
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();
if(data?.data?.length==0){
result.innerHTML="No songs found";
return;
}
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}`);
if (!response.ok) {
result.innerHTML=`An error has occured: ${response.status}`;
return;
}
const data = await response?.json();
let lyrics= "No lyrics found";
if(data && data.lyrics){
lyrics = data.lyrics.replace(/(\r\n|\r|\n)/g, '<br>');
}
result.innerHTML = `<h2><strong>${artist}</strong> - ${songTitle}</h2>
<p>${lyrics}</p>`;
}