SignUpPage.js 5.53 KB
Newer Older
우지원's avatar
우지원 committed
1
import React, { useState, useEffect } from 'react';
우지원's avatar
01_06    
우지원 committed
2
import axios from 'axios'
3
import { Button, Form, Container, Alert, Spinner} from 'react-bootstrap';
우지원's avatar
01_06    
우지원 committed
4
import catchErrors from '../utils/catchErrors';
우지원's avatar
우지원 committed
5
import { Redirect } from 'react-router-dom';
우지원's avatar
우지원 committed
6
import Menu from '../Components/Menu';
우지원's avatar
우지원 committed
7
8
9
10
11
12
13

const INIT_USER = {
    username: '',
    nickname: '',
    email: '',
    password: '',
}
우지원's avatar
ul    
우지원 committed
14
15

function SingUp() {
우지원's avatar
우지원 committed
16
    //const [validated, setValidated] = useState(false);
우지원's avatar
우지원 committed
17
18
19
    const [user, setUser] = useState(INIT_USER)
    const [error, setError] = useState('')
    const [disabled, setDisabled] = useState(true)
우지원's avatar
우지원 committed
20
21
    const [success, setSuccess] = useState(false)    
    const [loading, setLoading] = useState(false)
우지원's avatar
우지원 committed
22
23
24
25
26
27
28
29
30
31
32
33
34

    useEffect(() => {
        const isUser = Object.values(user).every(el => Boolean(el))
        isUser ? setDisabled(false) : setDisabled(true)
    }, [user])

    function handleChange(event) {
        const { name, value } = event.target
        setUser({ ...user, [name]: value })
    }

    async function handleSubmit(event) {
        event.preventDefault();
우지원's avatar
ul    
우지원 committed
35

우지원's avatar
우지원 committed
36
        try {
우지원's avatar
우지원 committed
37
            setLoading(true)
우지원's avatar
우지원 committed
38
            setError('')
우지원's avatar
01_06    
우지원 committed
39
            await axios.post('/users/signup', user)
우지원's avatar
수정    
우지원 committed
40
            setSuccess(true)
우지원's avatar
우지원 committed
41
        } catch (error) {
우지원's avatar
01_06    
우지원 committed
42
            catchErrors(error, setError)
우지원's avatar
우지원 committed
43
44
        } finally {
            setLoading(false)
우지원's avatar
a    
우지원 committed
45
46
47
        }
    }

우지원's avatar
우지원 committed
48
49
    if (success) {
        console.log('success', success)
우지원's avatar
우지원 committed
50
        alert('회원가입이 완료되었습니다!')
우지원's avatar
우지원 committed
51
52
        return <Redirect to='/login' />
    }
우지원's avatar
01_06    
우지원 committed
53

우지원's avatar
ul    
우지원 committed
54
    return (
55
        <>
우지원's avatar
우지원 committed
56
            <Menu />
우지원's avatar
우지원 committed
57
            <Form onSubmit={handleSubmit} className='vh-100 flex-column align-items-center justify-content-center mt-2'>
우지원's avatar
01_06    
우지원 committed
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
                <Container className="d-flex justify-content-center">
                    <div className="mt-5 p-5 shadow w-75">

                        <h2 className="text-center ">회원가입</h2>

                        <Form.Group controlId="formGroupUsername">
                            <Form.Label>이름</Form.Label>
                            <Form.Control
                                required
                                type="text"
                                name="username"
                                onChange={handleChange}
                                value={user.username}
                                placeholder="이름을 입력해주세요" />
                            <Form.Control.Feedback type="invalid">
                                필수 정보입니다! 이름을 입력해주세요!
우지원's avatar
ul    
우지원 committed
74
                            </Form.Control.Feedback>
우지원's avatar
01_06    
우지원 committed
75
76
77
78
79
80
81
82
83
84
85
86
87
                        </Form.Group>

                        <Form.Group controlId="formGroupNickname">
                            <Form.Label>별명</Form.Label>
                            <Form.Control
                                required
                                type="text"
                                name="nickname"
                                onChange={handleChange}
                                value={user.nickname}
                                placeholder="별명을 입력해주세요" />
                            <Form.Control.Feedback type="invalid">
                                필수 정보입니다! 별명을 입력해주세요!
우지원's avatar
ul    
우지원 committed
88
                            </Form.Control.Feedback>
우지원's avatar
01_06    
우지원 committed
89
90
91
92
93
94
95
96
97
98
99
100
101
                        </Form.Group>

                        <Form.Group controlId="formGroupEmail">
                            <Form.Label>이메일</Form.Label>
                            <Form.Control
                                required
                                type="email"
                                name="email"
                                onChange={handleChange}
                                value={user.email}
                                placeholder="이메일을 입력해주세요" />
                            <Form.Control.Feedback type="invalid">
                                필수 정보입니다! 이메일을 입력해주세요!
우지원's avatar
a    
우지원 committed
102
                            </Form.Control.Feedback>
우지원's avatar
01_06    
우지원 committed
103
104
105
106
107
108
109
110
111
112
113
114
115
                        </Form.Group>

                        <Form.Group controlId="formGroupPassword">
                            <Form.Label>비밀번호</Form.Label>
                            <Form.Control
                                required
                                type="password"
                                name="password"
                                onChange={handleChange}
                                value={user.password}
                                placeholder="비밀번호를 입력해주세요" />
                            <Form.Control.Feedback type="invalid">
                                필수 정보입니다! 비밀번호를 입력해주세요!
우지원's avatar
ul    
우지원 committed
116
                            </Form.Control.Feedback>
우지원's avatar
01_06    
우지원 committed
117
118
119
120
121
                        </Form.Group>

                        <Button
                            disabled={disabled}
                            type='submit'
우지원's avatar
우지원 committed
122
                            variant="outline"
우지원's avatar
01_06    
우지원 committed
123
124
                            size="lg"
                            className="mr-4"
우지원's avatar
우지원 committed
125
126
127
                            style={{ border: "3px solid", borderColor: "#b49dc9", background: 'white', font: 'dark' }}
                            block>
                            {loading && <Spinner as='span' animation='border' size='sm' role='status' aria-hidden='true' style={{ color: "#b49dc9" }} />}가입</Button>
우지원's avatar
01_06    
우지원 committed
128
129
130
131
132
133
                        {error && <Alert variant='danger'>
                            {error}
                        </Alert>}
                    </div>
                </Container>
            </Form>
134
        </>
우지원's avatar
ul    
우지원 committed
135
136
137
138
    )
}

export default SingUp