GithubHelp home page GithubHelp logo

arv / react-closure-compiler Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mihaip/react-closure-compiler

0.0 2.0 0.0 64.87 MB

Tooling to teach Closure Compiler about React

License: Apache License 2.0

Java 94.59% JavaScript 5.13% Shell 0.29%

react-closure-compiler's Introduction

Closure Compiler support for React

Tools for making React work better with the Closure Compiler. Goes beyond an externs file and adds a custom warnings guard and compiler pass to teach the compiler about components and other React-specific concepts.

See this blog post for details about the motivation for this project.

Building

To build the project, use:

ant jar

That generates lib/react-closure-compiler.jar, which you can then integrate into your build process (by adding info.persistent.react.jscomp.ReactWarningsGuard as a warnings guard and info.persistent.react.jscomp.ReactCompilerPass as a custom pass to run before checks). Given a CompilerOptions instance, this is usually a matter of:

options.addWarningsGuard(new ReactWarningsGuard());
options.addCustomPass(
        CustomPassExecutionTime.BEFORE_CHECKS,
        new ReactCompilerPass(compiler));

To run the tests, use:

ant test

Usage

You should be able to write React components as normal, using React.createClass, JSX, etc. That is, if you have a component:

var Comp = React.createClass({
  render: function() {
    return <div/>;
  },
  /**
   * @return {number}
   */
  someMethod: function() {
    return 123;
  }
});

The Closure Compiler will know about three types:

  • ReactClass.<Comp>, for the class definition
  • ReactElement.<Comp> for an element created from that definition (via JSX or React.createElement(). There is a CompElement @typedef generated so that you don't have to use the slightly awakward template type notation.
  • Comp for rendered instances of this component (this is subclass of ReactComponent). Comp instances are known to have custom component methods like someMethod (and their parameter and return types).

See this page for more details on React terminology and types.js in this repository for the full type hierarchy that is implemented.

This means that for example you can use /** @type {Comp} */ to annotate functions that return a rendered instance of Comp. Additionally, ReactDOM.render invocations on JSX tags or explicit React.createElement calls are automatically annotated with the correct type. That is, given:

var compInstance = ReactDOM.render(<Comp/>, container);
compInstance.someMethod();
compInstance.someOtherMethodThatDoesntExist();

The compiler will know that compInstance has a someMethod() method, but that it doesn't have a someOtherMethodThatDoesntExist().

Props and State

If you use propTypes, you can opt into having props accesses be type checked too. You'll need to enable the propTypesTypeChecking option and then most types will be converted automatically. That is, given:

var Comp = React.createClass({
  propTypes: {
    prop1: React.PropTypes.number.isRequired,
    prop2: React.PropTypes.arrayOf(React.PropTypes.string).isRequired,
  },
  ...
});

The compiler will know that this.props.prop1 has type number and this.props.prop2 has type !Array<string>.

If there is a prop whose type you cannot express with React.PropTypes (e.g. a typedef, interface, enum or other Closure Compiler-only type), you can annotate the prop type with a @type JSDoc, along these lines:

propTypes: {
  /** @type {!MyInterface} */
  someObject: React.PropTypes.object.isRequired,
},

If you need to refer to the type of the props of a component, you can use <ComponentName>.Props (this is a generated record type based on the propTypes).

The fields of this.state (and the parameter of this.setState()) can also be type checked if type information is provided for a component's state. To do this, you'll need to provide a return type for getInitialState():

var Comp = React.createClass({
  /** @return {{enabled: boolean, waiting: (boolean|undefined)}} */
  getInitialState() {
    return {enabled: false};
  }
  ...
});

Note that waiting is not initially present in state, and thus it needs to have an |undefined union type.

If you need to refer to the type of the state of a component, you can use <ComponentName>.State (this is the record type that is used as the return type of getInitialState. There is also a <ComponentName>.PartialState type that is generated, where every field is unioned with |undefined (this is used to type setState calls, where only a subset of state may be present).

Fields

You can also use getInitialState to define instance fields that your component may have. That is, given:

var Comp = React.createClass({
  getInitialState() {
    /** @private {number} */
    this.field_ = 12;
    return null;
  }
  ...
});

If you reference this.field_ in a component method the compiler will know that its type is number.

Benefits

In addition to type checking of component instances, this compiler pass has the following benefits:

  • Minification options for React (e.g. React.createElement calls are replaced with an alias that gets renamed, which has significant size benefits, even with gzip)
  • React-aware size optimizations. For example propTypes in a component will get stripped out when using the minified React build, since they are not checked in that case (if you want propTypes to be preserved, you can tag them with @struct).
  • React-aware checks and warnings (e.g. if you use PureRenderMixin but also override shouldComponentUpdate, thus obviating the need for the mixin).

Mixins

Mixins are supported, as long as they are annotated via the React.createMixin wrapper (introduced in React 0.13). That is, the following should work (the compiler will know about the presence of someMixinMethod on Comp instances, and that it returns a number):

var Mixin = React.createMixin({
  /**
   * @return {number}
   */
  someMixinMethod: function() {
    return 123;
  }
});

var Comp = React.createClass({
  mixins: [Mixin],
  render: function() {
    return <div>{this.someMixinMethod()}</div>;
  }
});

Note that the React.createMixin call will be stripped out by the compiler pass, so they do not result in any extra overhead.

If you (ab)use mixins to simulate classical inheritance (by having mixins call component class methods, in the vein of abstract functions), you'll need to define these functions as separate mixin properties. For example:

var Mixin = React.createMixin({
  /**
   * @return {number}
   */
  someMixinMethod: function() {
    return this.abstractMixinMethod() * 2;
  }
});

/**
 * @return {number}
 */
Mixin.abstractMixinMethod;

var Comp = React.createClass({
  mixins: [Mixin],
  render: function() {
    return <div>{this.someMixinMethod()}</div>;
  }
});

Caveats and limitations

  • React is assumed to be an external input to the compiler. types.js serves as a definition to the React API (and also informs the compiler that those symbols are not to be renamed). We used to assume that React was also part of the compiler input (which enabled additional size wins, since the React API itself could be renamed), but as of 15.4 React is no longer safe to use with Closure Compiler's advanced optimizations (due to the removal of keyOf and keyMirror).
  • Use of ES6 class syntax has not been tested
  • Only simple mixins that are referenced by name in the mixins array are supported (e.g. dynamic mixins that are generated via function calls are not).
  • Automatic type annotation of React.createElement calls only works for direct references to component names. That is var foo = Comp;var elem = React.createElement(foo) will not result in elem getting the type ReactElement.<Comp> as expected. You will need to add a cast in that case.

Demo

The demo shows how to use the warnings guard and compiler pass with Plovr, but they could be used with other toolchains as well. Plovr is assumed to be checked out in a sibling plovr directory. To run the server for the demo, use:

ant run-demo

And then open the demo/index.html file in your browser (file:/// URLs are fine). You will see some warnings, showing that type checking is working as expected with React components.

Status

This compiler pass has been integrated into Quip's JavaScript codebase (400+ React components). It is thus not entirely scary code, but you will definitely want to check the list of issues before using it.

react-closure-compiler's People

Contributors

arv avatar banga avatar elsigh avatar j0sh avatar mihaip avatar rgpower avatar sashka avatar yangsu avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.