LocChat/client/components/sign_in/_sign_in.jsx

62 lines
1.4 KiB
React
Raw Normal View History

2021-11-22 16:21:53 -05:00
import { useContext, useState } from 'react';
2021-11-20 21:34:10 -05:00
import { useNavigate } from 'react-router';
2021-11-22 16:21:53 -05:00
import { SettingsContext } from '../../utils/settings_context';
2021-11-20 21:34:10 -05:00
2021-11-20 20:18:58 -05:00
export const SignIn = () => {
2021-11-22 16:21:53 -05:00
const [, dispatch] = useContext(SettingsContext);
2021-11-20 21:34:10 -05:00
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const navigate = useNavigate();
const goToSignUp = () => {
navigate('/signup');
};
2021-11-22 16:21:53 -05:00
const signIn = async () => {
const res = await fetch('/sessions', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
email,
password,
}),
});
if (res.status === 201) {
const result = await res.json();
dispatch({ type: 'update', payload: { jwt: result.token } });
navigate('/');
} else {
console.error('An issue occurred when logging in.');
}
};
2021-11-20 21:34:10 -05:00
return (
<div>
<div>Email</div>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
<div>Password</div>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
<div>
2021-11-22 16:21:53 -05:00
<button type="button" onClick={signIn}>
Sign in
</button>
2021-11-20 21:34:10 -05:00
</div>
<div>
<button type="button" onClick={goToSignUp}>
Sign up
</button>
</div>
</div>
);
2021-11-20 20:18:58 -05:00
};