- spinning loading button
This commit is contained in:
Jérémy Guillot
2024-07-05 19:28:11 +02:00
parent 586ebdb126
commit 7dee9d71be
2 changed files with 12 additions and 10 deletions

View File

@@ -2,17 +2,27 @@
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = ["dropdown"]
static targets = ["dropdown", "icon"]
static values = {
currentSort: String,
currentOrder: String,
currentStatus: String
}
connect() {
window.addEventListener('alert:show', this.stopLoading.bind(this));
}
stopLoading() {
this.iconTarget.classList.remove('fa-spin');
}
refreshMetadata(event) {
const mangaId = event.currentTarget.dataset.mangaid;
const url = `/refresh_metadata`;
this.iconTarget.classList.add('fa-spin');
fetch(url, {
method: 'POST',
headers: {
@@ -26,14 +36,6 @@ export default class extends Controller {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
console.log('Metadata refreshed:', data);
// Traitez la réponse ici, par exemple en mettant à jour l'interface utilisateur
})
.catch(error => {
console.error('Error:', error);
// Gérez l'erreur ici, par exemple en affichant un message à l'utilisateur
});
}