Skip to content

Releases: reactjs/react-docgen

v2.5.0

04 Jan 19:42
Compare
Choose a tag to compare

New

  • Better support for React Native ( #44 )

Fixes

  • Variables used for propTypes and defaultProps, e.g.

    MyClass.defaultProps = defaultProps;
    

    are now properly resolved for class and stateless components. Thanks to @oliviertassinari for reporting this issue! ( #45, #46 )

v2.4.0

30 Oct 17:07
Compare
Choose a tag to compare

New

Support for stateless/funtional components (React v0.14)

Since React v0.14, components can be defined as simple functions:

function SimpleComponent(props) {
    return <div>{this.props.soSimple}</div>
}

Thanks to @iamdustan, react-docgen is now able to detect these components as well. The findExportedComponentDefinition and findAllComponentDefinitions have been updated accordingly.

A function is considered to be a stateless React component if we can determine that it returns a JSX element or the result of a React.createElement call. As always, there are limits to what can be achieved with static analysis, so it might not detect every possible case (but maybe your component is too complex then anways? ;) ).

v2.3.1

20 Oct 23:09
Compare
Choose a tag to compare

Fixes

The propTypeCompositionHandler was not part of the default handlers and therefore the generated documentation didn't contain information about composition.

v2.3.0

20 Oct 21:33
Compare
Choose a tag to compare

Improved

v2.2.0

28 Sep 22:22
Compare
Choose a tag to compare

(I wasn't sure whether this should be considered to be a bug fix or new feature, but I went with new feature instead)

New

  • Consider docblock above decorator annotations (#18). In the following example the docblock is now used for the component description:

    /**
    * This is the description
    */
    @SomeDecorator
    export default class extends React.Component {
    
    };
  • Detect isRequired in shape annotations (second part of #21)

v2.1.1

04 Sep 02:51
Compare
Choose a tag to compare

Fixes

  • defaultPropHandler throws error when encountering non-Property node (#22)

v2.1.0

01 Sep 17:51
Compare
Choose a tag to compare

New

  • "Short" docblocks are now recognized (#20, d3a3f3f):

    /** Short docblock */
  • Docblocks on shape fields are now added to the output (#21, f5415ce):

    React.PropTypes.shape({
      /**
       * Field description
       */
       field: React.PropTypes.string
    });

    produces

    {
      name: 'shape',
      value: {
        field: {
          name: 'string',
          description: 'Field description',
        }
    }

v2.0.1

31 Aug 19:15
Compare
Choose a tag to compare

Fixes

  • Typo in getPropertyName export name (#19)

v2.0.0

24 Jul 23:11
Compare
Choose a tag to compare

New: Support for ES2015 class definitions

react-docgen is now able to find components defined as ES2015 classes. A class either has to extend React.Component or has to define a render() method in order to be recognized as React component.

Examples:

class Component extends React.Component {
  // ...
}

class Component {
  render() {
    // ...
  }
}

are both considered React components. The default resolvers have been updated and renamed accordingly.

For propTypes, defaultProps and other properties, react-docgen supports class properties (ES7 stage 0 proposal at the moment of this release) and assignments to the constructor function. Example:

class Component extends React.Component {
  static propTypes = { ... };
}

// or

class Component extends React.Component {
  // ...
}
Component.propTypes = { ... };

New: displayNameHandler

This new default handler adds the displayName of a component to the documentation. Example:

var Component = React.createClass({
  displayName: 'Foo',
});
class Component extends React.Component {
  // ...
}
Component.displayName = 'Foo';

will result in the documentation object {displayName: 'Foo'}.

Changed: Structure of returned documentation object

The props and description properties are now not present anymore if no props or description could be extracted from the definition. I.e. instead of getting :

{
  "description": "",
  "props": {}
}

(like it is now), you would get

{}

This makes it easier to test for the existence of props in the first place:

if (doc.props) {
  // component has props, render them
}

Changes for custom handler implementations

API of Documentation class

The setDescription and getDescription methods are gone. Instead we added the generic set(key, value) and get(key) method. This allows custom handlers to add arbitrary data to the documentation. Data set this way will be added as properties to the result documentation object.

E.g. if a handler calls documentation.set('foobar', 42), the output will be

{
  "foobar": 42
}

New helper methods

getMemberPathValue is a new function which helps handlers to process component definitions, irrespectively if the definition is a React.createClass({}) call or a class Component {} declaration.

AST structure changes

Because react-docgen uses Babylon (Babel's parser) instead of esprima-fb now, custom handlers/resolvers might have to be updated because of slight AST representation differences.

v1.3.0

18 May 23:51
Compare
Choose a tag to compare

react-docgen now understands the following constructs:

import foo from 'Foo';
import {foo} from 'Foo';
import {foo as bar} from 'Foo';
export var Component = React.createClass({});

var Component = React.createClass({});
export {Component};
export {Component as Foo};
export default Component;

export default React.createClass({});

You will now be able to use ES6 import and export declarations with your react components. However, to "detect" a React component, React.createClass(...) must still be present in the source.