From 12792757b925347e515ae0a967eeb88e000f5455 Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Wed, 17 Aug 2022 20:29:24 +0530 Subject: address refactoring --- .../src/pages/Update/Demographic/Demographic.jsx | 47 +++++++++++++--------- 1 file changed, 27 insertions(+), 20 deletions(-) (limited to 'client/src/pages/Update/Demographic/Demographic.jsx') diff --git a/client/src/pages/Update/Demographic/Demographic.jsx b/client/src/pages/Update/Demographic/Demographic.jsx index 6ce06a1..3e95d60 100644 --- a/client/src/pages/Update/Demographic/Demographic.jsx +++ b/client/src/pages/Update/Demographic/Demographic.jsx @@ -45,22 +45,32 @@ const Demographic = () => { }) useEffect(() => { + const address = userData?.address?.split(',') + const addressObj = { + houseNo: address[0], + street: address[1], + locality: address[2], + landmark: address[3], + village: address[4], + district: address[5], + country: address[6], + pincode: address[7] + } + setFormData({ ...formData, - ...userData + ...userData, + ...addressObj }) }, [userData]) -// 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 - } + // 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
{t('loading')}
@@ -77,14 +87,7 @@ const Demographic = () => { const address = userData?.address console.log(address) - console.log( - 'Aadhaar: ', - aadhaarNumber, - 'Islong: ', - isLongEnough, - 'User: ', - userData - ) + console.log('Form Data: ', formData, userData) const handleSubmit = () => { if (page === 0) { @@ -131,7 +134,7 @@ const Demographic = () => { } else { setFormData({ ...formData, - address: `${formData.houseNo} ${formData.street}, ${formData.locality}, ${formData.landmark}, ${formData.village}, ${formData.district.label}, ${formData.country.label} ${formData.pincode}` + address: `${formData.houseNo}, ${formData.street}, ${formData.locality}, ${formData.landmark}, ${formData.village}, ${formData.district.label}, ${formData.country.label}, ${formData.pincode}` }) setPage(page + 1) } @@ -167,7 +170,11 @@ const Demographic = () => { } return ( <> - + {conditionalComponent()} {conditionalButton()} -- cgit