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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
"use client";
import {
Box,
Button,
FormControl,
FormLabel,
TextField,
Typography,
} from "@mui/material";
import Header from "../lib/camera/component/hedear";
import odooApi from "../lib/api/odooApi";
import { getAuth, setAuth } from "../lib/api/auth";
import { useRouter } from "next/navigation";
import { useEffect, useState } from "react";
const Login = () => {
const router = useRouter();
const [emailError, setEmailError] = useState(false);
const [emailErrorMessage, setEmailErrorMessage] = useState("");
const [passwordError, setPasswordError] = useState(false);
const [passwordErrorMessage, setPasswordErrorMessage] = useState("");
useEffect(() => {
const token = getAuth();
if (token) {
router.push("/");
}
}, [router]);
const handleSubmit = async (event: React.FormEvent<HTMLFormElement>) => {
event.preventDefault();
if (emailError || passwordError) {
return;
}
const data = new FormData(event.currentTarget);
const email = data.get("email");
const password = data.get("password");
try {
odooApi("POST", "/api/v1/user/login", {
email ,
password
}).then((res) => {
const auth = res.result;
if (auth.is_auth) {
setAuth(auth.user);
router.push("/");
return;
}
switch (auth.reason) {
case "NOT_FOUND":
alert("Email tidak ditemukan");
break;
case "NOT_ACTIVE":
alert("Akun anda belum aktif");
break;
}
});
} catch (error) {
alert("Gagal login, silahkan coba lagi");
console.log(error);
}
};
const validateInputs = () => {
const email = document.getElementById("email") as HTMLInputElement;
const password = document.getElementById("password") as HTMLInputElement;
let isValid = true;
if (!email.value || !/\S+@\S+\.\S+/.test(email.value)) {
setEmailError(true);
setEmailErrorMessage("Please enter a valid email address.");
isValid = false;
} else {
setEmailError(false);
setEmailErrorMessage("");
}
if (!password.value || password.value.length < 6) {
setPasswordError(true);
setPasswordErrorMessage("Password must be at least 6 characters long.");
isValid = false;
} else {
setPasswordError(false);
setPasswordErrorMessage("");
}
return isValid;
};
return (
<div className="bg-[#fafeff] h-screen overflow-auto">
<Header />
<div className="py-4 px-4 sm:px-96 pt-20">
<div className="bg-white py-6 px-4 sm:px-96 shadow-md rounded-sm">
<Typography
component="h1"
variant="h4"
sx={{
width: "100%",
fontSize: "clamp(2rem, 10vw, 2.15rem)",
mb: 4,
}}
>
Sign in
</Typography>
<Box
component="form"
onSubmit={handleSubmit}
noValidate
sx={{
display: "flex",
flexDirection: "column",
width: "100%",
gap: 2,
}}
>
<FormControl>
<FormLabel htmlFor="email">Email</FormLabel>
<TextField
error={emailError}
helperText={emailErrorMessage}
id="email"
type="email"
name="email"
placeholder="your@email.com"
autoComplete="email"
autoFocus
required
fullWidth
variant="outlined"
color={emailError ? "error" : "primary"}
sx={{ ariaLabel: "email" }}
size="small"
/>
</FormControl>
<FormControl>
<Box sx={{ display: "flex", justifyContent: "space-between" }}>
<FormLabel htmlFor="password">Password</FormLabel>
</Box>
<TextField
error={passwordError}
helperText={passwordErrorMessage}
name="password"
placeholder="••••••"
type="password"
id="password"
autoComplete="current-password"
autoFocus
required
fullWidth
variant="outlined"
color={passwordError ? "error" : "primary"}
size="small"
/>
</FormControl>
<Button
type="submit"
fullWidth
variant="contained"
onClick={validateInputs}
>
Sign in
</Button>
</Box>
</div>
</div>
</div>
);
};
export default Login;
|