Quiz.js 4.36 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
JeongYeonwoo committed
4
5
import logo from './img_question.png'
import fight from './img_quiz.png'
6
7

const QnA = [
JeongYeonwoo's avatar
JeongYeonwoo committed
8
9
10
    { Q: "6 X 4 = ?", Choose: [6, 12, 18, 24], A: "", N: 1 },
    { Q: "3 + 3 = ?", Choose: [2, 4, 6, 8], A: "", N: 2 },
    { Q: "3 - 1 = ?", Choose: [1, 2, 3, 4], A: "", N: 3 }
11
12
13
14
15
16
17
18
]

function Quiz() {
    let [question, setQuestionss] = useState({
        ...QnA[0],
        i: 0,
        page: 0,
    })
JeongYeonwoo's avatar
quiz    
JeongYeonwoo committed
19
    let [selected, setSelected] = useState("")  //선택한 답을 보여줄 것들
20
21
22
23
24
25
26

    function setQuestion() {
        setQuestionss({ ...QnA[question.i + 1], i: question.i + 1, page: question.page + 1 })
    }
    let handleChange = (ev) => {
        ev.preventDefault()  //새로고침 안되도록
        setSelected(ev.target.value)  //selected값 변경
JeongYeonwoo's avatar
quiz    
JeongYeonwoo committed
27
28
        let slt = ev.target.value  //slt에 선택한값 받아옴

29
30
31
32
33
        let count = question.Choose.length  //이거 정확히 뭘로할지 모르겠어요 ㅜㅜ

        // let checked_index = -1;
        let checked_value = '';
        checked_value = slt;
JeongYeonwoo's avatar
quiz    
JeongYeonwoo committed
34

35
36
37
38
39
        //localStorage.setItem('번문제 답' + checked_value, checked_value)
        for (let i = 0; i < count; i++) {
            if (ev.target.checked) {  //이거 맞는지도 잘..
                // checked_index = i;
                checked_value = slt;
JeongYeonwoo's avatar
quiz    
JeongYeonwoo committed
40
                localStorage.setItem(question.i + 1 + '번문제 답', checked_value)
41
42
43
44
            }
        }
    }
    return (
JeongYeonwoo's avatar
JeongYeonwoo committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
        <>
            <img src={fight} style={{ position: "absolute", top: "65px",left: "1050px" }} alt="lion" />
            <div className="Quiz">
                <h1><img src={logo} style={{ marginLeft: "450px" }} width='75' height='75' alt='question' /> <span style={{ fontSize: "75px", marginLeft: "30px" }}>{question.Q}</span></h1>
                <div style={{ textAlign: "center", marginTop: "30px", marginBottom: "30px" }}>정답을 선택하세요</div>

                <div>
                    <form>
                        {question.Choose.map((a, index) =>
                            <div key={index}>
                                <input type="radio" name='answer' id={'anwer' + a} value={a} onClick={handleChange} style={{ marginLeft: "475px", width: "25px", height: "25px" }} />
                                <label htmlFor={a} style={{ fontSize: "40px", marginLeft: "22px" }}>{a}</label>
                            </div>
                        )}
                        <input hidden type="submit" value="확인" />    {/*버튼 숨김*/}
                    </form>
                    <p style={{ fontSize: "20px", marginLeft: "600px" }}>선택한  :<span style={{ color: "green", fontWeight: "bold", fontSize: "90px", marginLeft: "30px" }}> {selected}</span>  {/* 선택한  보여줌 */}<span style={{ marginLeft: "50px" }}>            {(question.page === QnA.length - 1)
                        ? <Link to="/end">제출</Link>
                        : <button type="button" onClick={setQuestion} style={{ width: "85px", height: "40px" }} >다음</button>

                    }</span>
                    </p>
                </div>
68
69
70
71




JeongYeonwoo's avatar
JeongYeonwoo committed
72
73
74

                {/* 마지막 질문일 경우 /end페이지로 이동, 그렇지 않을경우는 this.setQuestion발생 */}
                {/* {(question.page === QnA.length - 1)
75
76
77
                ? <Link to="/end">제출</Link>
                : <button type="button" onClick={setQuestion} >다음</button>

JeongYeonwoo's avatar
JeongYeonwoo committed
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
            } */}

                {/* <input onKeyPress="this.enterkey()"/> */}


                <p style={{ textAlign: "center", fontSize: "30px", color: "crimson" }}>
                    <Timer
                        initialTime={3050}
                        direction="backward"
                        checkpoints={[
                            {
                                time: 0,
                                callback: setQuestion
                                //  history.go(1)
                            }
                        ]}
                    >
                        {() => (
                            <>
                                <Timer.Seconds /> seconds
98
                        </>
JeongYeonwoo's avatar
JeongYeonwoo committed
99
100
101
                        )}
                    </Timer>     {/* npm i react-compound-timer */}
                </p>
102

JeongYeonwoo's avatar
JeongYeonwoo committed
103
104
            </div>
        </>
105
106
107
108
109
110
111
112
    )



}


export default Quiz;