signup.tsx 5.18 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 (
Lee Soobeom's avatar
Lee Soobeom committed
71
72
73
74
75
    <div>
      <div className="flex flex-col shadow-lg bg-white rounded">
        <div className="grid place-items-center ml-2 mt-8 text-center text-2xl ">
          <Link to="/">회원가입</Link>
        </div>
76

Lee Soobeom's avatar
Lee Soobeom committed
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
        <form onSubmit={handleSubmit} className="flex flex-col  mt-16 gap-y-4">
          <div className="flex flex-col px-32 pb-5">
            <div className="border-0 border-y-2 border-black">
              <div className="h-16 flex">
                <div className="whitespace-nowrap grid place-items-center w-32 lg:basis-1/5 shrink-0 border-0 border-r-2">
                  이름
                </div>
                <div className="flex items-center mx-5">
                  <input
                    className="h-10 w-4/5 lg:w-60 border-2 focus:border-black"
                    type="text"
                    name="name"
                    onChange={handleChange}
                  />
                </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
92
              </div>
Lee Soobeom's avatar
Lee Soobeom committed
93
94
95
96
97
98
99
100
101
102
103
104
              <div className="h-16 flex border-0 border-t-2">
                <div className="whitespace-nowrap grid place-items-center w-32 lg:basis-1/5 shrink-0 border-0 border-r-2">
                  이메일
                </div>
                <div className="flex items-center mx-5">
                  <input
                    className=" w-4/5 h-10 lg:w-60  border-2 focus:border-black"
                    type="email"
                    name="email"
                    onChange={handleChange}
                  />
                </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
105
              </div>
Lee Soobeom's avatar
Lee Soobeom committed
106
107
108
109
110
111
112
113
114
115
116
117
              <div className="h-16 flex border-0 border-t-2">
                <div className="whitespace-nowrap grid place-items-center w-32 lg:basis-1/5 shrink-0 border-0 border-r-2">
                  비밀번호
                </div>
                <div className="flex items-center  mx-5">
                  <input
                    className="w-4/5 h-10  lg:w-60  border-2 focus:border-black"
                    type="password"
                    name="password"
                    onChange={handleChange}
                  />
                </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
118
119
              </div>

Lee Soobeom's avatar
Lee Soobeom committed
120
121
122
123
              <div className="h-16 flex border-0 border-t-2">
                <div className="whitespace-nowrap grid place-items-center w-32 lg:basis-1/5 shrink-0 border-0 border-r-2">
                  비밀번호 확인
                </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
124

Lee Soobeom's avatar
Lee Soobeom committed
125
126
127
128
129
130
131
132
                <div className="flex items-center mx-5">
                  <input
                    className="w-4/5 h-10 lg:w-60  border-2 focus:border-black"
                    type="password"
                    name="password2"
                    onChange={handleChange}
                  />
                </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
133
134
              </div>
            </div>
Lee Soobeom's avatar
Lee Soobeom committed
135
136
137
138
            {error && (
              <div className="text-red-500 text-sm">
                <p>{error}</p>
              </div>
Kim, MinGyu's avatar
Kim, MinGyu committed
139
            )}
Lee Soobeom's avatar
Lee Soobeom committed
140
141
142
143
144
145
146
147
148
149
150
151
152
153

            <button
              disabled={disabled}
              className="border-b border-white mt-5 h-12 w-52 text-white text-lg bg-amber-400 place-self-center"
            >
              {loading && (
                <SpinnerIcon className="animate-spin h-5 w-5 mr-1 text-slate" />
              )}
              회원가입
            </button>
          </div>
        </form>
      </div>
      <div className="bg-lime-100 h-36" />
154
155
156
    </div>
  );
}