Vulcan/packages/base-components/lib/comments/list/CommentItem.jsx
2016-03-25 12:17:29 +09:00

102 lines
No EOL
2.6 KiB
JavaScript

import React, { PropTypes, Component } from 'react';
class CommentItem extends Component{
constructor() {
super();
['showReply', 'cancelReply', 'replyCallback', 'showEdit', 'cancelEdit', 'editCallback'].forEach(methodName => {this[methodName] = this[methodName].bind(this)});
this.state = {
showReply: false,
showEdit: false
};
}
showReply(event) {
event.preventDefault();
this.setState({showReply: true});
}
cancelReply(event) {
event.preventDefault();
this.setState({showReply: false});
}
replyCallback() {
this.setState({showReply: false});
}
showEdit(event) {
event.preventDefault();
this.setState({showEdit: true});
}
cancelEdit(event) {
event.preventDefault();
this.setState({showEdit: false});
}
editCallback() {
this.setState({showEdit: false});
}
renderComment() {
const htmlBody = {__html: this.props.comment.htmlBody};
return (
<div className="comment-text">
<div dangerouslySetInnerHTML={htmlBody}></div>
<a className="comment-reply-link" href="#" onClick={this.showReply}><Icon name="reply"/> Reply</a>
</div>
)
}
renderReply() {
({CommentNew} = Telescope.components);
return (
<div className="comment-reply">
<CommentNew postId={this.props.comment.postId} parentComment={this.props.comment} submitCallback={this.replyCallback} cancelCallback={this.cancelReply} type="reply" />
</div>
)
}
renderEdit() {
({CommentEdit} = Telescope.components);
return (
<CommentEdit comment={this.props.comment} submitCallback={this.editCallback} cancelCallback={this.cancelEdit}/>
)
}
render() {
({UserAvatar} = Telescope.components);
const comment = this.props.comment;
return (
<div className="comment-item">
<div className="comment-body">
<div className="comment-meta">
<UserAvatar size="small" user={comment.user}/>
<UserName user={comment.user}/>
<div className="comment-date">{moment(comment.postedAt).fromNow()}</div>
{Users.can.edit(this.props.currentUser, this.props.comment) ? <a className="comment-edit" href="#" onClick={this.showEdit}>Edit</a> : null}
</div>
{this.state.showEdit ? this.renderEdit() : this.renderComment()}
</div>
{this.state.showReply ? this.renderReply() : null}
</div>
)
}
}
CommentItem.propTypes = {
comment: React.PropTypes.object.isRequired, // the current comment
currentUser: React.PropTypes.object, // the current user
}
module.exports = CommentItem;