State and Lifecycle
React components has a built-in state object. The state the object is where you store property values that belong to the component.
When the state object changes, the component re-renders.
Create a class component
Install a project on your laptop or You can use a https://codepen.io/
We are taking a simple example
In the above code snippet, we took a class component. and Specifying the object in the constructor method :
The state object can contain as many properties as you like :
Refer to the state object anywhere in the component by using the syntax :this.state.propertyname
Example :
Refer to the state object in the render() method :
Changing the state Object
To change a value in the state object, use the this.setState()method.
When a value in the state object changes, the component will re-render, meaning that the output will change according to the new value(s).
Example :
Add a button with an onClick event that will change the color property :
Lifecycle methods
Each component in React has a lifecycle that you can monitor and manipulate during its three main phases.
The three phases are: Mounting, Updating, and Unmounting.
1. Mounting
Mounting means putting elements into the DOM.
React has four built-in methods that gets called, in this order, when mounting a component :
- constructor()
- getDerivedStateFromProps()
- render()
- componentDidMount()
The render() method is required and will always be called, the others are optional and will be called if you define them.
constructor
The constructor() method is called before anything else, when the component is initiated, and it is the natural place to set up the initial state and other initial values.
The constructor() method is called with the props, as arguments, and you should always start by calling the super(props) before anything else, this will initiate the parent’s constructor method and allows the component to inherit methods from its parent (React.Component).
Example:
The constructor method is called, by React, every time you make a component:
render
The render() method is required, and is the method that actually outputs the HTML to the DOM.
componentDidMount
The componentDidMount() method is called after the component is rendered.
This is where you run statements that requires that the component is already placed in the DOM.
Example :
At first, my favorite color is Black, but give me a second, and it is red instead:
2. Updating
The next phase in the lifecycle is when a component is updated.
A component is updated whenever there is a change in the component’s state or props.
React has five built-in methods that gets called, in this order, when a component is updated :
- getDerivedStateFromProps()
- shouldComponentUpdate()
- render()
- getSnapshotBeforeUpdate()
- componentDidUpdate()
shouldComponentUpdate
In the shouldComponentUpdate() method you can return a Boolean value that specifies whether React should continue with the rendering or not.
The default value is true.
The example below shows what happens when the shouldComponentUpdate() method returns false :
Same example as above, but this time the shouldComponentUpdate() method returns true instead :
componentDidUpdate
The componentDidUpdate method is called after the component is updated in the DOM.
When the component is *mounting* it is rendered with the favorite color “Black”.
When the component *has been mounted,* a timer changes the state, and the color becomes “red”.
This action triggers the *update* phase, and since this component has a componentDidUpdate method, this method is executed and writes a message in the empty DIV element:
Example:
The componentDidUpdate method is called after the update has been rendered in the DOM :
3. Unmounting
The next phase in the lifecycle is when a component is removed from the DOM, or *unmounting* as React likes to call it.
React has only one built-in method that gets called when a component is unmounted:componentWillUnmount()
componentWillUnmount
The componentWillUnmount() method is called when the component is about to be removed from the DOM.
Example:
Click the button to delete the header: