Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 796 Bytes

no-is-mounted.md

File metadata and controls

34 lines (27 loc) · 796 Bytes

Prevent usage of isMounted (react/no-is-mounted)

isMounted is an anti-pattern, is not available when using ES6 classes, and it is on its way to being officially deprecated.

Rule Details

Examples of incorrect code for this rule:

var Hello = createReactClass({
  handleClick: function() {
    setTimeout(function() {
      if (this.isMounted()) {
        return;
      }
    });
  },
  render: function() {
    return <div onClick={this.handleClick.bind(this)}>Hello</div>;
  }
});

Examples of correct code for this rule:

var Hello = createReactClass({
  render: function() {
    return <div onClick={this.props.handleClick}>Hello</div>;
  }
});