-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule2Trivia.js
148 lines (135 loc) · 4.07 KB
/
Module2Trivia.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
function AnswerButton(props){
var style={
width:"100%",
height:50,
}
//console.log(props)
return(
<div>
{
props.ans.map((value,index)=>{return <button style={style} key={index} onClick={ ()=>props.clickHandle(index)}>{value}</button>
})
}
</div>
)
}
function QuestionPanel(props){
let style={textAlign: "center",
width:"50%",
float:"left"
}
// console.log(props.ans[0])
return(
<div style={style}>
<h2 >{props.que}</h2>
<AnswerButton ans={props.ans} clickHandle={props.clickHandle}/><br></br>
</div>
)
}
function ResultPanel(props){
let style={textAlign: "center",
marginTop: "100px",
width:"50%",
height:"100%",
float:"right"
}
return(
<div style={style}>
<h3 >Correct:{props.correct} </h3>
<h3 >Incorrect:{props.incorrect}</h3>
</div>
)
}
class LayoutBoard extends React.Component{
constructor(props){
super(props);
this.state={
counter:0,
correct:0,
finish:false,
question:props.appData,}
this.clickHandle=this.clickHandle.bind(this)
//console.log(props.appData[0].options)
}
clickHandle(index){
//console.log("index"+ index)
var nextQuestion={
counter:this.state.counter+1
}
//console.log(this.state.question[this.state.counter].answer)
if(index == this.state.question[this.state.counter].answer){
nextQuestion.correct=this.state.correct+1
}
//console.log(this.state.counter+" "+this.state.question.length+" "+this.state.finish)
if(!(this.state.counter < this.state.question.length-1)){
nextQuestion.finish=true
}
this.setState(nextQuestion)
}
render(){
return(
<div >
{(!this.state.finish)?
<div>
<QuestionPanel que={this.state.question[this.state.counter].question} ans={this.state.question[this.state.counter].options} clickHandle={this.clickHandle}/>
<ResultPanel correct={this.state.correct} incorrect={this.state.counter-this.state.correct}/>
</div>
:
<div>
<ResultPanel correct={this.state.correct} incorrect={this.state.counter-this.state.correct}/>
</div>
}
</div>
)
}
}
var appData=[
{
question:"Which can change the state of the component?",
answer: 1,
options:["forceUpdate","setState","updateState","None of the mentioned"]
},{
question:"ReactJS is developed by _____?",
answer: 1,
options:["Google Engineers", "FaceBook Engineers"]
},{
question:"What is the Virtual DOM?",
answer: 2,
options:["A Shadow DOM",
"A carbon copy of the actual DOM",
"A collection of React elements and \"fibers\" representing the user interface",
"The hit sequel to the game DOOM"]
},{
question:"What does HTML stand for?",
answer: 1,
options:["Hyperlinks and Text Markup Language", "Hyper Text Markup Language", "Home Tool Markup Language"]
},{
question:"How can you access the state of a component from inside of a member function?",
answer: 2,
options:["this.getState()","this.prototype.stateValue","this.state","this.values"]
},{
question:"What is a react.js in MVC?",
answer: 3,
options:["Controller","Middleware","Model","View"]
},{
question:"How do I add CSS classes to components?",
answer: 2,
options:["Pass them to the class prop","Pass them to the classname prop","Pass them to the className prop","Pass them to the c prop"]
},{
question:"What does CSS stand for?",
answer: 2,
options:["Creative Style Sheets", "Computer Style Sheets", "Cascading Style Sheets"]
},{
question:"How should I NOT prevent a function from being called too quickly or too many times in a row?",
answer: 3,
options:["throttling", "debouncing", "requestAnimationFrame throttling", "window.setTimeout"]
},{
question:"Which CSS property controls the text size?",
answer: 1,
options:["text-size", "font-size", "font-style"]
}
]
ReactDOM.render(
<LayoutBoard appData={appData}/>,
document.getElementById('root')
)