import React, { useEffect, useState } from "react"; import { useNavigate } from "react-router-dom"; type SignUpProps = {}; export const SignUp = ({}: SignUpProps) => { const USER = { name: "", email: "", password: "2345", password2: "1234", }; const [user, setUser] = useState(USER); const [error, setError] = useState('') const [disabled, setDisabled] = useState(false) const [success, setSuccess] = useState(false) const navigate = useNavigate(); useEffect(() => { setDisabled(!(user.name && user.email && user.password && user.password2)) }, [user]) function handleChange(event: React.ChangeEvent) { const { name, value } = event.target setUser({...user, [name]: value}) } async function handleSubmit(event: React.MouseEvent) { event.preventDefault(); try { // console.log('checkPassword:',checkPassword()) // const passwordMatch = checkPassword() if (passwordmatch()) { // const res = await userApi.signup(user) // 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) { alert("비밀번호가 일치하지않습니다"); console.log("password fail"); return false; } else { console.log("password match"); return true; } } if (success) { alert('회원가입 되었습니다') navigate(`../`) } return (
); };