Files
parcer/src/pages/Register.tsx

203 lines
5.9 KiB
TypeScript
Raw Normal View History

import { useState, useContext, useEffect } from "react";
import { useNavigate, Link } from "react-router-dom";
import axios from "axios";
import { AuthContext } from "../context/auth";
import {
TextField,
Button,
CircularProgress,
Typography,
Box,
Container,
} from "@mui/material";
2024-09-25 13:08:51 +05:30
import { useGlobalInfoStore } from "../context/globalInfo";
2024-11-01 08:26:13 +05:30
import { apiUrl } from "../apiConfig";
2024-09-25 13:08:51 +05:30
const Register = () => {
const [form, setForm] = useState({
email: "",
password: "",
});
const [loading, setLoading] = useState(false);
const { notify } = useGlobalInfoStore();
const { email, password } = form;
2024-09-25 13:08:51 +05:30
const { state, dispatch } = useContext(AuthContext);
const { user } = state;
const navigate = useNavigate();
2024-09-25 13:08:51 +05:30
useEffect(() => {
if (user !== null) navigate("/");
}, [user, navigate]);
2024-09-25 13:08:51 +05:30
const handleChange = (e: any) => {
const { name, value } = e.target;
setForm({ ...form, [name]: value });
};
2024-09-25 13:08:51 +05:30
const submitForm = async (e: any) => {
e.preventDefault();
setLoading(true);
try {
const { data } = await axios.post(`${apiUrl}/auth/register`, {
email,
password,
});
dispatch({
type: "LOGIN",
payload: data,
});
notify("success", "Welcome to Maxun!");
window.localStorage.setItem("user", JSON.stringify(data));
navigate("/");
} catch (err: any) {
notify(
"error",
err.response.data || "Registration Failed. Please try again."
);
} finally {
setLoading(false);
}
};
2024-09-25 13:08:51 +05:30
return (
<Box
sx={{
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
height: "calc(100vh - 64px)",
backgroundColor: "#f5f5f5",
}}
>
<Box
component="form"
onSubmit={submitForm}
sx={{
textAlign: "center",
maxWidth: 400,
width: "100%",
backgroundColor: "#fff",
padding: 3,
borderRadius: 4,
boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.1)",
display: "flex",
flexDirection: "column",
}}
>
<Typography variant="h4" gutterBottom color={"#ff00c3"}>
Create an account
</Typography>
<TextField
margin="normal"
required
fullWidth
id="email"
label="Email Address"
name="email"
value={email}
onChange={handleChange}
autoComplete="email"
sx={{
// Styles for the input root
"& .MuiOutlinedInput-root": {
backgroundColor: email ? "#ffe6f9" : "#ffffff", // Pinkish fill when email has value, white otherwise
"& fieldset": {
borderColor: "#ff33cc", // Pink border color
},
"&:hover fieldset": {
borderColor: "#ff33cc", // Pink border on hover
},
"&.Mui-focused fieldset": {
borderColor: "#ff33cc", // Pink border when focused
},
},
// Styles for autofill state
"& input:-webkit-autofill": {
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset", // Pinkish autofill background
WebkitTextFillColor: "#000", // Black text color in autofill
transition: "background-color 5000s ease-in-out 0s",
},
// Styles for the label (legend)
"& .MuiInputLabel-root": {
color: email ? "#ff33cc" : "#000000", // Pink label when filled, black otherwise
},
"& .MuiInputLabel-root.Mui-focused": {
color: "#ff33cc", // Pink label when focused
},
}}
/>
<TextField
margin="normal"
required
fullWidth
name="password"
label="Password"
type="password"
id="password"
value={password}
onChange={handleChange}
autoComplete="current-password"
sx={{
// Styles for the input root
"& .MuiOutlinedInput-root": {
backgroundColor: password ? "#ffe6f9" : "#ffffff", // Pinkish fill when email has value, white otherwise
"& fieldset": {
borderColor: "#ff33cc", // Pink border color
},
"&:hover fieldset": {
borderColor: "#ff33cc", // Pink border on hover
},
"&.Mui-focused fieldset": {
borderColor: "#ff33cc", // Pink border when focused
},
},
// Styles for autofill state
"& input:-webkit-autofill": {
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset", // Pinkish autofill background
WebkitTextFillColor: "#000", // Black text color in autofill
transition: "background-color 5000s ease-in-out 0s",
},
// Styles for the label (legend)
"& .MuiInputLabel-root": {
color: password ? "#ff33cc" : "#000000", // Pink label when filled, black otherwise
},
"& .MuiInputLabel-root.Mui-focused": {
color: "#ff33cc", // Pink label when focused
},
}}
/>
<Button
type="submit"
fullWidth
variant="contained"
color="primary"
sx={{ mt: 3, mb: 2 }}
disabled={loading || !email || !password}
2024-10-10 21:18:49 +05:30
>
{loading ? (
<>
<CircularProgress size={20} sx={{ mr: 2 }} />
Loading
</>
) : (
"Register"
)}
</Button>
<Typography variant="body2" align="center">
Already have an account?{" "}
<Link to="/login" style={{ textDecoration: "none" }}>
Login
</Link>
</Typography>
</Box>
</Box>
);
2024-09-25 13:08:51 +05:30
};
export default Register;