Quiz.js 4.2 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
quiz    
Jiwon Yoon committed
6

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

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
13
14
15
16
17
18
19
function Quiz() {
    let [question, setQuestionss] = useState({
        ...QnA[0],
        i: 0,
        page: 0,
    })
    let [selected, setSelected] = useState("")  //선택한 답을 보여줄 것들
Jiwon Yoon's avatar
home    
Jiwon Yoon committed
20

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
21
22
    function setQuestion() {
        setQuestionss({ ...QnA[question.i + 1], i: question.i + 1, page: question.page + 1 })
Jiwon Yoon's avatar
Jiwon Yoon committed
23
    }
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
    let handleChange = (ev) => {
        ev.preventDefault()  //새로고침 안되도록
        setSelected(ev.target.value)  //selected값 변경
        let slt = ev.target.value  //slt에 선택한값 받아옴

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

        // let checked_index = -1;
        let checked_value = '';
        checked_value = slt;

        //localStorage.setItem('번문제 답' + checked_value, checked_value)
        for (let i = 0; i < count; i++) {
            if (ev.target.checked) {  //이거 맞는지도 잘..
                // checked_index = i;
                checked_value = slt;
                localStorage.setItem(question.i + 1 + '번문제 답', checked_value)
Jiwon Yoon's avatar
Jiwon Yoon committed
41
42
            }
        }
baesangjune's avatar
ing    
baesangjune committed
43
    }
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
44
45
46
47
48
49
50
    return (
        <>
        <div style={{fontSize:'80px', marginBottom:'100px', textAlign:"center", backgroundColor:'yellow'}}>미적분학 퀴즈</div>
            <img src={fight} style={{ position: "absolute", top: "65px",left: "1050px", top:'200px' }} 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={{ marginTop: "30px", marginBottom: "30px", marginLeft:'450px', fontSize:'40px' }}>정답을 선택하세요</div> */}
51

Jiwon Yoon's avatar
home    
Jiwon Yoon committed
52
                <div>
Jiwon Yoon's avatar
a    
Jiwon Yoon committed
53
54
55
56
57
58
59
60
61
62
63
64
                    <form>
                        {question.Choose.map((a, index) =>
                            <div key={index}>
                                <input type="radio" name='answer' id={'answer' + 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: "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)
                        ? <Link to="/end">제출</Link>
                        : <button type="button" onClick={setQuestion} style={{ width: "85px", height: "40px" }} >다음</button>
Jiwon Yoon's avatar
home    
Jiwon Yoon committed
65

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
66
67
                    }</span>
                    </p>
Jiwon Yoon's avatar
home    
Jiwon Yoon committed
68
69
                </div>

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
                <p style={{ textAlign: "center", fontSize: "30px", color: "crimson" }}>
                    <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>
88

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
89
90
91
            </div>
        </>
    )
92
93
94



Jiwon Yoon's avatar
quiz    
Jiwon Yoon committed
95
96
}

Jiwon Yoon's avatar
a    
Jiwon Yoon committed
97

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