SignupForm.js 5.89 KB
Newer Older
1
2
import { useState } from 'react';
import { Redirect } from "react-router-dom";
3
4
import { Formik } from 'formik';
import * as Yup from 'yup';
Choi Ga Young's avatar
Choi Ga Young committed
5
import authApi from '../../apis/auth.api';
6
import catchErrors from "../../utils/catchErrors.js";
7
8

const SignupForm = () => {
Choi Ga Young's avatar
Choi Ga Young committed
9
  const [success, setSuccess] = useState(false);
10
11
12
13
14
15
  const [error, setError] = useState("");

  if (success) {
    return <Redirect to="/login" />;
  }

16
  return (
Kim, Subin's avatar
Kim, Subin committed
17
18
19
    <>
      <div className="py-5">
        <h1 className="text-center">회원가입</h1>
20
21
22
      </div>
      <Formik
        initialValues={{
23
          userId: '',
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
          password: '',
          repassword: '',
          userName: '',
          userStudNum: ''
        }}
        validationSchema={Yup.object({
          userId: Yup.string()
            .required('아이디를 입력해주세요.')
            .max(15, '15자 이내로 입력해주세요.')
            .min(5, '최소 5자 이상 입력해주세요.'),
          password: Yup.string()
            .required('비밀번호를 입력해주세요.')
            .min(8, '최소 8자 이상 입력해주세요.'),
          repassword: Yup.string()
            .required('비밀번호를 입력해주세요.')
            .min(8, '최소 8자 이상 입력해주세요.')
            .oneOf([Yup.ref("password"), null], '비밀번호가 일치하지 않습니다.'),
          userName: Yup.string()
            .required('이름을 입력해주세요.'),
          userStudNum: Yup.string()
            .required('학번을 입력해주세요.')
            .min(7, '학번을 정확히 입력해주세요.'),
        })}
Choi Ga Young's avatar
Choi Ga Young committed
47
48
        onSubmit={async (values, { setSubmitting }) => {
          try {
49
            setError("")
Choi Ga Young's avatar
Choi Ga Young committed
50
51
            const result = await authApi.signup(values)
            // console.log('회원가입 요청 후 result 확인', result, '|', result.status)
52
53
54
55
            if (result.status === 201) {
              alert("회원가입이 완료되었습니다.")
              setSuccess(true)
            }
Choi Ga Young's avatar
Choi Ga Young committed
56
          } catch (error) {
57
            catchErrors(error, setError)
Choi Ga Young's avatar
Choi Ga Young committed
58
          }
59
60
61
62
63
64
          setTimeout(() => {
            setSubmitting(false);
          }, 400);
        }}
      >
        {formik => (
Kim, Subin's avatar
Kim, Subin committed
65
          <form onSubmit={formik.handleSubmit} className="mt-3">
66
67
68
69
70
71
72
73
            <div className="mb-3 d-flex flex-row">
              <label className="form-label" style={{ width: "100px" }}>아이디</label>
              <div className="flex-col">
                <input type="text" name="userId"
                  className="form-control border-top-0 border-end-0 border-start-0"
                  style={{ boxShadow: "none", borderRadius: "0" }}
                  {...formik.getFieldProps('userId')} />
                {formik.touched.userId && formik.errors.userId ? (
74
                  <div className="text-danger mt-1" style={{ fontSize: "10px" }}>{formik.errors.userId}</div>
75
76
77
78
79
80
81
82
83
84
85
                ) : null}
              </div>
            </div>
            <div className="mb-3 d-flex flex-row">
              <label className="form-label" style={{ width: "100px" }}>비밀번호</label>
              <div className="flex-col">
                <input type="password" name="password"
                  className="form-control border-top-0 border-end-0 border-start-0"
                  style={{ boxShadow: "none", borderRadius: "0" }}
                  {...formik.getFieldProps('password')} />
                {formik.touched.password && formik.errors.password ? (
86
                  <div className="text-danger mt-1" style={{ fontSize: "10px" }}>{formik.errors.password}</div>
87
88
                ) : null}
              </div>
89
            </div>
90
91
92
93
94
95
96
97
            <div className="mb-3 d-flex flex-row">
              <label className="form-label" style={{ width: "100px", wordBreak: "keep-all" }}>비밀번호 확인</label>
              <div className="flex-col">
                <input type="password" name="repassword"
                  className="form-control border-top-0 border-end-0 border-start-0"
                  style={{ boxShadow: "none", borderRadius: "0" }}
                  {...formik.getFieldProps('repassword')} />
                {formik.touched.repassword && formik.errors.repassword ? (
98
                  <div className="text-danger mt-1" style={{ fontSize: "10px" }}>{formik.errors.repassword}</div>
99
100
                ) : null}
              </div>
101
            </div>
102
103
104
105
106
107
108
109
            <div className="mb-3 d-flex flex-row">
              <label className="form-label" style={{ width: "100px" }}>이름</label>
              <div className="flex-col">
                <input type="text" name="userName"
                  className="form-control border-top-0 border-end-0 border-start-0"
                  style={{ boxShadow: "none", borderRadius: "0" }}
                  {...formik.getFieldProps('userName')} />
                {formik.touched.userName && formik.errors.userName ? (
110
                  <div className="text-danger mt-1" style={{ fontSize: "10px" }}>{formik.errors.userName}</div>
111
112
                ) : null}
              </div>
113
            </div>
114
115
116
117
118
119
120
121
            <div className="mb-3 d-flex flex-row">
              <label className="form-label" style={{ width: "100px" }}>학번</label>
              <div className="flex-col">
                <input type="text" name="userStudNum"
                  className="form-control border-top-0 border-end-0 border-start-0"
                  style={{ boxShadow: "none", borderRadius: "0" }}
                  {...formik.getFieldProps('userStudNum')} />
                {formik.touched.userStudNum && formik.errors.userStudNum ? (
122
                  <div className="text-danger mt-1" style={{ fontSize: "10px" }}>{formik.errors.userStudNum}</div>
123
124
                ) : null}
              </div>
125
            </div>
126
127
            <div className="d-grid gap-2 ">
              <button type="submit" className="btn btn-crimson my-5">확인</button>
128
129
130
131
            </div>
          </form>
        )}
      </Formik>
Kim, Subin's avatar
Kim, Subin committed
132
    </>
133
134
135
  );
}

Kim, Subin's avatar
Kim, Subin committed
136
export default SignupForm;