react-lifecycles-compat

WebJar for react-lifecycles-compat

License

License

MIT
Categories

Categories

React User Interface Web Frameworks
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

react-lifecycles-compat
Last Version

Last Version

3.0.4
Release Date

Release Date

Type

Type

jar
Description

Description

react-lifecycles-compat
WebJar for react-lifecycles-compat
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/reactjs/react-lifecycles-compat

Download react-lifecycles-compat

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/react-lifecycles-compat/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>react-lifecycles-compat</artifactId>
    <version>3.0.4</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/react-lifecycles-compat/
implementation 'org.webjars.npm:react-lifecycles-compat:3.0.4'
// https://jarcasting.com/artifacts/org.webjars.npm/react-lifecycles-compat/
implementation ("org.webjars.npm:react-lifecycles-compat:3.0.4")
'org.webjars.npm:react-lifecycles-compat:jar:3.0.4'
<dependency org="org.webjars.npm" name="react-lifecycles-compat" rev="3.0.4">
  <artifact name="react-lifecycles-compat" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='react-lifecycles-compat', version='3.0.4')
)
libraryDependencies += "org.webjars.npm" % "react-lifecycles-compat" % "3.0.4"
[org.webjars.npm/react-lifecycles-compat "3.0.4"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

react-lifecycles-compat

What is this project?

React version 17 will deprecate several of the class component API lifecycles: componentWillMount, componentWillReceiveProps, and componentWillUpdate. (Read the Update on Async rendering blog post to learn more about why.) A couple of new lifecycles are also being added to better support async rendering mode.

Typically, this type of change would require third party libraries to release a new major version in order to adhere to semver. However, the react-lifecycles-compat polyfill offers a way to use the new lifecycles with older versions of React as well (0.14.9+) so no breaking release is required. This enables shared libraries to support both older and newer versions of React simultaneously.

How can I use the polyfill

First, install the polyfill from NPM:

# Yarn
yarn add react-lifecycles-compat

# NPM
npm install react-lifecycles-compat --save

Next, update your component and replace any of the deprecated lifecycles with new ones introduced with React 16.3. (Refer to the React docs for examples of how to use the new lifecycles.)

Lastly, use the polyfill to make the new lifecycles work with older versions of React:

import React from 'react';
import {polyfill} from 'react-lifecycles-compat';

class ExampleComponent extends React.Component {
  static getDerivedStateFromProps(nextProps, prevState) {
    // Normally this method would only work for React 16.3 and newer,
    // But the polyfill will make it work for older versions also!
  }

  getSnapshotBeforeUpdate(prevProps, prevState) {
    // Normally this method would only work for React 16.3 and newer,
    // But the polyfill will make it work for older versions also!
  }

  // render() and other methods ...
}

// Polyfill your component so the new lifecycles will work with older versions of React:
polyfill(ExampleComponent);

export default ExampleComponent;

Which lifecycles are supported?

Currently, this polyfill supports static getDerivedStateFromProps and getSnapshotBeforeUpdate- both introduced in version 16.3.

Validation

Note that in order for the polyfill to work, none of the following lifecycles can be defined by your component: componentWillMount, componentWillReceiveProps, or componentWillUpdate.

Note also that if your component contains getSnapshotBeforeUpdate, componentDidUpdate must be defined as well.

An error will be thrown if any of the above conditions are not met.

org.webjars.npm

React Community

React website and its localizations

Versions

Version
3.0.4