Nothing here yet.
I am available for teaching WordPress and ReactJS.
No blogs yet.
The scenario is like when a user upload a video from front end at that time need to give them an option to generate a thumbnail from uploaded video and upload that thumbnail image into particular folder structure. Here is a demo of the scenario: htt...
I have a multi steps form in which i have used a Formik and Yup libraries. But the validation that i am using of yup library is not working at all. In React debugger tool i am getting it's value as empty. So, whatever i write in the input field it va...
In my reactjs forms i need to upload an image and want to preview that image which is uploaded and then send an API request into database. import { Formik, Form, Field, ErrorMessage } from 'formik'; import * as Yup from 'yup'; class AccountInfo ext...
I need to render my components with conditional rendering. I am applying a or ( || ) operator for applying a condition. But the condition is not working anyhow. { pathName !== '/login' || pathName !== '/signup' || pathName !== '/account' && <Fo...
My signup page is as follow. But i can get validation only for email field. For other rest of the two fields like username and password it is not working. And when a form is submitted successfully from server side then also an alert message of Form ...
I am working with a Token API with using of this JWT plugin : It is working well with 200 status code. But how can i handle 403 Forbidden error message ? As currently i am not able to display an error message. export const LoginAction = (FormData)...
I need to change a text of a link when it is clicked. Currently if i click on a link it changes all the links texts simultaneous. The feeds are like more than 20 posts in loop. In construction i have set the initial state of title like this: constr...