Short reference of React.Component lifecycle methods so I don't have to scroll through the huge text on the official documentation
Go to file
Timothy Warren ac10319fd5 Add more methods, flesh out getDerivedStateFromProps 2018-04-06 15:01:51 -04:00
LICENSE Initial commit 2018-04-06 14:40:48 -04:00
Lifecycle-chart.jpg Flesh it out a little 2018-04-06 14:50:21 -04:00
README.md Add more methods, flesh out getDerivedStateFromProps 2018-04-06 15:01:51 -04:00

README.md

React-Lifecycle-Cheatsheet

Short reference of React.Component lifecycle methods so I don't have to scroll through the huge text on the official documentation

Lifecycle Diagram

Mounting

constructor ()

/**
 * Create state and call super
 *
 * @param {object} props
 */
constructor (props) {
	super(props);
	this.state = {
		foo: 'bar'
	}
}

static getDerivedStateFromProps ()

/**
 * Props have changed, return the updated state
 *
 * @param {object} nextProps - Props for the next render
 * @param {object} prevState - State from previous render
 * @return {object | null} - The change to the state 
 */
static getDerivedStateFromProps (nextProps, prevState) {
	// Nothing to update
	return null;
	
	// Set new state
	return {
		foo: 'foobar'
	};
} 

componentDidMount ()

Updating

shouldComponentUpdate ()

render ()

getSnapshotBeforeUpdate ()

componentDidUpdate ()

Unmounting

componentWillUnmount ()


Deprecated

UNSAFE_componentWillMount ()

UNSAFE_componentWillReceiveProps ()

UNSAFE_componentWillUpdate ()