react-purerender

v0.1.0
the purerender mixin in a decorator compatible way
react react-components purerender immutable shouldComponentUpdate

Build Status

It's just syntax sugar. It does a few sanity checks and then sticks a shouldComponentUpdate function on your class.

import PureRender from 'react-purerender';

@PureRender
class Foo extends React.Component {
    // stuff
}

Sanity checks:

  • checks you don't call it on a falsy value (undefined)
  • checks the thing you call it on doesn't have shouldComponentUpdate

The latter differes from the mixin implementation, because merging the results of should component update functions is weird and confusing. If you need that, shouldComponentUpdate is exposed

class Foo extends React.Component {
  shouldComponentUpdate(){
    return PureRender.shouldComponentUpdate.call(this, ...arguments) || magicGlobalThingWasChanged();
  }
}

Or react-mixin:

import {shouldComponentUpdate} from 'react-purerender';
import reactMixin from 'reactMixin';

@reactMixin.decorate({shouldComponentUpdate})
class Foo extends React.Component {
    shouldComponentUpdate(){
      // what happens if I return false and PureRender returns true?
      // I dunno... try it I guess, hope there's a test
    }
}

That's it really, file an issue if you notice an edge case. I wrote this because I need it for most of my components and I've switched to es6 classes.

npm i react-purerender

Metadata

  • MIT
  • Whatever
  • Frankie Bagnardi
  • released 4/24/2015

Downloads

Maintainers