feat :update module

This commit is contained in:
lukman
2024-07-25 10:06:55 +08:00
parent 189617274c
commit c2a050a03d
5 changed files with 156 additions and 28 deletions

View File

@@ -1,16 +1,54 @@
"use client";
import { LayoutLogin, WARNA } from "@/module/_global";
import { Box, Button, PinInput, Stack, Text, Title } from "@mantine/core";
import { IVerification } from "@/types";
import { Anchor, Box, Button, Group, PinInput, Stack, Text, Title } from "@mantine/core";
import { useRouter } from "next/navigation";
import React from "react";
import React, { useState } from "react";
import toast from "react-hot-toast";
export default function ViewVerification() {
const router = useRouter();
export default function ViewVerification({ phone, otp, user }: IVerification) {
const router = useRouter()
const [isOTP, setOTP] = useState(otp)
const [inputOTP, setInputOTP] = useState<any>()
const [isLoading, setLoading] = useState(false)
function onNext() {
// router.push("/welcome");
window.location.href = "/welcome"
async function onResend() {
const code = Math.floor(Math.random() * 1000) + 1000
const res = await fetch(`https://wa.wibudev.com/code?nom=${phone}&text=${code}`)
.then(
async (res) => {
if (res.status == 200) {
toast.success('Verification code has been sent')
setOTP(code)
} else {
toast.error('Error')
}
}
);
}
async function getVerification() {
setLoading(true)
if (isOTP == inputOTP) {
setLoading(false)
const res = await fetch('/api/auth/set-cookies', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ user: user })
})
router.push('/welcome')
toast.success("Verification code is correct")
setLoading(false)
} else {
toast.error("Verification code is incorrect")
setLoading(false)
}
}
return (
<>
<Box p={10}>
@@ -24,7 +62,7 @@ export default function ViewVerification() {
Masukkan kode yang kami kirimkan melalui WhatsApp
</Text>
<Text fz={12} c={WARNA.biruTua} fw={"bold"}>
+6287701790942
{phone}
</Text>
<Box pt={30}>
<PinInput
@@ -39,6 +77,9 @@ export default function ViewVerification() {
borderColor: WARNA.biruTua,
},
}}
onChange={(val) => {
setInputOTP(val)
}}
/>
</Box>
<Box mt={40}>
@@ -48,11 +89,22 @@ export default function ViewVerification() {
size="md"
radius={30}
fullWidth
onClick={onNext}
onClick={() => { getVerification() }}
>
Lanjut
</Button>
</Box>
<Group justify="center" >
<Text fz={12} c={WARNA.biruTua}>
Didnt receive a code ? {""}
<Anchor c={WARNA.biruTua}
fz={12}
onClick={() => { onResend() }}
>
Resend
</Anchor>
</Text>
</Group>
</Box>
</Stack>
</LayoutLogin>