Signup.js 8.49 KB
Newer Older
이재연's avatar
이재연 committed
1
import React, { useState } from 'react';
이재연's avatar
aa    
이재연 committed
2
import axios from 'axios'
이재연's avatar
이재연 committed
3
import { Form, Col, Container, Button, Row, Alert } from 'react-bootstrap'
이재연's avatar
aa    
이재연 committed
4
import catchErrors from '../utils/catchErrors'
이재연's avatar
이재연 committed
5
import { Redirect } from 'react-router-dom';
이재연's avatar
이재연 committed
6

이재연's avatar
이재연 committed
7
8
9
10
11
12
13
14
const INIT_USER = {
    name: '',
    number: '',
    id: '',
    password: '',
    password2: '',
    tel: ''
}
Kim, Subin's avatar
Kim, Subin committed
15
16

function Signup() {
이재연's avatar
이재연 committed
17
18
    const [user, setUser] = useState(true)
    const [error, setError] = useState('')
이재연's avatar
이재연 committed
19
20
    const [success, setSuccess] = useState(false)
    const [validated, setValidated] = useState(false);
이재연's avatar
이재연 committed
21

이재연's avatar
이재연 committed
22
23
24
    function handleChange(event) {
        const { name, value } = event.target
        setUser({ ...user, [name]: value })
이재연's avatar
이재연 committed
25
    }
이재연's avatar
이재연 committed
26
27


이재연's avatar
이재연 committed
28
29
30
    async function handleSubmit(event) {
        event.preventDefault()
        const form = event.currentTarget;
이재연's avatar
이재연 committed
31
32
        console.log(form)
        if (form.checkValidity() === false) {
이재연's avatar
이재연 committed
33
34
            event.preventDefault();
            event.stopPropagation();
이재연's avatar
이재연 committed
35
36
        }
        setValidated(true);
이재연's avatar
이재연 committed
37
        console.log(user)
이재연's avatar
aa    
이재연 committed
38

이재연's avatar
이재연 committed
39
40
        try {
            setError('')
이재연's avatar
aa    
이재연 committed
41
42
            const response = await axios.post('/api/users/signup', user)
            console.log(response.data)
이재연's avatar
이재연 committed
43
            setSuccess(true)
이재연's avatar
이재연 committed
44
        } catch (error) {
이재연's avatar
aa    
이재연 committed
45
            catchErrors(error, setError)
이재연's avatar
이재연 committed
46
        }
이재연's avatar
이재연 committed
47
    }
이재연's avatar
이재연 committed
48

이재연's avatar
이재연 committed
49
50
51
52
53
54
55


    function checkPassword(event) {
        const p1 = user.password
        const p2 = user.password2

        if (p1 !== p2) {
이재연's avatar
이재연 committed
56
57
58
59
            event.preventDefault();
            event.stopPropagation();
            alert('비밀번호가 일치하지 않습니다.')
            return false
이재연's avatar
이재연 committed
60
61

        } else {
이재연's avatar
이재연 committed
62
63
64
            return true
        }
    }
이재연's avatar
..    
이재연 committed
65

이재연's avatar
이재연 committed
66
67
68
69
70
71
72
73
    if (success) {
        alert('회원가입 되었습니다.')
        return <Redirect to='/login'/>
    }

return (
    <div>
        <Container className="my-5">
이재연's avatar
aa    
이재연 committed
74

이재연's avatar
이재연 committed
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
            <Row className="justify-content-center">
                <Col md={6} xs={10} className="border" style={{ background: '#F7F3F3' }}>
                    <h2 className="text-center mt-5">Sign Up</h2>
                    {error && <Alert variant='danger'>
                        {error}
                    </Alert>}
                    <Form
                        noValidate validated={validated}
                        onSubmit={handleSubmit}
                        className="p-5">
                        <Form.Group controlId="formBasicName">
                            <Form.Row>
                                <Col sm={4} xs={6} as={Form.Label} for="id"> </Col>
                                <Col sm={8} xs={12} as={Form.Control}
                                    required type="text"
                                    name="name"
                                    placeholder="Name"
                                    style={{ width: '160px' }}
                                    value={user.name}
                                    onChange={handleChange} />
                                <Form.Control.Feedback type="invalid">이름을 입력하세요. </Form.Control.Feedback>
                            </Form.Row>
                        </Form.Group>
                        <Form.Group controlId="formBasicNumber">
                            <Form.Row>
                                <Col sm={4} xs={6} as={Form.Label} for="number">주민등록번호</Col>
                                <Col as={Row} sm={8} xs={10} >
                                    <Form.Control
이재연's avatar
이재연 committed
103
                                        required type="text"
이재연's avatar
이재연 committed
104
105
106
107
108
109
                                        name="number1"
                                        maxlength="6"
                                        className="mx-2" style={{ width: '17 0px' }}
                                        value={user.number1}
                                        onChange={handleChange}>
                                    </Form.Control>
이재연's avatar
logsign    
이재연 committed
110
                                    -
이재연's avatar
이재연 committed
111
                                    <Form.Control
이재연's avatar
이재연 committed
112
113
114
115
116
117
118
                                        required type="text"
                                        name="number2"
                                        maxlength="1" className="mx-3"
                                        style={{ width: '50px' }}
                                        value={user.number2}
                                        onChange={handleChange}>
                                    </Form.Control>
이재연's avatar
logsign    
이재연 committed
119
                                    ******
이재연's avatar
이재연 committed
120
                                    <Form.Control.Feedback type="invalid">주민등록번호를 입력하세요.</Form.Control.Feedback>
이재연's avatar
이재연 committed
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
                                </Col>
                            </Form.Row>
                        </Form.Group>
                        <Form.Group controlId="formBasicId">
                            <Form.Row>
                                <Col sm={4} xs={6} as={Form.Label} for="id">아이디</Col>
                                <Col sm={8} xs={12} as={Form.Control}
                                    required
                                    type="text"
                                    name="id"
                                    placeholder="ID"
                                    style={{ width: '160px' }}
                                    value={user.id}
                                    onChange={handleChange} />
                                <Form.Control.Feedback type="invalid"> 아이디를 입력하세요.</Form.Control.Feedback>
                            </Form.Row>
                        </Form.Group>
                        <Form.Group controlId="formBasicPassword">
                            <Form.Row>
                                <Col sm={4} xs={6} as={Form.Label} for="password">비밀번호</Col>
                                <Col sm={8} xs={12} as={Form.Control}
                                    type="password"
                                    name="password"
                                    placeholder="Password"
                                    style={{ width: '160px' }}
                                    value={user.password}
                                    required
                                    onChange={handleChange}
                                />
                                <Form.Control.Feedback className="text-center" type="invalid">
                                    비밀번호를 입력하세요.
이재연's avatar
이재연 committed
152
                                    </Form.Control.Feedback>
이재연's avatar
이재연 committed
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
                            </Form.Row>
                        </Form.Group>
                        <Form.Group controlId="formBasicPassword2">
                            <Form.Row>
                                <Col sm={4} xs={6} as={Form.Label} for="password">비밀번호 확인</Col>
                                <Col sm={8} xs={12} as={Form.Control}
                                    type="password"
                                    name="password2"
                                    placeholder="Password"
                                    style={{ width: '160px' }}
                                    value={user.password2}
                                    required
                                    onChange={handleChange}
                                />
                                <Form.Control.Feedback type="invalid"> 비밀번호를 한번  입력하세요.
이재연's avatar
이재연 committed
168
                                    </Form.Control.Feedback>
이재연's avatar
이재연 committed
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
                            </Form.Row>
                        </Form.Group>
                        <Form.Group controlId="formBasicTel">
                            <Form.Row>
                                <Col sm={4} xs={6} as={Form.Label} for="tel">휴대전화</Col>
                                <Col sm={8} xs={12} as={Form.Control}
                                    required
                                    type="text"
                                    name="tel"
                                    size="sm" style={{ width: '160px' }}
                                    value={user.tel}
                                    onChange={handleChange} />
                                <Form.Control.Feedback type="invalid"> 휴대전화를 입력하세요. </Form.Control.Feedback>
                            </Form.Row>
                        </Form.Group>
                        <Button
                            style={{ background: '#91877F', borderColor: '#91877F' }} type="submit" block
                            onClick={checkPassword}
                        >
                            Sign Up
이재연's avatar
이재연 committed
189
                            </Button>
이재연's avatar
이재연 committed
190
191
192
193
194
195
                    </Form>
                </Col>
            </Row>
        </Container>
    </div>
)
Kim, Subin's avatar
Kim, Subin committed
196
197
198
}

export default Signup