Actualiser test.html
CI / PHP Syntax Check (push) Has been cancelled
CI / JavaScript Lint (push) Has been cancelled
CI / Docker Build Test (push) Has been cancelled
CI / Validate Translation Files (push) Has been cancelled
CI / Auto-merge develop → main (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled

This commit is contained in:
2026-06-17 17:06:50 +00:00
parent 43047276a6
commit 665d3097e7
+15 -13
View File
@@ -31,42 +31,44 @@
</div>
<script>
// 1. Simulation : Fonction qui "modifierait" le produit
// 1. Fonction qui affiche le formulaire
function mockEditProduct(id) {
console.log("Tentative de modification pour l'ID : " + id);
const categories = ["Fruits", "Légumes", "Boissons", "Épicerie", "Surgelés"];
let optionsHTML = categories.map(cat => `<option value="${cat}">${cat}</option>`).join('');
// On affiche un faux formulaire à la place de la modale
const container = document.querySelector('.modal-preview');
container.innerHTML = `
<h3>Modification du produit #${id}</h3>
<form onsubmit="event.preventDefault(); alert('Changement enregistré (simulation réussie !)'); location.reload();">
<label>Nouvelle catégorie :</label><br>
<input type="text" value="Fruits" style="width:100%; padding:8px; margin: 10px 0;">
<form onsubmit="event.preventDefault(); alert('Catégorie ' + document.getElementById('cat-select').value + ' enregistrée !'); location.reload();">
<label>Choisir la catégorie :</label><br>
<select id="cat-select" style="width:100%; padding:8px; margin: 10px 0;">
${optionsHTML}
</select>
<br>
<button type="submit" class="btn btn-success">Enregistrer les modifications</button>
<button type="submit" class="btn btn-success">Enregistrer</button>
<button type="button" class="btn btn-danger" onclick="location.reload()">Annuler</button>
</form>
`;
}
// 2. Injection du bouton bleu qui appelle notre simulateur
function injectShortcut() {
// 2. Injecteur qui ajoute le bouton bleu
setInterval(() => {
const greenBtn = document.querySelector('.btn-success');
if (greenBtn && !document.querySelector('.btn-catalog-shortcut')) {
const container = greenBtn.parentNode;
let pId = greenBtn.getAttribute('data-id');
const blueBtn = document.createElement('button');
blueBtn.type = 'button';
blueBtn.className = 'btn btn-catalog-shortcut';
blueBtn.style.cssText = 'background-color: #1976d2; color: white;';
blueBtn.innerText = '✏️ Modifier la fiche';
// Au clic, on appelle notre fonction de test
blueBtn.onclick = () => mockEditProduct(pId);
container.insertBefore(blueBtn, greenBtn);
}
}
setInterval(injectShortcut, 500);
}, 500);
</script>
</body>
</html>