import React, { useState, useRef } from 'react'; import { useHistory } from 'react-router-dom'; import { makeStyles } from '@material-ui/core/styles'; import { TextField, Button, InputAdornment, IconButton } from '@material-ui/core'; import { CheckCircle, Visibility, VisibilityOff } from '@material-ui/icons'; import { post } from '../../requests'; import { useAuth } from '../../hooks/useAuth'; const useStyles = makeStyles(theme => ({ root: { '& > *': { margin: theme.spacing(1), width: theme.spacing(35) }, display: 'flex', flexDirection: 'column', alignItems: 'center', textAlign: 'center' }, formHeader: { textAlign: 'center', fontSize: 25 }, formTransfer: { display: 'flex', justifyContent: 'center' }, transferButton: { marginLeft: 10, color: 'green', cursor: 'pointer' } })); interface ValidationStates { validUsername: boolean | undefined; validEmail: boolean | undefined; validPassword: boolean | undefined; showPassword: boolean; } const Registration: React.FC = () => { const [values, setValues] = useState({ validUsername: undefined, validEmail: undefined, validPassword: undefined, showPassword: false }); const classes = useStyles(); const usernameRef = useRef(); const emailRef = useRef(); const passwordRef = useRef(); const { login } = useAuth(); const history = useHistory(); const checkFromValidation = () => { return values.validUsername && values.validEmail && values.validPassword; }; const handleSubmit = () => { const username = usernameRef.current?.value?.toLowerCase(); const password = passwordRef.current?.value; const email = emailRef.current?.value; if (username && password && checkFromValidation()) { post('/users', { username, password, email }) .then(() => login(username, password)) .then(() => history.push(`/profile/${username}`)); } }; const handleLogin = () => { history.push('/login'); }; const handleClickShowPassword = () => { setValues({ ...values, showPassword: !values.showPassword }); }; const handleMouseDownPassword = (event: React.MouseEvent) => { event.preventDefault(); }; const handleUsernameChange = (e: React.ChangeEvent) => { setValues({ ...values, validUsername: e.currentTarget.value.length > 0 }); }; const handleEmailChange = (e: React.ChangeEvent) => { setValues({ ...values, validEmail: /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i.test(e.currentTarget.value) }); }; const handlePasswordChange = (e: React.ChangeEvent) => { setValues({ ...values, validPassword: e.currentTarget.value.length > 6 }); }; return ( <>
Sign Up
{values.validUsername && values.validUsername !== undefined && } ) }} /> {values.validEmail && values.validEmail !== undefined && } ) }} /> {values.showPassword ? : } {values.validPassword && values.validPassword !== undefined && } ) }} />
Already have an account?
Log in
); }; export default Registration;