Introduction
Hello Guys, Today we will talk about the Lifecycle of React Native Application Component. Lifecycle methods are inbuilt methods. As a Mobile Application developer, we have to take care of the Lifecycle of each screen/activity/component because sometimes we have to load the data accordingly. For example, if I want to initialize some connection when the user opens the screen reader and closes it when the user closes it; In both cases we have to have some knowledge about the Lifecycle methods so that we can perform such actions.
React and React Native is updating continuously due to which this post got obsolete. Please refer to this official post to get more idea.
The lifecycle of React Native Application
There are 4 types of Lifecycle methods available in React Native: (For more information on deprecated methods please visit here)
- Mounting methods
- constructor()
- componentWillMount() (Deprecated after RN 0.60)
- render()
- componentDidMount()
- Updating methods
- componentWillReceiveProps() (Deprecated after RN 0.60)
- shouldComponentUpdate()
- componentWillUpdate() (Deprecated after RN 0.60)
- componentDidUpdate()
- Unmounting methods
- componentWillUnmount()
- Error handling methods
- componentDidCatch()
Description
1. Mounting Methods
1. constructor(): It is the first method called when we open a screen, it is mostly used to create States.
constructor() {
super();
console.log('Constructor Called.');
}
2. componentWillMount(): It is called right after constructor(), used to call asynchronous tasks or network calls.
componentWillMount() {
console.log('componentWillMount called.');
}
3. render(): Render is the most important Lifecycle method because it is used to render UI or we can say the main View of the screen.
render() {
return (
<View style={{ justifyContent: 'center', alignItems: 'center' }}>
<Text>Language is: {this.props.name}</Text>
</View>
);
}
4. componentDidMount(): Is called after render method, It is used for the network calls.
componentDidMount() {
console.log('componentDidMount called.');
}
2. Updating methods
Updating methods are used to update the value of Props or State to React Native. These methods are called automatically when a component re-renders.
1. componentWillReceiveProps(): It is called before the component dose anything with new props, We would send the next prop as an argument inside it.
componentWillReceiveProps(nextProp) {
console.log('componentWillReceiveProps called.', nextProp);
}
2. shouldComponentUpdate(): It is called every time before the screen or parent component re-renders. We can stop the re-rendering of the screen by passing false in this method.
shouldComponentUpdate(nextProp, nextState) {
console.log('shouldComponentUpdate called.');
return true;
}
3. componentWillUpdate(): It is called before the re-rendering when new state or props is received for updating. It does not allow the this.setState({}) method.
componentWillUpdate(nextProp, nextState) {
console.log('componentWillUpdate called.');
}
4. componentDidUpdate(): It is called after the rendering, this method is mostly used to interact with updated rendering values and execute any post-render events.
componentDidUpdate(prevProp, prevState) {
console.log('componentDidUpdate called.');
}
3. Unmounting method
1. componentWillUnmount(): It is called when the component is removed from the DOM, Users can clear any running timers, stop network requests and cleaning any previously stored value in the application in this method.
componentWillUnmount() {
console.log('componentWillUnmount called.');
}
4. Error handling method
1. The componentDidCatch(): It is a part of the error handling method. It is used to find errors between JavaScript code and handle them by passing the correct message or argument. It will help us to use any try /cache block to handle any error.
componentDidCatch(error, info) {
console.log('componentDidCatch called.');
}
That was the different methods that are called in a Lifecycle of any component. Below is the example which will help you to understand more.
Code
This post will help you to know more about the way you can make a React Native project. After creating the project replace the following code in your existing project’s App.js
App.js
/*Example of Reac Native Life Cycle*/
import React, { Component } from 'react';
import { Text, View } from 'react-native';
class CustomComponent extends Component {
constructor() {
super();
console.log('Constructor Called.');
}
componentWillMount() {
console.log('componentWillMount called.');
}
componentDidMount() {
console.log('componentDidMount called.');
}
componentWillReceiveProps(nextProp) {
console.log('componentWillReceiveProps called.', nextProp);
}
shouldComponentUpdate(nextProp, nextState) {
console.log('shouldComponentUpdate called.');
return true;
}
componentWillUpdate(nextProp, nextState) {
console.log('componentWillUpdate called.');
}
componentDidUpdate(prevProp, prevState) {
console.log('componentDidUpdate called.');
}
componentWillUnmount() {
console.log('componentWillUnmount called.');
}
componentDidCatch(error, info) {
console.log('componentDidCatch called.');
}
render() {
return (
<View style={{ justifyContent: 'center', alignItems: 'center' }}>
<Text>Language is: {this.props.name}</Text>
</View>
);
}
}
export default class App extends Component {
render() {
return (
<View style={{ flex: 1, justifyContent: 'center' }}>
<CustomComponent name="C" />
</View>
);
}
}
Output Screenshot
Output in Online Emulator
That was the Lifecycle methods of the React Native App. If you have anything to share please comment below or contact us here.
Have a happy codding.
Hope you liked it:)
I did not got componentWillUnmount console log When I checked with same code. I didn’t use the deprecated one. Can u tell me why it is not called. Thanks.
What a website . I got very well.
god bless you
the only website where everything is mentioned in a very crystal clear way. thank you so much. keep up the great work.
Hi, this is so informative but May I know if is it up to date?