From 243e28067fb263fc92932ee2f0fa2a9b4f8783ab Mon Sep 17 00:00:00 2001 From: lauratbg Date: Tue, 16 Apr 2024 16:13:03 +0200 Subject: [PATCH] Removed try and catch bc of pr --- .../questionView/QuestionGenerator.js | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/webapp/src/components/questionView/QuestionGenerator.js b/webapp/src/components/questionView/QuestionGenerator.js index 12663c77..731d055f 100644 --- a/webapp/src/components/questionView/QuestionGenerator.js +++ b/webapp/src/components/questionView/QuestionGenerator.js @@ -10,30 +10,30 @@ class QuestionGenerator{ async generateQuestions(lang, type, amount) { - try { - //const response = await fetch(this.apiUrl); - //const receivedQuestions = await response.json(); + // try { + // //const response = await fetch(this.apiUrl); + // //const receivedQuestions = await response.json(); - //Mockup - console.log("type: "+type+" amount: "+amount) - const receivedQuestions = JSON.parse('{"0":{"question":"¿Cuál es la población de Oviedo?","answers":["225089","191325","220587","121548"]},'+ - '"1":{"question":"¿Which is the population of Gijon?","answers":["275274","159658","233982","305554"]},'+ - '"2":{"question":"¿Cuál es la población de Avilés?","answers":["82568","115595","41284","122200"]},'+ - '"3":{"question":"¿Cuál es la capital de Asturias?","answers":["Ciudad de Oviedo","a","b","c"]},'+ - '"4":{"question":"¿Cuál es la capital de España?","answers":["Madrid","a","b","c"]},'+ - '"5":{"question":"¿Cuál es la capital de Turquía?","answers":["Ankara","a","b","c"]}}') + // //Mockup + // console.log("type: "+type+" amount: "+amount) + // const receivedQuestions = JSON.parse('{"0":{"question":"¿Cuál es la población de Oviedo?","answers":["225089","191325","220587","121548"]},'+ + // '"1":{"question":"¿Which is the population of Gijon?","answers":["275274","159658","233982","305554"]},'+ + // '"2":{"question":"¿Cuál es la población de Avilés?","answers":["82568","115595","41284","122200"]},'+ + // '"3":{"question":"¿Cuál es la capital de Asturias?","answers":["Ciudad de Oviedo","a","b","c"]},'+ + // '"4":{"question":"¿Cuál es la capital de España?","answers":["Madrid","a","b","c"]},'+ + // '"5":{"question":"¿Cuál es la capital de Turquía?","answers":["Ankara","a","b","c"]}}') - let i = 0; - var questions = []; - for (const key in receivedQuestions) { - questions[i] = new Question(receivedQuestions[key]); - i += 1; - } - console.log(questions); - return questions; - } catch (error) { - throw new Error(error); - } + // let i = 0; + // var questions = []; + // for (const key in receivedQuestions) { + // questions[i] = new Question(receivedQuestions[key]); + // i += 1; + // } + // console.log(questions); + // return questions; + // } catch (error) { + // throw new Error(error); + // }