Skip to content

Commit

Permalink
Merge pull request #7321 from keyanzhang/codemod-es6-component
Browse files Browse the repository at this point in the history
Codemod tests from createClass to ES2015 classes
  • Loading branch information
keyz committed Jul 23, 2016
2 parents 08a0895 + 4d8a5bc commit 484f96b
Show file tree
Hide file tree
Showing 44 changed files with 2,045 additions and 1,881 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"babel-eslint": "^5.0.0",
"babel-plugin-check-es2015-constants": "^6.5.0",
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-es2015-arrow-functions": "^6.5.2",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.5.0",
"babel-plugin-transform-es2015-block-scoping": "^6.5.0",
Expand Down
142 changes: 70 additions & 72 deletions src/addons/__tests__/renderSubtreeIntoContainer-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,37 +21,37 @@ describe('renderSubtreeIntoContainer', function() {
it('should pass context when rendering subtree elsewhere', function() {
var portal = document.createElement('div');

var Component = React.createClass({
contextTypes: {
class Component extends React.Component {
static contextTypes = {
foo: React.PropTypes.string.isRequired,
},
};

render: function() {
render() {
return <div>{this.context.foo}</div>;
},
});
}
}

var Parent = React.createClass({
childContextTypes: {
class Parent extends React.Component {
static childContextTypes = {
foo: React.PropTypes.string.isRequired,
},
};

getChildContext: function() {
getChildContext() {
return {
foo: 'bar',
};
},
}

render: function() {
render() {
return null;
},
}

componentDidMount: function() {
componentDidMount() {
expect(function() {
renderSubtreeIntoContainer(this, <Component />, portal);
}.bind(this)).not.toThrow();
},
});
}
}

ReactTestUtils.renderIntoDocument(<Parent />);
expect(portal.firstChild.innerHTML).toBe('bar');
Expand All @@ -60,86 +60,84 @@ describe('renderSubtreeIntoContainer', function() {
it('should throw if parentComponent is invalid', function() {
var portal = document.createElement('div');

var Component = React.createClass({
contextTypes: {
class Component extends React.Component {
static contextTypes = {
foo: React.PropTypes.string.isRequired,
},
};

render: function() {
render() {
return <div>{this.context.foo}</div>;
},
});
}
}

var Parent = React.createClass({
childContextTypes: {
class Parent extends React.Component {
static childContextTypes = {
foo: React.PropTypes.string.isRequired,
},
};

getChildContext: function() {
getChildContext() {
return {
foo: 'bar',
};
},
}

render: function() {
render() {
return null;
},
}

componentDidMount: function() {
componentDidMount() {
expect(function() {
renderSubtreeIntoContainer(<Parent />, <Component />, portal);
}).toThrowError('parentComponentmust be a valid React Component');
},
});
}
}
});

it('should update context if it changes due to setState', function() {
var container = document.createElement('div');
document.body.appendChild(container);
var portal = document.createElement('div');

var Component = React.createClass({
contextTypes: {
class Component extends React.Component {
static contextTypes = {
foo: React.PropTypes.string.isRequired,
getFoo: React.PropTypes.func.isRequired,
},
};

render: function() {
render() {
return <div>{this.context.foo + '-' + this.context.getFoo()}</div>;
},
});
}
}

var Parent = React.createClass({
childContextTypes: {
class Parent extends React.Component {
static childContextTypes = {
foo: React.PropTypes.string.isRequired,
getFoo: React.PropTypes.func.isRequired,
},
};

getChildContext: function() {
state = {
bar: 'initial',
};

getChildContext() {
return {
foo: this.state.bar,
getFoo: () => this.state.bar,
};
},

getInitialState: function() {
return {
bar: 'initial',
};
},
}

render: function() {
render() {
return null;
},
}

componentDidMount: function() {
componentDidMount() {
renderSubtreeIntoContainer(this, <Component />, portal);
},
}

componentDidUpdate() {
renderSubtreeIntoContainer(this, <Component />, portal);
},
});
}
}

var instance = ReactDOM.render(<Parent />, container);
expect(portal.firstChild.innerHTML).toBe('initial-initial');
Expand All @@ -152,42 +150,42 @@ describe('renderSubtreeIntoContainer', function() {
document.body.appendChild(container);
var portal = document.createElement('div');

var Component = React.createClass({
contextTypes: {
class Component extends React.Component {
static contextTypes = {
foo: React.PropTypes.string.isRequired,
getFoo: React.PropTypes.func.isRequired,
},
};

render: function() {
render() {
return <div>{this.context.foo + '-' + this.context.getFoo()}</div>;
},
});
}
}

var Parent = React.createClass({
childContextTypes: {
class Parent extends React.Component {
static childContextTypes = {
foo: React.PropTypes.string.isRequired,
getFoo: React.PropTypes.func.isRequired,
},
};

getChildContext: function() {
getChildContext() {
return {
foo: this.props.bar,
getFoo: () => this.props.bar,
};
},
}

render: function() {
render() {
return null;
},
}

componentDidMount: function() {
componentDidMount() {
renderSubtreeIntoContainer(this, <Component />, portal);
},
}

componentDidUpdate() {
renderSubtreeIntoContainer(this, <Component />, portal);
},
});
}
}

ReactDOM.render(<Parent bar="initial" />, container);
expect(portal.firstChild.innerHTML).toBe('initial-initial');
Expand Down
26 changes: 12 additions & 14 deletions src/addons/transitions/__tests__/ReactCSSTransitionGroup-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -271,17 +271,17 @@ describe('ReactCSSTransitionGroup', function() {
});

it('should clear transition timeouts when unmounted', function() {
var Component = React.createClass({
render: function() {
class Component extends React.Component {
render() {
return (
<ReactCSSTransitionGroup
transitionName="yolo"
transitionEnterTimeout={500}>
{this.props.children}
</ReactCSSTransitionGroup>
);
},
});
}
}

ReactDOM.render(<Component/>, container);
ReactDOM.render(<Component><span key="yolo" id="yolo"/></Component>, container);
Expand All @@ -293,23 +293,21 @@ describe('ReactCSSTransitionGroup', function() {
});

it('should handle unmounted elements properly', function() {
var Child = React.createClass({
class Child extends React.Component {
render() {
if (!this.props.show) {
return null;
}
return <div />;
},
});
}
}

var Component = React.createClass({
getInitialState() {
return { showChild: true };
},
class Component extends React.Component {
state = { showChild: true };

componentDidMount() {
this.setState({ showChild: false });
},
}

render() {
return (
Expand All @@ -321,8 +319,8 @@ describe('ReactCSSTransitionGroup', function() {
<Child show={this.state.showChild} />
</ReactCSSTransitionGroup>
);
},
});
}
}

ReactDOM.render(<Component/>, container);

Expand Down
Loading

0 comments on commit 484f96b

Please sign in to comment.