Quiz.js 4.24 KB
Newer Older
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
1
import React, { useState } from 'react'
Jiwon Yoon's avatar
Jiwon Yoon committed
2
import { Link } from 'react-router-dom';
Jiwon Yoon's avatar
home    
Jiwon Yoon committed
3
import Timer from 'react-compound-timer'; // 타이머쓰기위해 import
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
4
5
import logo from './img/img_question.png'
import fight from './img/img_quiz.png'
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
6
import './Quiz.css'
Jiwon Yoon's avatar
quiz    
Jiwon Yoon committed
7

Jiwon Yoon's avatar
g    
Jiwon Yoon committed
8

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

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
15
function Quiz() {
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
16
    const [question, setQuestion] = useState({
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
17
18
19
20
        ...QnA[0],
        i: 0,
        page: 0,
    })
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
21
22
    const [selected, setSelected] = useState("")  //선택한 답을 보여줄 것들
    // const [checked, setChecked] = useState(false)
Jiwon Yoon's avatar
home    
Jiwon Yoon committed
23

baesangjune's avatar
0805    
baesangjune committed
24
25
    function handleQuestion() {
        setQuestion({ ...QnA[question.i + 1], i: question.i + 1, page: question.page + 1 })
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
26
        // setChecked(false)
Jiwon Yoon's avatar
Jiwon Yoon committed
27
    }
baesangjune's avatar
0805    
baesangjune committed
28

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
29
    let handleChange = (ev) => {
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
30
        // ev.preventDefault()  //새로고침 안되도록
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
31
        setSelected(ev.target.value)  //selected값 변경
baesangjune's avatar
0805    
baesangjune committed
32
33
        let checked_number = ev.target.id;

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
34
35
36
        localStorage.setItem('' + (question.N), Number(checked_number) + 1)
        localStorage.setItem('정답' + (question.N), QnA[question.N - 1].A)

baesangjune's avatar
ing    
baesangjune committed
37
    }
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
38
    return (
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
39
40
41
42
43
44
45
46
47
48
        <div className="container-fluid position-absolute">
            <div className="text-center h2 font-weight-bold bg-warning py-2">미적분학 퀴즈</div>
            {/* <div >
                <img src={fight} className="float-right mr-5 h-50" alt="lion" />
            </div> */}
            <div className="row justify-content-md-center" >
                <div className="col text-right">
                    <h1>
                        <img src={logo} width='50' height='50' alt='question' />
                    </h1>
Jiwon Yoon's avatar
home    
Jiwon Yoon committed
49
                </div>
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
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
                <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}>
                                    <input type="radio" name='answer' id={index} value={a} onClick={handleChange} />
                                    <label className="font-weight-bold" htmlFor={a}>{a}</label>
                                </div>
                            )}
                            <input hidden type="submit" value="확인" /> {/*버튼 숨김*/}
                        </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">
                                <button className="btn btn-outline-success">제출</button>
                            </Link>
                            : <button type="button" className="btn btn-outline-dark" onClick={handleQuestion}>다음</button>
                        }
                        </div>
                        <p className="h3 text-center text-danger ">
                            <Timer
                                initialTime={3600000}
                                direction="backward"
                                checkpoints={[
                                    {
                                        time: 0,
                                        callback: <Link to="/end">제출</Link>
                                        //  history.go(1)
                                    }
                                ]}
                            >
                                {() => (
                                    <>
                                        <Timer.Minutes /> : <Timer.Seconds></Timer.Seconds> / 60 : 00                        </>
                                )}
                            </Timer>     {/* npm i react-compound-timer */}
                        </p>
                    </div>
                </div>
                <div className="col">
Jiwon Yoon's avatar
home    
Jiwon Yoon committed
94

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
95
                </div>
baesangjune's avatar
home    
baesangjune committed
96
97
98



Jiwon Yoon's avatar
a    
Jiwon Yoon committed
99
            </div>
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
100
        </div>
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
101
    )
102
103
104



Jiwon Yoon's avatar
quiz    
Jiwon Yoon committed
105
106
}

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
107

Jiwon Yoon's avatar
home    
Jiwon Yoon committed
108
export default Quiz;