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
|
import React, { useState, useRef } from 'react';
import { useHistory } from 'react-router-dom';
import { makeStyles } from '@material-ui/core/styles';
import TextField from '@material-ui/core/TextField';
import Button from '@material-ui/core/Button';
import CheckCircleIcon from '@material-ui/icons/CheckCircle';
import InputAdornment from '@material-ui/core/InputAdornment';
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'
}
}));
const inputStyle = { WebkitBoxShadow: '0 0 0 1000px snow inset' };
const Registration: React.FC = () => {
const errorOutputs = {
usernameError: 'Username is required',
emailError: 'Invalid email address',
passwordError: 'Should be at least 6 characters'
};
const [errorPassword, setErrorPassword] = useState<boolean>(false);
const [errorEmail, setErrorEmail] = useState<boolean>(false);
const [errorUsername, setErrorUsername] = useState<boolean>(false);
const classes = useStyles();
const usernameRef = useRef<HTMLInputElement>();
const emailRef = useRef<HTMLInputElement>();
const passwordRef = useRef<HTMLInputElement>();
const { login } = useAuth();
const history = useHistory();
const handleSubmit = () => {
const username = usernameRef.current?.value?.toLowerCase();
const password = passwordRef.current?.value;
const email = emailRef.current?.value;
if (username && password) {
post('/users', { username, password, email })
.then(() => login(username, password))
.then(() => history.push(`/profile/${username}`));
}
};
const handleLogin = () => {
history.push('/login');
};
const handleLoginChange = (e: React.ChangeEvent<HTMLInputElement>) => {
setErrorUsername(e.currentTarget.value.length === 0);
};
const handleEmailChange = (e: React.ChangeEvent<HTMLInputElement>) => {
setErrorEmail(!/^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i.test(e.currentTarget.value));
};
const handlePasswordChange = (e: React.ChangeEvent<HTMLInputElement>) => {
setErrorPassword(e.currentTarget.value.length < 6);
};
return (
<>
<div className={classes.formHeader}>Sign Up</div>
<form className={classes.root} noValidate autoComplete="off">
<TextField
inputRef={usernameRef}
label="Username"
error={errorUsername}
helperText={errorUsername && errorOutputs.usernameError}
required
onChange={handleLoginChange}
inputProps={{ style: inputStyle }}
/>
<TextField
inputRef={emailRef}
label="Email"
error={errorEmail}
helperText={errorEmail && errorOutputs.emailError}
onChange={handleEmailChange}
InputProps={errorEmail ? {} : {
endAdornment: (
<InputAdornment position="end">
<CheckCircleIcon color="primary" />
</InputAdornment>
),
inputProps: {
style: inputStyle
}
}}
/>
<TextField
inputRef={passwordRef}
label="Password"
type="password"
required
error={errorPassword}
helperText={errorPassword && errorOutputs.passwordError}
onChange={handlePasswordChange}
InputProps={errorPassword ? {} : {
endAdornment: (
<InputAdornment position="end">
<CheckCircleIcon color="primary" />
</InputAdornment>
),
inputProps: {
style: inputStyle
}
}}
/>
<Button variant="contained" onClick={handleSubmit}>submit</Button>
</form>
<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;
|