-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial.jsx
126 lines (122 loc) · 4.02 KB
/
tutorial.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
var CommentBox = React.createClass({
getInitialState: function(){
return {data: []};
},
loadCommentsFromServer: function(){
$.ajax({
url: this.props.url,
dataType: 'json',
cache: false,
success: function(data){
this.setState({data: data});
}.bind(this),
error: function(xhr, status, err){
console.error(this.props.url, status, err.toString());
}.bind(this)
});
},
handleCommentSubmit:function(comment){
var comments = this.state.data;
comment.id = new Date();
comments = comments.concat([comment]);
this.setState({data: comments});
$.ajax({
url: this.props.url,
dataType: 'json',
type: 'POST',
data: comment,
success: function(data){
this.setState({data: data});
}.bind(this),
error: function(xhr, status, err){
console.error(this.props.url, status, err.toString());
}.bind(this)
});
},
componentDidMount: function(){
this.loadCommentsFromServer();
setInterval(this.loadCommentsFromServer, this.props.pollInterval);
},
render: function(){
return(
<div className="commentBox">
<h1>Comments</h1>
<CommentList data={this.state.data} />
<CommentForm onCommentSubmit={this.handleCommentSubmit} />
</div>
);
}
});
var CommentList = React.createClass({
render: function(){
var commentNodes = this.props.data.map(function(comment){
return(
<Comment author={comment.author} email={comment.email} key={comment.id}>
{comment.text}
</Comment>
);
});
return(
<div className="commentList">
{commentNodes}
</div>
);
}
});
var Comment = React.createClass({
rawMarkup: function(){
var md = new Remarkable();
var rawMarkup = md.render(this.props.children.toString());
return {__html: rawMarkup};
},
render: function(){
return(
<div className="comment">
<h2 className="commentAuthor">
{this.props.author}
</h2>
<div className="email">{this.props.email}</div>
<span dangerouslySetInnerHTML={this.rawMarkup()}/>
</div>
);
}
});
var CommentForm = React.createClass({
getInitialState : function(){
return {author: '', email:'', text: ''};
},
handleAuthorChange: function(e){
this.setState({author: e.target.value});
},
handleTextChange: function(e){
this.setState({text: e.target.value});
},
handleEmailChange: function(e){
this.setState({email: e.target.value});
},
handleSubmit: function(e){
e.preventDefault();
var author = this.state.author.trim();
var text = this.state.text.trim();
var email = this.state.email.trim();
if(!text || !autho || !email){
return;
}
this.props.onCommentSubmit({author: author, email: email, text: text});
this.setState({author: '', text: ''});
},
render: function(){
return(
<form className="commentForm" onSubmit={this.handleSubmit}>
<input type="text" placeholder="Your name" value={this.state.author} onChange={this.handleAuthorChange} />
<input type="email" placeholder="Your email" value={this.state.email} onChange={this.handleEmailChange} />
<input type="text" placeholder="Say something..." value={this.state.text} onChange={this.handleTextChange} />
<input type="submit" value="Post" />
</form>
);
}
});
ReactDOM.render(
<CommentBox url="api/comments" pollInterval={10000} />,
document.getElementById("content")
);