| .. | ||
| test | ||
| transforms | ||
| package.json | ||
| README.md | ||
react-codemod
This repository contains a collection of codemod scripts based for use with JSCodeshift that help update React APIs.
Setup & Run
npm install -g jscodeshiftgit clone https://github.com/facebook/react.gitor download a zip file fromhttps://github.com/facebook/react/archive/master.zipjscodeshift -t <codemod-script> <file>- Use the
-doption for a dry-run and use-pto print the output for comparison
Included Scripts
findDOMNode updates this.getDOMNode() or this.refs.foo.getDOMNode()
calls inside of React.createClass components to React.findDOMNode(foo). Note
that it will only look at code inside of React.createClass calls and only
update calls on the component instance or its refs. You can use this script to
update most calls to getDOMNode and then manually go through the remaining
calls.
jscodeshift -t react/packages/react-codemod/transforms/findDOMNode.js <file>
react-to-react-dom updates code for the split of the react and react-dom
packages (e.g., React.render to ReactDOM.render). It looks for
require('react') and replaces the appropriate property accesses using
require('react-dom'). It does not support ES6 modules or other non-CommonJS
systems. We recommend performing the findDOMNode conversion first.
jscodeshift -t react/packages/react-codemod/transforms/react-to-react-dom.js <file>- After running the automated codemod, you may want to run a regex-based find-and-replace to remove extra whitespace between the added requires, such as
codemod.py -m -d src --extensions js '(var React\s*=\s*require\(.react.\);)\n\n(\s*var ReactDOM)' '\1\n\2'using https://github.com/facebook/codemod.
pure-render-mixin removes PureRenderMixin and inlines
shouldComponentUpdate so that the ES2015 class transform can pick up the React
component and turn it into an ES2015 class. NOTE: This currently only works if you
are using the master version (>0.13.1) of React as it is using
React.addons.shallowCompare
jscodeshift -t react/packages/react-codemod/transforms/pure-render-mixin.js <file>- If
--mixin-name=<name>is specified it will look for the specified name instead ofPureRenderMixin. Note that it is not possible to use a namespaced name for the mixin.mixins: [React.addons.PureRenderMixin]will not currently work.
class transforms React.createClass calls into ES2015 classes.
jscodeshift -t react/packages/react-codemod/transforms/class.js <file>- If
--no-super-classis specified it will not extendReact.ComponentifsetStateandforceUpdatearen't being called in a class. We do recommend always extending fromReact.Component, especially if you are using or planning to use Flow. Also make sure you are not callingsetStateanywhere outside of your component.
These three scripts take an option --no-explicit-require if you don't have a
require('React') statement in your code files and if you access React as a
global.
Explanation of the ES2015 class transform
- Ignore components with calls to deprecated APIs. This is very defensive, if
the script finds any identifiers called
isMounted,getDOMNode,replaceProps,replaceStateorsetPropsit will skip the component. - Replaces
var A = React.createClass(spec)withclass A (extends React.Component) {spec}. - Pulls out all statics defined on
staticsplus the few special cased statics likepropTypes,childContextTypes,contextTypesanddisplayNameand assigns them after the class is created.class A {}; A.foo = bar; - Takes
getDefaultPropsand inlines it as a staticdefaultProps. IfgetDefaultPropsis defined as a function with a single statement that returns an object, it optimizes and transformsgetDefaultProps() { return {foo: 'bar'}; }intoA.defaultProps = {foo: 'bar'};. IfgetDefaultPropscontains more than one statement it will transform into a self-invoking function like this:A.defaultProps = function() {…}();. Note that this means that the function will be executed only a single time per app-lifetime. In practice this hasn't caused any issues –getDefaultPropsshould not contain any side-effects. - Binds class methods to the instance if methods are referenced without being
called directly. It checks for
this.foobut also traces variable assignments likevar self = this; self.foo. It does not bind functions from the React API and ignores functions that are being called directly (unless it is both called directly and passed around to somewhere else) - Creates a constructor if necessary. This is necessary if either
getInitialStateexists in theReact.createClassspec OR if functions need to be bound to the instance. - When
--no-super-classis passed it only optionally extendsReact.ComponentwhensetStateorforceUpdateare used within the class.
The constructor logic is as follows:
- Call
super(props, context)if the base class needs to be extended. - Bind all functions that are passed around,
like
this.foo = this.foo.bind(this) - Inline
getInitialState(and removegetInitialStatefrom the spec). It also updates access ofthis.props.footoprops.fooand addspropsas argument to the constructor. This is necessary in the case when the base class does not need to be extended wherethis.propswill only be set by React after the constructor has been run. - Changes
return StateObjectfromgetInitialStateto assignthis.statedirectly.
Recast Options
Options to recast's printer can be provided
through the printOptions command line argument
jscodeshift -t transform.js <file> --printOptions='{"quote":"double"}'