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
|
import axios from "axios";
import Head from "next/head";
import Image from "next/image";
import Link from "@/components/elements/Link";
import { useRouter } from "next/router";
import { useEffect, useState } from "react";
import Alert from "@/components/elements/Alert";
import Layout from "@/components/layouts/Layout";
import Spinner from "@/components/elements/Spinner";
import { setAuth } from "@/core/utils/auth";
import Logo from "@/images/logo.png";
export default function Login() {
const router = useRouter();
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [isInputFulfilled, setIsInputFulfilled] = useState(false);
const [isLoading, setIsLoading] = useState(false);
const [alert, setAlert] = useState();
useEffect(() => {
setIsInputFulfilled(email && password);
}, [email, password]);
const login = async (e) => {
e.preventDefault();
setIsLoading(true);
let login = await axios.post(`${process.env.SELF_HOST}/api/login`, {email, password});
if (login.data.is_auth) {
setAuth(login.data.user);
router.push('/');
} else {
switch (login.data.reason) {
case 'NOT_FOUND':
setAlert({
component: <>Email atau password tidak cocok</>,
type: 'info'
});
break;
case 'NOT_ACTIVE':
setAlert({
component: <>Email belum diaktivasi, <Link className="text-gray-900" href={`/activate?email=${email}`}>aktivasi sekarang</Link></>,
type: 'info'
});
break;
}
setIsLoading(false);
}
}
return (
<>
<Head>
<title>Masuk - Indoteknik</title>
</Head>
<Layout className="max-w-lg mx-auto flex flex-col items-center px-4 pb-8">
<Link href="/" className="mt-16">
<Image src={Logo} alt="Logo Indoteknik" width={165} height={42} />
</Link>
<h1 className="text-2xl mt-4 text-center">Mulai Belanja Sekarang</h1>
<h2 className="text-gray_r-11 font-normal mt-2 mb-4">Masuk ke akun kamu untuk belanja</h2>
{alert ? (
<Alert className="text-center" type={alert.type}>{alert.component}</Alert>
) : ''}
<form onSubmit={login} className="w-full">
<label className="form-label mt-4 mb-2">Alamat Email</label>
<input
type="email"
className="form-input bg-gray_r-2"
placeholder="johndoe@gmail.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
<label className="form-label mt-4 mb-2">Kata Sandi</label>
<input
type="password"
className="form-input bg-gray_r-2"
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
<div className="flex justify-end mt-4 w-full">
<Link href="/forgot-password">Lupa kata sandi</Link>
</div>
<button type="submit" disabled={!isInputFulfilled} className="btn-yellow font-semibold mt-4 w-full">
{isLoading ? (
<div className="flex justify-center items-center gap-x-2">
<Spinner className="w-4 h-4 text-gray-600 fill-gray-900" /> <span>Loading...</span>
</div>
) : 'Masuk'}
</button>
</form>
<p className="text-gray-700 mt-4">Belum punya akun Indoteknik? <Link href="/register">Daftar</Link></p>
</Layout>
</>
)
}
|