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
|
import React, { useState } from 'react'
import Header from '../../../components/Header/Header'
import CardAgreement from '../../../components/Card/CardAgreement'
import styles from './Agreement.module.css'
import Input from '../../../components/Input/Input'
import { useNavigate } from 'react-router-dom'
import SubmitButton from '../../../components/SubmitButton/SubmitButton'
import { Button, Typography } from '@mui/material'
import { useTranslation } from 'react-i18next'
import { sendOTP, updateUser, sendMessage } from '../../../services/apiservice'
import { userContext } from '../../../context/User'
import { useMutation } from 'react-query'
import { ToastContainer, toast } from 'react-toastify'
import 'react-toastify/dist/ReactToastify.css'
const Agreement = () => {
const { t } = useTranslation()
const navigate = useNavigate()
const [otp, setOtp] = useState()
const [unverified, setUnverified] = useState(true)
const [disabled, setDisabled] = useState(false)
const [finalDisable, setFinalDisable] = useState(false)
const [show, setShow] = useState(false)
const { userData } = userContext()
const updateUse = useMutation(
() => updateUser(userData._id, { ...userData }),
{
onSuccess: () => {
setConfirm.mutate({
mobile: `+91${userData.mobile}`,
id: userData._id
})
}
}
)
const setConfirm = useMutation(
(payload) => {
sendMessage(payload)
},
{
onSuccess: () => {
navigate('/update/final-slip')
}
}
)
const { data, mutate } = useMutation(() =>
sendOTP({ mobile: `+91${userData?.mobile}` })
)
const verifyOTP = () => {
if (data?.data?.otpCode === Number(otp)) {
console.log('Disabled: ', disabled, 'Final Disable: ', finalDisable)
setFinalDisable(true)
setDisabled(true)
setShow(false)
setUnverified(false)
toast.success(t('OTP_VERIFIED!'))
} else {
toast.error(t('INCORRECT_OTP'))
}
}
const sendResendOTP = () => {
setTimeout(() => {
if (finalDisable === false) {
console.log('Disabled: ', disabled, 'Final Disable: ', finalDisable)
setDisabled(false)
}
}, 30000)
}
return (
<>
<ToastContainer
autoClose={1000}
hideProgressBar={true}
theme={'colored'}
/>
<Header subheading={t('ENROLLMENT')} />
<div className={styles.card__container}>
<CardAgreement
image={`${process.env.PUBLIC_URL}/assets/images/agreement.svg`}
/>
</div>
<div className={styles.card__elements}>
<Typography>{t('PLEASE_VERIFY_YOUR_IDENTITY')}</Typography>
<Button
color="primary"
size="large"
type="submit"
variant="contained"
disabled={disabled}
sx={{ marginTop: '1rem' }}
onClick={() => {
mutate()
setDisabled(true)
setShow(true)
sendResendOTP()
}}
>
{show ? t('RESEND') : t('SEND_OTP')}
</Button>
{show && (
<>
<Input
type="text"
id="otp"
value={otp}
onChange={(e) => setOtp(e.target.value)}
maxLength="6"
placeholder="XXXXXX"
/>
<Button
color="primary"
size="large"
type="submit"
variant="contained"
onClick={() => {
verifyOTP()
}}
>
{t('VERIFY_OTP')}
</Button>
</>
)}
</div>
<SubmitButton
onClick={() => {
if (unverified) {
toast.error(t('PLEASE_VERIFY_OTP'))
} else {
updateUse.mutate()
}
}}
/>
</>
)
}
export default Agreement
|