Skip to content

Commit 0bd9e36

Browse files
Update to React 16
1 parent 36c653f commit 0bd9e36

File tree

3 files changed

+41
-34
lines changed

3 files changed

+41
-34
lines changed

src/React.Core/Resources/react.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
* All rights reserved.
44
*
55
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
6+
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
99

1010
// Exports all the parts of React that ReactJS.NET cares about.
1111
module.exports = {
12-
React: require('react/lib/ReactWithAddons'),
13-
ReactDOM: require('react/lib/ReactDOM'),
14-
ReactDOMServer: require('react/lib/ReactDOMServer')
15-
};
12+
React: require('react'),
13+
ReactDOM: require('react-dom'),
14+
ReactDOMServer: require('react-dom/server'),
15+
PropTypes: require('prop-types'),
16+
};

src/React.Core/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"gulp": "~3.9.1",
1212
"gulp-uglify": "~1.5.3",
1313
"json-loader": "~0.5.4",
14-
"react": "~15.3.2",
14+
"prop-types": "~15.6.0",
15+
"react": "~16.0.0",
16+
"react-dom": "~16.0.0",
1517
"vinyl-named": "~1.1.0",
1618
"webpack": "~1.13.1",
1719
"webpack-stream": "~3.2.0"

src/React.Sample.Mvc6/wwwroot/js/Sample.jsx

+32-28
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
33
* All rights reserved.
44
*
55
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree. An additional grant
6+
* LICENSE file in the root directory of this source tree. An additional grant
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
99

10-
var CommentsBox = React.createClass({
11-
propTypes: {
12-
initialComments: React.PropTypes.array.isRequired
13-
},
14-
getInitialState() {
15-
return {
16-
comments: this.props.initialComments,
17-
page: 1,
18-
hasMore: true,
19-
loadingMore: false
20-
};
21-
},
22-
loadMoreClicked(evt) {
10+
class CommentsBox extends React.Component {
11+
static propTypes = {
12+
initialComments: PropTypes.array.isRequired
13+
};
14+
15+
state = {
16+
comments: this.props.initialComments,
17+
page: 1,
18+
hasMore: true,
19+
loadingMore: false
20+
};
21+
22+
loadMoreClicked = (evt) => {
2323
var nextPage = this.state.page + 1;
2424
this.setState({
2525
page: nextPage,
@@ -39,7 +39,8 @@ var CommentsBox = React.createClass({
3939
};
4040
xhr.send();
4141
evt.preventDefault();
42-
},
42+
}
43+
4344
render() {
4445
var commentNodes = this.state.comments.map(comment =>
4546
<Comment key={comment.id} author={comment.author}>{comment.text}</Comment>
@@ -54,7 +55,8 @@ var CommentsBox = React.createClass({
5455
{this.renderMoreLink()}
5556
</div>
5657
);
57-
},
58+
}
59+
5860
renderMoreLink() {
5961
if (this.state.loadingMore) {
6062
return <em>Loading...</em>;
@@ -68,12 +70,13 @@ var CommentsBox = React.createClass({
6870
return <em>No more comments</em>;
6971
}
7072
}
71-
});
73+
}
74+
75+
class Comment extends React.Component {
76+
static propTypes = {
77+
author: PropTypes.object.isRequired
78+
}
7279

73-
var Comment = React.createClass({
74-
propTypes: {
75-
author: React.PropTypes.object.isRequired
76-
},
7780
render() {
7881
return (
7982
<li>
@@ -83,12 +86,13 @@ var Comment = React.createClass({
8386
</li>
8487
);
8588
}
86-
});
89+
}
90+
91+
class Avatar extends React.Component {
92+
static propTypes = {
93+
author: PropTypes.object.isRequired
94+
}
8795

88-
var Avatar = React.createClass({
89-
propTypes: {
90-
author: React.PropTypes.object.isRequired
91-
},
9296
render() {
9397
return (
9498
<img
@@ -99,8 +103,8 @@ var Avatar = React.createClass({
99103
className="commentPhoto"
100104
/>
101105
);
102-
},
106+
}
103107
getPhotoUrl(author) {
104108
return 'https://avatars.githubusercontent.com/' + author.githubUsername + '?s=50';
105109
}
106-
});
110+
}

0 commit comments

Comments
 (0)