Let’s catch up what we’ve done so far.
We saw earlier in this Components and Props in React post that you can declare the components in two different ways. No matter which method you use to do so, one thing is clear. It must not modify its props.
That’s where the states concept comes into play.
So, we learned How to convert a function component into a class in React?
Then, we went through the steps on How to add Local State to a Class in React?
Now, it’s time to add Lifecycle Methods.
When any element is rendered to the DOM for the first time, it’s called “mounting” and when it’s removed from the DOM, it’s called “unmounting”.
We need to add some code to run when those events occur. Thankfully, React has a solution.
React has special methods such as componentDidMount and componentWillUnmount for those events. Those are called “lifecycle methods”.
We can use componentDidMount method to start the timer using setInterval:
componentDidMount() {
this.timerID = setInterval(
() => this.tick(),
1000
);
}
The code above will run after the component is rendered to the DOM.
We have saved the setInterval function into a variable since it’ll be needed to clear the timer later on.
And we can use componentWillUnmount to clear the variable:
componentWillUnmount() {
clearInterval(this.timerID);
}
That’s it we just added the lifecycle methods.
What happens next to this whole process? Find out in this post: How states work in React?
class DOM lifecycle methods local state mounting