3
3
* All rights reserved.
4
4
*
5
5
* 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
7
7
* of patent rights can be found in the PATENTS file in the same directory.
8
8
*/
9
9
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 ) => {
23
23
var nextPage = this . state . page + 1 ;
24
24
this . setState ( {
25
25
page : nextPage ,
@@ -39,7 +39,8 @@ var CommentsBox = React.createClass({
39
39
} ;
40
40
xhr . send ( ) ;
41
41
evt . preventDefault ( ) ;
42
- } ,
42
+ }
43
+
43
44
render ( ) {
44
45
var commentNodes = this . state . comments . map ( comment =>
45
46
< Comment key = { comment . id } author = { comment . author } > { comment . text } </ Comment >
@@ -54,7 +55,8 @@ var CommentsBox = React.createClass({
54
55
{ this . renderMoreLink ( ) }
55
56
</ div >
56
57
) ;
57
- } ,
58
+ }
59
+
58
60
renderMoreLink ( ) {
59
61
if ( this . state . loadingMore ) {
60
62
return < em > Loading...</ em > ;
@@ -68,12 +70,13 @@ var CommentsBox = React.createClass({
68
70
return < em > No more comments</ em > ;
69
71
}
70
72
}
71
- } ) ;
73
+ }
74
+
75
+ class Comment extends React . Component {
76
+ static propTypes = {
77
+ author : PropTypes . object . isRequired
78
+ }
72
79
73
- var Comment = React . createClass ( {
74
- propTypes : {
75
- author : React . PropTypes . object . isRequired
76
- } ,
77
80
render ( ) {
78
81
return (
79
82
< li >
@@ -83,12 +86,13 @@ var Comment = React.createClass({
83
86
</ li >
84
87
) ;
85
88
}
86
- } ) ;
89
+ }
90
+
91
+ class Avatar extends React . Component {
92
+ static propTypes = {
93
+ author : PropTypes . object . isRequired
94
+ }
87
95
88
- var Avatar = React . createClass ( {
89
- propTypes : {
90
- author : React . PropTypes . object . isRequired
91
- } ,
92
96
render ( ) {
93
97
return (
94
98
< img
@@ -99,8 +103,8 @@ var Avatar = React.createClass({
99
103
className = "commentPhoto"
100
104
/>
101
105
) ;
102
- } ,
106
+ }
103
107
getPhotoUrl ( author ) {
104
108
return 'https://avatars.githubusercontent.com/' + author . githubUsername + '?s=50' ;
105
109
}
106
- } ) ;
110
+ }
0 commit comments