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
|
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 Activate() {
const [email, setEmail] = useState('');
const [isInputFulfilled, setIsInputFulfilled] = useState(false);
const [isLoading, setIsLoading] = useState(false);
const [alert, setAlert] = useState();
const router = useRouter();
const { token } = router.query;
useEffect(() => {
if (router.query.email) setEmail(router.query.email);
}, [router])
useEffect(() => {
const activateIfTokenExist = async () => {
if (token) {
let activation = await axios.post(`${process.env.SELF_HOST}/api/activation`, {token});
if (activation.data.activation) {
setAuth(activation.data.user);
setAlert({
component: <>Selamat, akun anda berhasil diaktifkan, <Link className="text-gray_r-12" href="/">kembali ke beranda</Link>.</>,
type: 'success'
});
} else {
setAlert({
component: <>Mohon maaf token sudah tidak aktif, lakukan permintaan aktivasi akun kembali atau <Link className="text-gray_r-12" href="/login">masuk</Link> jika sudah memiliki akun.</>,
type: 'info'
});
}
}
}
activateIfTokenExist();
}, [token]);
useEffect(() => {
setIsInputFulfilled(email != '');
}, [email]);
const activationRequest = async (e) => {
e.preventDefault();
setIsLoading(true);
let activationRequest = await axios.post(`${process.env.SELF_HOST}/api/activation-request`, {email});
if (activationRequest.data.activation_request) {
setAlert({
component: <>Mohon cek email anda untuk aktivasi akun Indoteknik</>,
type: 'success'
});
} else {
switch (activationRequest.data.reason) {
case 'NOT_FOUND':
setAlert({
component: <>Email tersebut belum terdaftar, <Link className="text-gray_r-12" href="/register">daftar sekarang</Link>.</>,
type: 'info'
});
break;
case 'ACTIVE':
setAlert({
component: <>Email tersebut sudah terdaftar dan sudah aktif, <Link className="text-gray_r-12" href="/login">masuk sekarang</Link>.</>,
type: 'info'
});
break;
}
}
setIsLoading(false);
}
return (
<>
<Head>
<title>Aktivasi Akun 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 text-gray_r-12 mt-4 text-center">Aktivasi Akun Indoteknik Anda</h1>
<h2 className="text-gray-800 mt-2 mb-4 text-center">Link aktivasi akan dikirimkan melalui email</h2>
{alert ? (
<Alert className="text-center" type={alert.type}>{alert.component}</Alert>
) : ''}
<form onSubmit={activationRequest} className="w-full">
<input
type="text"
className="form-input bg-gray-100 mt-4 focus:ring-1 focus:ring-yellow-900"
placeholder="johndoe@gmail.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
autoFocus
/>
<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>
) : 'Kirim Email'}
</button>
</form>
</Layout>
</>
)
}
|