import React, { useState } from 'react'; import { useHistory } from 'react-router-dom'; import { Formik, Form, Field } from 'formik'; import * as Yup from 'yup'; import { makeStyles } from '@material-ui/core/styles'; import { TextField, Button, InputAdornment, IconButton } from '@material-ui/core'; import { Visibility, VisibilityOff } from '@material-ui/icons'; import { post } from '../../requests'; import { useAuth } from '../../hooks/useAuth'; interface Fields { username: string; email: string; password: string; } const validationSchema = Yup.object({ username: Yup.string() .lowercase('Must be lowercase') .required('This field is required'), email: Yup.string() .email('Invalid email address') .required('This field is required'), password: Yup.string() .min(6, 'Should be at least 6 characters') .required('This field is required') }); 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' } })); const Registration: React.FC = () => { const classes = useStyles(); const { login } = useAuth(); const history = useHistory(); const [showPassword, setShowPassword] = useState(false); const handleLogin = () => { history.push('/login'); }; const handleSubmit = ({ username, email, password }: Fields) => { post('/users', { username, email, password }) .then(() => login(username, password)) .then(() => history.push(`/profile/${username}`)); }; const toggleShowPassword = () => { setShowPassword(prevState => !prevState); }; return ( <>
Sign Up
{({ values, errors, touched, isSubmitting }) => (
{showPassword ? : } ) }} /> )}
Already have an account?
Log in
); }; export default Registration;