react lifecycle methods and hooks code example
Example 1: lifecycle methods react
Every component in React goes through a lifecycle of events. I like to think of them as going through a cycle of birth, growth, and death.
Mounting – Birth of your component
Update – Growth of your component
Unmount – Death of your component
Example 2: lifecycle method react
INITIALIZATION= setup props and state
MOUNTING= constructor->componentWillMount->render->componentDidMount//Birth
UPDATE= shouldComponentUpdate->componentWillUpdate->render
->componentDidUpdate //Growth
UNMOUNTING= componentWillUnmount //Death
Example 3: react lifecycle hooks
class Content extends React.Component {
// ...
componentWillMount() {
this.setState({ activities: data });
}
// ...
}
Example 4: react lifecycle hooks
class ActivityItem extends React.Component {
render() {
const { activity } = this.props;
return (
{moment(activity.created_at).fromNow()}
{activity.actor.display_login} {activity.payload.action}
{activity.repo.name}
)
}
}