Quiz.js 4.18 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
5
import logo from './img/img_question.png'
import fight from './img/img_quiz.png'
6
7

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

JeongYeonwoo's avatar
JeongYeonwoo committed
13
14
15
let Answers = []
let Solutions = [4, 3, 2]
localStorage.setItem('Solutions', JSON.stringify(Solutions))
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
16

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

JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
25
26
    function handleQuestion() {
        setQuestion({ ...QnA[question.i + 1], i: question.i + 1, page: question.page + 1 })
27
    }
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
28

29
30
31
    let handleChange = (ev) => {
        ev.preventDefault()  //새로고침 안되도록
        setSelected(ev.target.value)  //selected값 변경
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
32

JeongYeonwoo's avatar
JeongYeonwoo committed
33
        Answers[question.N - 1] = Number(ev.target.id)+1
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
34

JeongYeonwoo's avatar
JeongYeonwoo committed
35
        localStorage.setItem('Answers', JSON.stringify(Answers))
36
37
    }
    return (
JeongYeonwoo's avatar
JeongYeonwoo committed
38
        <>
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
39
40
41
            <div style={{ fontSize: '80px', marginBottom: '100px', textAlign: "center", backgroundColor: 'yellow' }}>미적분학 퀴즈</div>
            <img src={fight} style={{ position: "absolute", left: "1050px", top: '200px' }} alt="lion" />
            <div className="Quiz" >
JeongYeonwoo's avatar
JeongYeonwoo committed
42
                <h1><img src={logo} style={{ marginLeft: "450px" }} width='75' height='75' alt='question' /> <span style={{ fontSize: "75px", marginLeft: "30px" }}>{question.Q}</span></h1>
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
43
                {/* <div style={{ marginTop: "30px", marginBottom: "30px", marginLeft:'450px', fontSize:'40px' }}>정답을 선택하세요</div> */}
JeongYeonwoo's avatar
JeongYeonwoo committed
44
45
46
47
48

                <div>
                    <form>
                        {question.Choose.map((a, index) =>
                            <div key={index}>
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
49
                                <input type="radio" name='answer' id={index} value={a} onClick={handleChange} style={{ marginLeft: "475px", width: "25px", height: "25px" }} />
JeongYeonwoo's avatar
JeongYeonwoo committed
50
51
52
53
54
                                <label htmlFor={a} style={{ fontSize: "40px", marginLeft: "22px" }}>{a}</label>
                            </div>
                        )}
                        <input hidden type="submit" value="확인" />    {/*버튼 숨김*/}
                    </form>
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
55
                    <p style={{ fontSize: "40px", marginLeft: "480px" }}>Answer :<span style={{ color: "green", fontWeight: "bold", fontSize: "90px", marginLeft: "30px" }}> {selected}</span>  {/* 선택한  보여줌 */}<span style={{ marginLeft: "50px" }}>            {(question.page === QnA.length - 1)
JeongYeonwoo's avatar
JeongYeonwoo committed
56
                        ? <Link to="/end">제출</Link>
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
57
                        : <button type="button" onClick={handleQuestion} style={{ width: "85px", height: "40px" }} >다음</button>
JeongYeonwoo's avatar
JeongYeonwoo committed
58
59
60
61

                    }</span>
                    </p>
                </div>
62

JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
63
                {/* 마지막 질문일 경우 /end페이지로 이동, 그렇지 않을경우는 this.handleQuestion발생 */}
JeongYeonwoo's avatar
JeongYeonwoo committed
64
                {/* {(question.page === QnA.length - 1)
65
                ? <Link to="/end">제출</Link>
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
66
                : <button type="button" onClick={handleQuestion} >다음</button>
JeongYeonwoo's avatar
JeongYeonwoo committed
67
68
69
70
71
72
            } */}

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

                <p style={{ textAlign: "center", fontSize: "30px", color: "crimson" }}>
                    <Timer
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
73
                        initialTime={3600000}
JeongYeonwoo's avatar
JeongYeonwoo committed
74
75
76
77
                        direction="backward"
                        checkpoints={[
                            {
                                time: 0,
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
78
                                callback: <Link to="/end">제출</Link>
JeongYeonwoo's avatar
JeongYeonwoo committed
79
80
81
82
83
84
                                //  history.go(1)
                            }
                        ]}
                    >
                        {() => (
                            <>
JeongYeonwoo's avatar
updated    
JeongYeonwoo committed
85
                                <Timer.Minutes /> : <Timer.Seconds></Timer.Seconds> / 60 : 00                        </>
JeongYeonwoo's avatar
JeongYeonwoo committed
86
87
88
89
90
                        )}
                    </Timer>     {/* npm i react-compound-timer */}
                </p>
            </div>
        </>
91
92
93
94
    )
}


JeongYeonwoo's avatar
JeongYeonwoo committed
95
export default Quiz;