summaryrefslogtreecommitdiff
path: root/client/src/pages/Update/Otp/Otp.jsx
diff options
context:
space:
mode:
authorrohan09-raj <[email protected]>2022-08-18 16:12:35 +0530
committerrohan09-raj <[email protected]>2022-08-18 16:12:35 +0530
commit0a1a985de6e9a53896d2ba17e26d042009b3e1b4 (patch)
tree133d50eb69452171868b38988c6a10c9367ce171 /client/src/pages/Update/Otp/Otp.jsx
parent6b85ebee8986b982e05d49c8f1a326deb3e08bae (diff)
Condtional update handling
Diffstat (limited to 'client/src/pages/Update/Otp/Otp.jsx')
-rw-r--r--client/src/pages/Update/Otp/Otp.jsx73
1 files changed, 73 insertions, 0 deletions
diff --git a/client/src/pages/Update/Otp/Otp.jsx b/client/src/pages/Update/Otp/Otp.jsx
new file mode 100644
index 0000000..2728ba3
--- /dev/null
+++ b/client/src/pages/Update/Otp/Otp.jsx
@@ -0,0 +1,73 @@
+import React, { useEffect } from 'react'
+import Header from '../../../components/Header/Header'
+import Input from '../../../components/Input/Input'
+import { Button, Grid } from '@mui/material'
+import { useNavigate } from 'react-router-dom'
+import { useTranslation } from 'react-i18next'
+import { userContext } from '../../../context/User'
+import { useQuery } from 'react-query'
+import { getUserByAadhaar } from '../../../services/apiservice'
+import styles from './Otp.module.css'
+import SubmitButton from '../../../components/SubmitButton/SubmitButton'
+
+const Otp = () => {
+ const navigate = useNavigate()
+ const { t } = useTranslation()
+ const { aadhaarNumber, setUserData, oriUserData, setOriUserData } =
+ userContext()
+
+ useEffect(() => {
+ setUserData(oriUserData)
+ }, [oriUserData])
+
+ const isLongEnough = aadhaarNumber?.toString().length > 11
+
+ // Make api call using the provided aadhaar number and set the user data in the context if the api call is successful. Set form data to the user data if the api call is successful and prevent too many re-renders.
+ const { isLoading, isError, data } = useQuery('user', async () => {
+ if (isLongEnough) {
+ const response = await getUserByAadhaar(aadhaarNumber)
+ return response
+ }
+ })
+
+ if (isLoading) {
+ return <div>{t('loading')}</div>
+ }
+
+ if (isError) {
+ return <div>{t('error')}</div>
+ }
+
+ if (data) {
+ setOriUserData(data?.data)
+ }
+ return (
+ <>
+ <Header subheading="Update" />
+ <div className={styles.subheading__container}>
+ <h3 className={styles.subheading}> Enter OTP </h3>
+ <Input
+ type="text"
+ id="aadhaarNumber"
+ placeholder="Enter One Time Password"
+ />
+ <Grid container columnSpacing={10} justifyContent="center">
+ <Grid item>
+ <Button
+ color="primary"
+ size="large"
+ type="submit"
+ variant="contained"
+ onClick={() => {}}
+ >
+ Verify OTP
+ </Button>
+ </Grid>
+ </Grid>
+ </div>
+ <SubmitButton onClick={() => navigate('/update/select-update')} />
+ </>
+ )
+}
+
+export default Otp