Created
July 30, 2014 23:08
-
-
Save ricn/678fff7f0f7749e15080 to your computer and use it in GitHub Desktop.
comments.js.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx React.DOM */ | |
var Comment = React.createClass({ | |
render: function () { | |
return ( | |
<div className="comment"> | |
<h2 className="commentAuthor"> | |
{this.props.author} | |
</h2> | |
{this.props.comment} | |
</div> | |
); | |
} | |
}); | |
var CommentList = React.createClass({ | |
render: function () { | |
var commentNodes = this.props.comments.map(function (comment, index) { | |
return ( | |
<Comment author={comment.author} comment={comment.comment} key={index} /> | |
); | |
}); | |
return ( | |
<div className="commentList"> | |
{commentNodes} | |
</div> | |
); | |
} | |
}); | |
var CommentBox = React.createClass({ | |
getInitialState: function () { | |
return {comments: []}; | |
}, | |
componentDidMount: function () { | |
this.loadCommentsFromServer(); | |
}, | |
loadCommentsFromServer: function () { | |
$.ajax({ | |
url: this.props.url, | |
dataType: 'json', | |
success: function (comments) { | |
this.setState({comments: comments}); | |
}.bind(this), | |
error: function (xhr, status, err) { | |
console.error(this.props.url, status, err.toString()); | |
}.bind(this) | |
}); | |
}, | |
handleCommentSubmit: function(comment) { | |
var comments = this.state.comments; | |
var newComments = comments.concat([comment]); | |
this.setState({comments: newComments}); | |
$.ajax({ | |
url: this.props.url, | |
dataType: 'json', | |
type: 'POST', | |
data: {"comment": comment}, | |
success: function(data) { | |
this.loadCommentsFromServer(); | |
}.bind(this), | |
error: function(xhr, status, err) { | |
console.error(this.props.url, status, err.toString()); | |
}.bind(this) | |
}); | |
}, | |
render: function () { | |
return ( | |
<div className="commentBox"> | |
<h1>Comments</h1> | |
<CommentList comments={this.state.comments} /> | |
<CommentForm onCommentSubmit={this.handleCommentSubmit}/> | |
</div> | |
); | |
} | |
}); | |
var CommentForm = React.createClass({ | |
handleSubmit: function() { | |
var author = this.refs.author.getDOMNode().value.trim(); | |
var comment = this.refs.comment.getDOMNode().value.trim(); | |
this.props.onCommentSubmit({author: author, comment: comment}); | |
this.refs.author.getDOMNode().value = ''; | |
this.refs.comment.getDOMNode().value = ''; | |
return false; | |
}, | |
render: function() { | |
return ( | |
<form className="commentForm" onSubmit={this.handleSubmit}> | |
<input type="text" placeholder="Your name" ref="author" /> | |
<input type="text" placeholder="Say something..." ref="comment" /> | |
<input type="submit" value="Post" /> | |
</form> | |
); | |
} | |
}); | |
var ready = function () { | |
React.renderComponent( | |
<CommentBox url="/comments.json" />, | |
document.getElementById('comments') | |
); | |
}; | |
$(document).ready(ready); |
I'm getting this error:
Uncaught TypeError: this.props.comments.map is not a function
As well I am I not able to display the comments.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi