-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShowQuiz.js
157 lines (149 loc) · 4.19 KB
/
ShowQuiz.js
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import React from 'react';
import { quizData } from './quizData';
class MainQuiz extends React.Component {
state = {
currentQuestion: 0,
myAnswer: null,
options: [],
disabled: true,
isEnd: false,
choices: []
};
loadQuizData = () => {
// console.log(quizData[0].question)
this.setState(() => {
return {
questions: quizData[this.state.currentQuestion].question,
answer: quizData[this.state.currentQuestion].answer,
myAnswer: quizData[this.state.currentQuestion].myAnswer,
options: quizData[this.state.currentQuestion].options
};
});
};
componentDidMount() {
this.loadQuizData();
}
nextQuestionHandler = () => {
// console.log('test')
this.setState({
currentQuestion: this.state.currentQuestion + 1
});
};
prevQuestionHandler = () => {
this.setState({
currentQuestion: this.state.currentQuestion - 1
});
};
componentDidUpdate(prevProps, prevState) {
if (this.state.currentQuestion !== prevState.currentQuestion) {
this.setState(() => {
return {
disabled: true,
questions: quizData[this.state.currentQuestion].question,
options: quizData[this.state.currentQuestion].options,
answer: quizData[this.state.currentQuestion].answer,
myAnswer: quizData[this.state.currentQuestion].myAnswer
};
});
}
}
//check answer
checkAnswer = answer => {
this.setState({ myAnswer: answer, disabled: false });
this.setState(prevState => {
return {
myAnswer: answer,
disabled: false,
choices: [...prevState.choices, answer]
};
});
};
finishHandler = () => {
if (this.state.currentQuestion === quizData.length - 1) {
this.setState({
isEnd: true
});
}
};
render() {
const {
options,
answer,
myAnswer,
currentQuestion,
isEnd,
choices
} = this.state;
if (isEnd) {
return (
<div className='container'>
<div className='result'>
<p>The correct answer's for the questions was</p>
<ul>
{quizData.map((item, index) => (
<li className='ui floating message options' key={index}>
{item.choices}
</li>
))}
</ul>
</div>
</div>
);
} else {
return (
<div className='container-two'>
<div className='App'>
<h1>{this.state.questions} </h1>
<span>{`Questions ${currentQuestion} out of ${quizData.length -
1} remaining `}</span>
{options.map(option => (
<p
key={option.id}
className={`option
${
myAnswer === option
? myAnswer === answer
? 'correctAnswer'
: 'incorrectAnswer'
: null
}
`}
onClick={() => this.checkAnswer(option)}
>
{option}
</p>
))}
{currentQuestion < quizData.length - 1 && (
<button
className='back-btn'
// disabled={this.state.disabled}
onClick={this.prevQuestionHandler}
>
Back
</button>
)}
{currentQuestion < quizData.length - 1 && (
<button
className='next-btn'
disabled={this.state.disabled}
onClick={this.nextQuestionHandler}
>
Next
</button>
)}
{currentQuestion === quizData.length - 1 && (
<button
className='finish-btn'
onClick={this.finishHandler}
disabled={this.state.disabled}
>
Finish
</button>
)}
</div>
</div>
);
}
}
}
export default MainQuiz;