signup.tsx 3.7 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
72
    <div className="flex flex-col items-center">
      <div className="p-12 md:w-40 mt-8 bg-red-400 rounded-2xl">
73
74
        <Link to="/">Travel Report</Link>
      </div>
75
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 items-center mt-16 gap-y-4"
      >
        <input
          className="placeholder:text-slate-300 bg-white border border-slate-500 rounded-2xl py-2 pl-9 pr-3 focus:border-black"
          placeholder="이름"
          type="text"
          name="name"
          onChange={handleChange}
        />

        <input
          className="placeholder:text-slate-300 bg-white border border-slate-500 rounded-2xl py-2 pl-9 pr-3 focus:border-black"
          placeholder="이메일"
          type="email"
          name="email"
          onChange={handleChange}
        />

95
96
97
98
99
100
        <input
          className="placeholder:text-slate-300
          bg-white border border-slate-500 rounded-2xl
          py-2 pl-9 pr-3
          focus:border-black"
          placeholder="비밀번호"
101
          type="password"
102
          name="password"
103
          onChange={handleChange}
104
105
106
107
108
109
110
        />

        <input
          className="placeholder:text-slate-300
          bg-white border border-slate-500 rounded-2xl
          py-2 pl-9 pr-3
          focus:border-black"
111
112
113
114
          placeholder="비밀번호 확인"
          type="password"
          name="password2"
          onChange={handleChange}
115
        />
Yoon, Daeki's avatar
Yoon, Daeki committed
116
117
118
119
120
121
122
123
124
        {error && (
          <div className="text-red-500 text-sm">
            <p>{error}</p>
          </div>
        )}
        <button disabled={disabled} className="border-b border-white">
          {loading && (
            <SpinnerIcon className="animate-spin h-5 w-5 mr-1 text-slate" />
          )}
125
126
          회원가입
        </button>
127
128
129
130
      </form>
    </div>
  );
}