Skip to content

Commit

Permalink
Arreglando el avgTime
Browse files Browse the repository at this point in the history
  • Loading branch information
iyanfdezz committed Apr 1, 2024
1 parent aa35da5 commit 02f0b64
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions webapp/src/pages/Clasico/Clasico.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ const JuegoPreguntas = () => {

useEffect(() => {
if (tiempoRestante === 0) {
const newTTotal=tiempoTotal+(SECS_PER_QUESTION);
setTiempoTotal(newTTotal);
setPreguntaTerminada(true);
setTimeout(() => {
setPreguntaTerminada(false);
Expand Down Expand Up @@ -122,11 +124,9 @@ const JuegoPreguntas = () => {
const newCorrectQuestions=preguntasCorrectas+1;
setPuntuacion(puntuacion + 1);
setPreguntasCorrectas(newCorrectQuestions);
console.log("bien")
} else {
const newIncorrectQuestions=preguntasFalladas+1;
setPreguntasFalladas(newIncorrectQuestions);
console.log("mal")
}
setTiempoTotal(tiempoTotal + tiempoRestante);
setRespuestaSeleccionada(null);
Expand All @@ -144,7 +144,7 @@ const JuegoPreguntas = () => {
console.log(preguntasFalladas);
const tMedio=tiempoTotal/preguntasTotales;
setTiempoMedio(tMedio);

console.log(tMedio);
}
}

Expand Down Expand Up @@ -253,7 +253,12 @@ const JuegoPreguntas = () => {

<Flex justify="center" mt={4}>
<Button
onClick={() => setTiempoRestante(0)}
onClick={() => {
const newTTotal=tiempoTotal+(SECS_PER_QUESTION-tiempoRestante);
console.log(newTTotal);
setTiempoTotal(newTTotal);
console.log(tiempoTotal);
setTiempoRestante(0)}}
disabled={tiempoRestante === 0 || juegoTerminado}
colorScheme="teal"
m={2}
Expand Down

0 comments on commit 02f0b64

Please sign in to comment.