Quiz.js 4.38 KB
Newer Older
baesangjune's avatar
home    
baesangjune committed
1
import React, { useState } from 'react'
baesangjune's avatar
baesangjune committed
2
import { Link, Redirect } from 'react-router-dom';
baesangjune's avatar
baesangjune committed
3
import Timer from 'react-compound-timer'; // 타이머쓰기위해 import
baesangjune's avatar
baesangjune committed
4
5
import logo from './img_question.png'

baesangjune's avatar
baesangjune committed
6

Jiwon Yoon's avatar
quiz    
Jiwon Yoon committed
7

baesangjune's avatar
home    
baesangjune committed
8
const QnA = [
baesangjune's avatar
.    
baesangjune committed
9
10
11
    { Q: "6 X 4 = ?", Choose: [6, 12, 18, 24], N: 1 },
    { Q: "3 + 3 = ?", Choose: [2, 4, 6, 8], N: 2 },
    { Q: "3 - 1 = ?", Choose: [1, 2, 3, 4], N: 3 }
Jiwon Yoon's avatar
quiz    
Jiwon Yoon committed
12
13
]

baesangjune's avatar
baesangjune committed
14
15
let Answers = [0,0,0]
localStorage.setItem('Answers', JSON.stringify(Answers))
baesangjune's avatar
baesangjune committed
16
17
let Solutions = [4, 3, 2]
localStorage.setItem('Solutions', JSON.stringify(Solutions))
baesangjune's avatar
0805    
baesangjune committed
18

baesangjune's avatar
home    
baesangjune committed
19
function Quiz() {
baesangjune's avatar
baesangjune committed
20
    const [question, setQuestion] = useState({
baesangjune's avatar
home    
baesangjune committed
21
22
23
24
        ...QnA[0],
        i: 0,
        page: 0,
    })
baesangjune's avatar
baesangjune committed
25
26
    const [selected, setSelected] = useState("")  //선택한 답을 보여줄 것들
    // const [checked, setChecked] = useState(false)
baesangjune's avatar
baesangjune committed
27

baesangjune's avatar
baesangjune committed
28
29
    const [timeout, settimeout] = useState(false)

baesangjune's avatar
0805    
baesangjune committed
30
31
    function handleQuestion() {
        setQuestion({ ...QnA[question.i + 1], i: question.i + 1, page: question.page + 1 })
baesangjune's avatar
baesangjune committed
32
        // setChecked(false)
Jiwon Yoon's avatar
Jiwon Yoon committed
33
    }
baesangjune's avatar
0805    
baesangjune committed
34

baesangjune's avatar
home    
baesangjune committed
35
    let handleChange = (ev) => {
baesangjune's avatar
baesangjune committed
36
        // ev.preventDefault()  //새로고침 안되도록
baesangjune's avatar
home    
baesangjune committed
37
        setSelected(ev.target.value)  //selected값 변경
baesangjune's avatar
.    
baesangjune committed
38
        Answers[question.N - 1] = Number(ev.target.id) + 1
baesangjune's avatar
0805    
baesangjune committed
39

baesangjune's avatar
baesangjune committed
40
        localStorage.setItem('Answers', JSON.stringify(Answers))
baesangjune's avatar
baesangjune committed
41
    }
baesangjune's avatar
home    
baesangjune committed
42
    return (
baesangjune's avatar
baesangjune committed
43
        <>
baesangjune's avatar
baesangjune committed
44
         <div className="container-fluid">
baesangjune's avatar
baesangjune committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
            <div className="text-center h2 font-weight-bold bg-warning py-2">미적분학 퀴즈</div>
            <div className="row justify-content-md-center" >
                <div className="col text-right">
                    <h1>
                        <img src={logo} width='50' height='50' alt='question' />
                    </h1>
                </div>
                <div className="col-md-auto">
                    <div className="h2 mt-2">
                        {question.Q}
                    </div>
                    <div className="mt-2">
                        <form>
                            {question.Choose.map((a, index) =>
                                <div key={index}>
baesangjune's avatar
baesangjune committed
60
                                    <input type="radio" name='answer' id={index} value={a} onChange={handleChange} checked={parseInt(selected) === a} />
baesangjune's avatar
baesangjune committed
61
62
                                    <label className="font-weight-bold" htmlFor={a}>{a}</label>
                                </div>
baesangjune's avatar
baesangjune committed
63
                            )}                          
baesangjune's avatar
baesangjune committed
64
65
66
67
68
                        </form>
                        <span className="h5 font-weight-bold"> Your Answer :</span>
                        <span className="h2 font-weight-bold text-danger"> {selected}</span>  {/* 선택한  보여줌 */}
                        <div className="text-center my-3"> {(question.page === QnA.length - 1)
                            ? <Link to="/end">
baesangjune's avatar
baesangjune committed
69
                                <button className="btn btn-outline-success" onClick={localStorage.setItem('Solutions', JSON.stringify(Solutions))}>제출</button>
baesangjune's avatar
baesangjune committed
70
71
72
73
74
75
                            </Link>
                            : <button type="button" className="btn btn-outline-dark" onClick={handleQuestion}>다음</button>
                        }
                        </div>
                        <p className="h3 text-center text-danger ">
                            <Timer
baesangjune's avatar
baesangjune committed
76
                                initialTime={36000}
baesangjune's avatar
baesangjune committed
77
78
                                direction="backward"
                                checkpoints={[
baesangjune's avatar
baesangjune committed
79
80
81
                                    {time:1,
                                        callback:()=>alert('시간이 초과되었습니다.'),
                                    },
baesangjune's avatar
baesangjune committed
82
83
                                    {
                                        time: 0,
baesangjune's avatar
baesangjune committed
84
85
                                        callback: () => settimeout(true),

baesangjune's avatar
baesangjune committed
86
87
88
89
90
91
92
93
94
95
96
97
                                    }
                                ]}
                            >
                                {() => (
                                    <>
                                        <Timer.Minutes /> : <Timer.Seconds></Timer.Seconds> / 60 : 00                        </>
                                )}
                            </Timer>     {/* npm i react-compound-timer */}
                        </p>
                    </div>
                </div>
                <div className="col">
baesangjune's avatar
baesangjune committed
98
                </div>
Jiwon Yoon's avatar
Jiwon Yoon committed
99
            </div>
baesangjune's avatar
baesangjune committed
100
        </div>
baesangjune's avatar
baesangjune committed
101
102
        {timeout ? <Redirect to='/end'/> : '' }
        </>
baesangjune's avatar
home    
baesangjune committed
103
104
105
106
    )



Jiwon Yoon's avatar
quiz    
Jiwon Yoon committed
107
108
}

baesangjune's avatar
home    
baesangjune committed
109

baesangjune's avatar
baesangjune committed
110
export default Quiz;