Spaces:
Sleeping
Sleeping
File size: 1,262 Bytes
b6fd436 2f44147 b6fd436 f72c84a 1bfee90 141e519 a5fe226 1bfee90 141e519 aca01cd be0d579 aca01cd be0d579 aca01cd 1bfee90 aca01cd 1bfee90 a5fe226 1bfee90 a5fe226 c191d97 e2cd1f2 1bfee90 141e519 043c8cf c191d97 a5fe226 |
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 |
function revealContent() {
const loader = document.getElementById('loader');
const textGenContainer = document.getElementById('text-gen-container');
loader.classList.add('hidden');
textGenContainer.classList.remove('hidden');
}
// Call the function once the DOM is loaded
document.addEventListener('DOMContentLoaded', () => {
revealContent();
});
const textGenForm = document.querySelector("#text-gen-form");
const generateText = async (text) => {
const response = await fetch('/generate_text', {
method: 'POST',
headers: {
'Content-Type': 'text/plain'
},
body: text
});
const data = await response.json();
return data.output;
};
async function handleFormSubmit(event) {
event.preventDefault();
// Afficher l'image de chargement
const loader = document.querySelector('#loader');
loader.classList.remove('hidden');
console.log("Form submitted");
const textGenInput = document.getElementById("text-gen-input");
const textGenParagraph = document.querySelector(".text-gen-output");
textGenParagraph.textContent = await generateText(textGenInput.value);
// Masquer l'image de chargement après le traitement
loader.classList.add('hidden');
}
textGenForm.addEventListener('submit', handleFormSubmit);
|