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

const QnA = [
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
7
8
9
    { 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 }
10
11
]

JeongYeonwoo's avatar
JeongYeonwoo committed
12
13
let Answers = []
let Solutions = [4, 3, 2]
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
14

15
function Quiz() {
JeongYeonwoo's avatar
JeongYeonwoo committed
16
17

    const [question, setQuestion] = useState({
18
19
20
21
        ...QnA[0],
        i: 0,
        page: 0,
    })
JeongYeonwoo's avatar
JeongYeonwoo committed
22
    const [selected, setSelected] = useState("")  //선택한 답을 보여줄 것
23

JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
24
25
    function handleQuestion() {
        setQuestion({ ...QnA[question.i + 1], i: question.i + 1, page: question.page + 1 })
JeongYeonwoo's avatar
JeongYeonwoo committed
26
        setSelected("") //페이지 넘어가면 Your Answer 초기화
27
    }
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
28

29
    let handleChange = (ev) => {
JeongYeonwoo's avatar
JeongYeonwoo committed
30
        // ev.preventDefault()  //새로고침 안되도록
31
        setSelected(ev.target.value)  //selected값 변경
JeongYeonwoo's avatar
JeongYeonwoo committed
32
        Answers[question.N - 1] = Number(ev.target.id) + 1
JeongYeonwoo's avatar
JeongYeonwoo committed
33
        localStorage.setItem('Answers', JSON.stringify(Answers))
JeongYeonwoo's avatar
JeongYeonwoo committed
34
        console.log(Answers)
35
    }
JeongYeonwoo's avatar
JeongYeonwoo committed
36

JeongYeonwoo's avatar
JeongYeonwoo committed
37
38
39
40
41
42
43
44
    return (
        <div className="container-fluid">
            <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>
JeongYeonwoo's avatar
JeongYeonwoo committed
45
                </div>
JeongYeonwoo's avatar
JeongYeonwoo committed
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
                <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} onChange={handleChange} checked={parseInt(selected) === a} />
                                    <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" onClick={localStorage.setItem('Solutions', JSON.stringify(Solutions))}>제출</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">
                </div>
            </div>
        </div>
    )
95

JeongYeonwoo's avatar
JeongYeonwoo committed
96
97


98
99
100
}


JeongYeonwoo's avatar
JeongYeonwoo committed
101
export default Quiz;