SurveyPage.js
1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
import React, { useState, useEffect } from "react";
import Card from "../components/card/Card";
import ProgressBar from "../components/progressbar/ProgressBar";
import "antd/dist/antd.css";
import styled, { css } from "styled-components";
const SurveyContainer = styled.div`
display: flex;
justify-content: center;
`;
const Container = styled.div`
border: solid 1px red;
width: 500px;
height: 100vh;
overflow: hidden;
`;
const SliderCotainer = styled.div`
width: 100%;
display: flex;
align-items: center;
/* margin: 0 auto; */
${(props) => css`
transform: translateX(${-500 * props.curIdx}px);
transition: 0.5s;
`}
margin-top: 20rem;
`;
function SurveyPage({ history, question }) {
const [curIdx, setCurIdx] = useState(0);
const [answer, setAnswer] = useState([]); // post로 보낼 state
const dispatch = useDispatch();
useEffect(()=>{
if(answer.length === 10){
dispatch()
}
},[answer]);
return (
<SurveyContainer>
<Container>
{/* 상태바 넣기 */}
<SliderCotainer curIdx={curIdx}>
{/* 얘가 슬라이더 컨테이너 */}
{question.map((question) => (
<Card
key={question.num}
question={question}
answer={answer}
setAnswer={setAnswer}
curIdx={curIdx}
setCurIdx={setCurIdx}
/>
))}
</SliderCotainer>
</Container>
</SurveyContainer>
);
}
export default SurveyPage;