Skip to content

Commit

Permalink
Añadido evento para volver a inicio
Browse files Browse the repository at this point in the history
  • Loading branch information
uo289432 committed Apr 25, 2024
1 parent 3e919fe commit c20f613
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions webapp/src/components/Pages/Juego.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import '../Estilos/juego.css';
import { Container } from '@mui/material';
import Temporizador from '../Temporizador';
import PropTypes from 'prop-types'
import { useNavigate } from 'react-router-dom';

const Juego = ({isLogged, username, numPreguntas}) => {
//La pregunta (string)
Expand All @@ -28,7 +29,7 @@ const Juego = ({isLogged, username, numPreguntas}) => {
const [numRespuestasIncorrectas, setNumRespuestasIncorrectas] = useState(0)
const [disableFinish, setDisableFinish] = useState(false)

//const navigate= useNavigate()
const navigate= useNavigate()

//Variables para la obtencion y modificacion de estadisticas del usuario y de preguntas
const apiEndpoint = process.env.REACT_APP_API_ENDPOINT || 'http://localhost:8000';
Expand Down Expand Up @@ -75,7 +76,6 @@ const Juego = ({isLogged, username, numPreguntas}) => {
//Poner temporizador a 20 de nuevo
setRestartTemporizador(true);
}


//Control de las estadísticas
const updateStats = async () => {
Expand Down Expand Up @@ -199,7 +199,8 @@ const Juego = ({isLogged, username, numPreguntas}) => {
//Funcion que se llama al hacer click en el boton Siguiente
const clickFinalizar = () => {
updateStats();
setDisableFinish(true)
setDisableFinish(true);
navigate("/");
}

const handleRestart = () => {
Expand Down

0 comments on commit c20f613

Please sign in to comment.