signup.tsx 3.79 KB
Newer Older
1
import React, { FormEvent, useEffect, useState } from "react";
2
import { Link, Navigate } from "react-router-dom";
3
4
import { authApi } from "../apis";
import { catchErrors } from "../helpers";
Yoon, Daeki's avatar
Yoon, Daeki committed
5
import { SpinnerIcon } from "../icons";
6
import { SignupUser } from "../types";
7
8

export default function Signup() {
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  const [user, setUser] = useState<SignupUser & { password2: string }>({
    name: "",
    email: "",
    password: "",
    password2: "",
  });

  const [loading, setLoading] = useState(false);
  const [error, setError] = useState("");
  const [disabled, setDisabled] = useState(false);
  const [success, setSuccess] = useState(false);

  useEffect(() => {
    setDisabled(!(user.name && user.email && user.password && user.password2));
  }, [user]);

  function handleChange(event: React.ChangeEvent<HTMLInputElement>) {
    const { name, value } = event.currentTarget;
    setUser({ ...user, [name]: value });
  }

  async function handleSubmit(event: FormEvent) {
    event.preventDefault();
    try {
Yoon, Daeki's avatar
Yoon, Daeki committed
33
      setError("");
34
35
36
37
      console.log("checkPassword:", passwordMatch());
      console.log("user data", user);
      if (passwordMatch()) {
        const { password2, ...sUser } = user;
Yoon, Daeki's avatar
Yoon, Daeki committed
38
        setLoading(true);
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
        const res = await authApi.signup(sUser);
        console.log("서버연결됬나요", res);
        console.log("회원가입");
        setSuccess(true);
        setError("");
      }
    } catch (error) {
      console.log("에러발생");
      catchErrors(error, setError);
    } finally {
      setLoading(false);
    }
  }

  function passwordMatch() {
    if (user.password !== user.password2) {
Yoon, Daeki's avatar
Yoon, Daeki committed
55
56
      // alert();
      setError("비밀번호가 일치하지않습니다");
57
58
59
60
61
62
63
64
65
66
      console.log("password fail");
      return false;
    } else {
      console.log("password match");
      return true;
    }
  }

  if (success) {
    alert("회원가입 되었습니다");
67
    return <Navigate to={"/login"} replace />;
68
69
  }

70
  return (
71
    <div className="flex flex-col items-center">
Kim, MinGyu's avatar
Kim, MinGyu committed
72
73
      <div className=" md:w-40 mt-8 text-center text-2xl rounded-2xl">
        <Link to="/">회원가입</Link>
74
      </div>
75

Kim, MinGyu's avatar
Kim, MinGyu committed
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
      <form onSubmit={handleSubmit} className="flex flex-col  mt-16 gap-y-4">
        <div className="flex flex-col">
          <div className="flex">
            <div className="basis-1/5 shrink-0">이름</div>
            <input
              className="border-2 focus:border-black"
              type="text"
              name="name"
              onChange={handleChange}
            />
          </div>
          <div className="flex">
            <div className="basis-1/5 shrink-0">이메일</div>
            <input
              className="border-2 focus:border-black"
              type="email"
              name="email"
              onChange={handleChange}
            />
Yoon, Daeki's avatar
Yoon, Daeki committed
95
          </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
          <div className="flex">
            <div className="basis-1/5 shrink-0">비밀번호</div>
            <input
              className="border-2 focus:border-black"
              type="password"
              name="password"
              onChange={handleChange}
            />
          </div>
          <div className="flex">
            <div className="basis-1/5 shrink-0">비밀번호 확인</div>
            <input
              className="border-2 focus:border-black"
              type="password"
              name="password2"
              onChange={handleChange}
            />
          </div>
          {error && (
            <div className="text-red-500 text-sm">
              <p>{error}</p>
            </div>
Yoon, Daeki's avatar
Yoon, Daeki committed
118
          )}
Kim, MinGyu's avatar
Kim, MinGyu committed
119
120
121
122
123
124
125
126

          <button disabled={disabled} className="border-b border-white">
            {loading && (
              <SpinnerIcon className="animate-spin h-5 w-5 mr-1 text-slate" />
            )}
            회원가입
          </button>
        </div>
127
128
129
130
      </form>
    </div>
  );
}