SAE_RIOT_2024/onzer.riot

105 lines
3.2 KiB
Plaintext
Raw Normal View History

2024-06-20 15:08:44 +02:00
<onzer>
2024-06-20 16:46:54 +02:00
<div class="px-12">
2024-06-21 01:26:39 +02:00
<div class="flex-row mb-2">
<input id="album" type="button" onclick={click} value="Albums"
class="mr-4 border-solid border rounded-lg h-20 w-64 mt-2 {album_style}"/>
<input id="artist" type="button" onclick={click} value="Artists"
class="mr-4 border-solid border rounded-lg h-20 w-64 mt-2 {artist_style}"/>
<input id="song" type="button" onclick={click} value="Songs"
class="mr-4 border-solid border rounded-lg h-20 w-64 mt-2 {song_style}"/>
2024-06-20 15:08:44 +02:00
</div>
2024-06-20 16:46:54 +02:00
<form onsubmit={ add }>
<div class="flex flex-row items-baseline">
<input class="flex-grow-1 border-solid border bg-emerald-100 w-half rounded-lg border-emerald-300 border h-20 pl-6 grow"
2024-06-20 15:08:44 +02:00
placeholder={ this.state.placeholder } onkeyup={ edit } />
<input type="button" value="Playlists"
class="ml-2 border-solid bg-emerald-300 border rounded-lg border-emerald-600 mb-4 h-20 w-48 mt-2"/>
2024-06-20 16:46:54 +02:00
</div>
</form>
2024-06-20 15:08:44 +02:00
</div>
<div class="flex flex-wrap px-12 justify-between mt-8">
<div each={ album in state.items.results }
class="item mb-4 border border-solid rounded-lg h-64 flex justify-center items-center">
<div>
<p> { album.name } </p>
</div>
</div>
</div>
2024-06-20 15:08:44 +02:00
<script>
export default {
2024-06-21 01:59:44 +02:00
onBeforeMount(props){
this.state = {
placeholder: "Rechercher dans les albums",
search: "albums"
};
this.paintButton();
this.album_style = "isActivate";
2024-06-20 15:08:44 +02:00
},
2024-06-21 02:01:15 +02:00
onMounted(){
this.update();
},
2024-06-20 15:08:44 +02:00
edit(e) {
2024-06-20 15:08:44 +02:00
},
click(e) {
e.preventDefault();
this.paintButton();
const old_search = this.state.search;
switch(e.target.value){
case "Albums":
this.state.placeholder = "Rechercher dans les albums";
this.album_style = "isActivate";
this.state.search = "albums";
break;
case "Artists":
this.state.placeholder = "Rechercher dans les artists";
this.artist_style = "isActivate";
this.state.search = "artists";
break;
default:
this.placeholder = "Rechercher dans les songs";
this.song_style = "isActivate";
this.state.search = "songs";
}
if(old_search != this.state.search){this.list();}
2024-06-20 16:46:54 +02:00
this.update();
2024-06-21 01:28:13 +02:00
},
async list(){
2024-06-21 01:59:44 +02:00
this.state = {
placeholder: "Rechercher dans les songs",
items: await this.fetchData()
2024-06-21 01:59:44 +02:00
};
this.update();
2024-06-21 01:59:44 +02:00
},
fetchData(){
return fetch("https://dwarves.iut-fbleau.fr/~fauvet/api/"+this.state.search+"").then(response => {
2024-06-21 01:44:45 +02:00
return response.json();
2024-06-21 01:35:24 +02:00
});
2024-06-21 01:59:44 +02:00
},
paintButton(){
this.album_style = "isDeactivate";
this.artist_style = "isDeactivate";
this.song_style = "isDeactivate";
}
2024-06-20 15:08:44 +02:00
}
</script>
<style>
.isActivate{
background-color: #6EE7B7;
border-color: #059669;
}
.isDeactivate {
background-color: #D1FAE5;
border-color: #6EE7B7;
}
.item {
background-color: #ECFDF5;
border-color: #6EE7B7;
width: 32%;
}
</style>
</onzer>