I am totally new in web development and this is my first blog, any sorts of suggestion or comments is welcome and that will help me to learn and grow.
So lets start with the useUndo
hook.
Last week in our organization came with a requirement that we need to have a card that will have two options Accept
and Decline
, and after selecting any one of the option we will be giving the user a time period of let say 10 sec and with in this period they can undo their action.
eg --->
If they accept/ delete
So what i thought is to make a undo function which can help me with with this and also if i would like to use this undo function anywhere anywhere i will use it. So i came up with an useUndo
hook, which was possible with React lifecycle
so lets discuss with the code and how i had implemented it.
First i will show the full code and then i will break it in different part and discuss about each of them.
First i have used useState
react hook to
- Invoke the undo function
- store the timeout id
- to check if the method execution is finished or not.
Next is the onUnload
event-lisitener function
what this will do is it will throw and alert if you are trying to close the tab or window. We are doing this because as we are using setTimeout and clearTimeout so these are window scoped and each time we close or open a new tab a new scope is created so if we close the tab the the setTimeout which are web-api will be cleared from the call back queue and will not enter in the execution stack even after the time interval is over.
Hence we will listen for an event-listener
i.e beforeunload
.
Next the most important part according to me in this code is the useEffect
part i.e
So what we are doing here is
- First we check if
invokeUndo
is true or not and if so we add an event listenerbeforeunload
on window. then we put our function inside the timeout which will be executed after 10000ms i.e 10s. Now thesetTimeout
web-api return a uniq number everytime you run it, which will be used to clear the timeout fucnction.
Inside the setTimeout we call the function which is resolveMethod()
set the undoTimerId
to null as the function execution is finished, setMethodExecuted
to true which will be returned value and while using the hook if we have any action to perform after execution can be done, & setInvokeUndo(false)
as the execution is finished.
Now the important part we need to do some clean-up on component-unmount so we will have a return statement in useEffect which will clear eventListener.
Now to invoke the undo we have invokeUndoMethod which will be a returned value and while using this hook we can use this.
we have an undoMethod
which will perform the undo method i.e clearTimeout
, setInvokeUndo to false.
Now we will have a final return statement
-
undoMethod
to perform the undo action -
invokeUndoMethod
to invoke the undo or start undo method -
isMethodExecuted
this will tell if the method execution is completed or not.
Now while using it.
we can import this useUndo hook and pass inside the onAcceptance
method we need to be executed after 10s.
That's All folks π
Update ---> github repo link
Top comments (5)
Nice article,
but a suggestion is that you could have used code in md instead of pictures.
Will update the blog with the github repo link.
Bahot badhiyaa
Use useRef for storing timerID, or useCallback it
I second this. Although I'm not sure how can one useCallback a timer. Can you pls provide an example snippet?