generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
import { Box } from "@chakra-ui/react"; | ||
import { AnswerButton } from './AnswerButton.jsx'; | ||
|
||
export function AnswersBlock(){ | ||
export function AnswersBlock({ respuestas }){ | ||
|
||
const correcta = respuestas[0]; | ||
//Ordenar random | ||
//Intercambiar el primer elemento con otro elemento aleatorio del array | ||
const indiceAleatorio = Math.floor(Math.random() * (respuestas.length - 1)); | ||
const save = respuestas[0]; | ||
respuestas[0] = respuestas[indiceAleatorio]; | ||
respuestas[indiceAleatorio] = save; | ||
|
||
console.log(correcta); | ||
|
||
return( | ||
<Box display="grid" flex="1" gridTemplateColumns="repeat(2,1fr)" | ||
gridColumnGap="2em" padding="4em" alignItems="center"> | ||
<AnswerButton text={"Primera pregunta"} colorFondo={"#A06AB4"}/> | ||
<AnswerButton text={"Segunda pregunta"} colorFondo={"#B5EECB"}/> | ||
<AnswerButton text={"Tercera pregunta"} colorFondo={"#FFD743"}/> | ||
<AnswerButton text={"Cuarta pregunta"} colorFondo={"#D773A2"}/> | ||
<AnswerButton text={respuestas[0]} colorFondo={"#A06AB4"}/> | ||
<AnswerButton text={respuestas[1]} colorFondo={"#B5EECB"}/> | ||
<AnswerButton text={respuestas[2]} colorFondo={"#FFD743"}/> | ||
<AnswerButton text={respuestas[3]} colorFondo={"#D773A2"}/> | ||
</Box> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,55 @@ | ||
import { useEffect, useState } from 'react'; | ||
import axios from 'axios'; | ||
import { Box} from "@chakra-ui/react"; | ||
import { AnswersBlock } from './AnswersBlock.jsx'; | ||
import { EnunciadoBlock } from './EnunciadoBlock.jsx'; | ||
|
||
export function QuestionArea(){ | ||
|
||
const apiEndpoint = process.env.REACT_APP_API_ENDPOINT || 'http://localhost:8000'; | ||
// Estado para almacenar los datos de la pregunta | ||
const [questionData, setQuestionData] = useState(null); | ||
|
||
// Función para llamar al servicio y obtener los datos de la pregunta | ||
const fetchQuestionData = async () => { | ||
try { | ||
// Llamada al servicio para obtener los datos de la pregunta (aquí asumiendo que el servicio devuelve un JSON) | ||
const response = await axios.get(`${apiEndpoint}/question`); | ||
const data = await response.json(); | ||
setQuestionData(data); // Actualizar el estado con los datos de la pregunta obtenidos del servicio | ||
} catch (error) { | ||
console.error('Error fetching question data:', error); | ||
} | ||
}; | ||
|
||
// Llamar al servicio al cargar el componente (equivalente a componentDidMount) | ||
useEffect(() => { | ||
fetchQuestionData(); | ||
}, []); // El array vacío asegura que esto solo se ejecute una vez al montar el componente | ||
|
||
|
||
const questionJson = { | ||
"pregunta": "What is the capital of France?", | ||
"correcta": "Paris", | ||
"respuestasIncorrecta1": "London", | ||
"respuestasIncorrecta2": "Berlin", | ||
"respuestasIncorrecta3": "Madrid" | ||
} | ||
|
||
const respuestas = [questionJson.correcta,questionJson.respuestasIncorrecta1,questionJson.respuestasIncorrecta2,questionJson.respuestasIncorrecta3]; | ||
|
||
|
||
return( | ||
<Box alignContent="center" bg="#0000004d" display="flex" flexDir="column" | ||
maxH="80vh" maxW="70vW" minH="70vh" minW="60vW"> | ||
<EnunciadoBlock pregunta={"Pregunta"}/> | ||
<AnswersBlock/> | ||
{questionJson ? ( // Verificar si se han obtenido los datos de la pregunta | ||
<> | ||
<EnunciadoBlock pregunta={questionJson.pregunta}/> {/* Renderizar el enunciado de la pregunta */} | ||
<AnswersBlock respuestas={respuestas}/> {/* Renderizar las respuestas de la pregunta */} | ||
</> | ||
) : ( | ||
<p>Cargando...</p> // Mensaje de carga mientras se obtienen los datos | ||
)} | ||
</Box> | ||
) | ||
} |