1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
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()
.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'
},
textField: {
height: theme.spacing(8)
}
}));
const Registration: React.FC = () => {
const classes = useStyles();
const { login } = useAuth();
const history = useHistory();
const [showPassword, setShowPassword] = useState<boolean>(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 handleClickShowPassword = () => {
setShowPassword(prevState => !prevState);
};
return (
<>
<div className={classes.formHeader}>Sign Up</div>
<Formik
initialValues={{ username: '', email: '', password: '' }}
validationSchema={validationSchema}
onSubmit={handleSubmit}
>
{({ values, errors, touched, isSubmitting }) => (
<Form className={classes.root}>
<Field
id="username"
name="username"
label="Username"
value={values.username.toLowerCase()}
error={touched.username && !!errors.username}
helperText={touched.username && errors.username}
required
className={classes.textField}
as={TextField}
/>
<Field
name="email"
label="Email"
value={values.email}
error={touched.email && !!errors.email}
helperText={touched.email && errors.email}
required
className={classes.textField}
as={TextField}
/>
<Field
name="password"
label="Password"
value={values.password}
error={touched.password && !!errors.password}
helperText={touched.password && errors.password}
required
type={showPassword ? 'text' : 'password'}
as={TextField}
InputProps={{
endAdornment: (
<InputAdornment position="end">
<IconButton
size="small"
aria-label="toggle password visibility"
onClick={handleClickShowPassword}
>
{showPassword ? <Visibility /> : <VisibilityOff />}
</IconButton>
</InputAdornment>
)
}}
className={classes.textField}
/>
<Button variant="contained" type="submit" disabled={isSubmitting}>submit</Button>
</Form>
)}
</Formik>
<div className={classes.formTransfer}>
<div>Already have an account?</div>
<span
onClick={handleLogin}
className={classes.transferButton}
role="presentation"
>
Log in
</span>
</div>
</>
);
};
export default Registration;
|