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


김민수's avatar
김민수 committed
7
8
9
10
11
12
13

const QnA = [
    { 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 }
]

김민수's avatar
수정2    
김민수 committed
14
15
16
let Answers = []
let Solutions = [4, 3, 2]
localStorage.setItem('Solutions', JSON.stringify(Solutions))
김민수's avatar
김민수 committed
17
18

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

    function handleQuestion() {
        setQuestion({ ...QnA[question.i + 1], i: question.i + 1, page: question.page + 1 })
김민수's avatar
김민수 committed
29
        // setChecked(false)
김민수's avatar
김민수 committed
30
31
32
    }

    let handleChange = (ev) => {
김민수's avatar
김민수 committed
33
        // ev.preventDefault()  //새로고침 안되도록
김민수's avatar
김민수 committed
34
        setSelected(ev.target.value)  //selected값 변경
김민수's avatar
수정2    
김민수 committed
35
        Answers[question.N - 1] = Number(ev.target.id) + 1
김민수's avatar
김민수 committed
36

김민수's avatar
수정2    
김민수 committed
37
        localStorage.setItem('Answers', JSON.stringify(Answers))
김민수's avatar
김민수 committed
38
          }
김민수's avatar
김민수 committed
39
    return (
김민수's avatar
김민수 committed
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
        <div className="container-fluid position-absolute">
            <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}>
                                    <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">
김민수's avatar
김민수 committed
92
93
                </div>
            </div>
김민수's avatar
김민수 committed
94
        </div>
김민수's avatar
김민수 committed
95
96
97
98
99
100
101
    )



}


김민수's avatar
김민수 committed
102
export default Quiz;