pure-render-decorator
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/pure-render-decorator package

1.2.1 • Public • Published

Pure render decorator

An ES7 decorator to make React components "pure".

Build Status

Alternatives

  • As of v15.3.0, React provides a PureComponent base class to make a component pure.
  • recompose provides a clean and functional way to make components pure.

Installation

npm install pure-render-decorator

Usage

import {Component} from 'react';
import pureRender from 'pure-render-decorator';
 
@pureRender
export default class Test extends Component {
  render() {
    return <div />;
  }
}

The above example is the same as using PureRenderMixin:

var React = require('react');
var PureRenderMixin = require('react-addons-pure-render-mixin');
 
var Test = React.createClass({
  mixins: [
    PureRenderMixin
  ],
 
  render: function() {
    return <div></div>;
  }
});

As decorators are simply functions, you can also use pureRender() without the decorator syntax:

import {Component} from 'react';
import pureRender from 'pure-render-decorator';
 
class Test extends Component {
  render() {
    return <div />;
  }
}
 
export default pureRender(Test);

/pure-render-decorator/

    Package Sidebar

    Install

    npm i pure-render-decorator

    Weekly Downloads

    2,452

    Version

    1.2.1

    License

    MIT

    Last publish

    Collaborators

    • fg