Vulcan/packages/base-components/lib/posts/list/PostItem.jsx

49 lines
1.4 KiB
React
Raw Normal View History

2016-02-18 21:53:44 +09:00
const PostItem = React.createClass({
2016-02-17 17:22:32 +09:00
2016-02-18 21:53:44 +09:00
propTypes: {
post: React.PropTypes.object.isRequired, // the current comment
currentUser: React.PropTypes.object, // the current user
},
renderCategories() {
({PostCategories} = Telescope.components);
return this.props.post.categoriesArray ? <PostCategories categories={this.props.post.categoriesArray} /> : "";
},
renderCommenters() {
2016-02-19 10:12:08 +09:00
({PostCommenters} = Telescope.components);
2016-02-18 21:53:44 +09:00
2016-02-19 10:12:08 +09:00
return this.props.post.commentersArray ? <PostCommenters commenters={this.props.post.commentersArray}/> : "";
2016-02-18 21:53:44 +09:00
},
renderActions() {
return (
2016-02-19 10:12:08 +09:00
<div className="post-actions">
{Users.can.edit(this.props.currentUser, this.props.post) ? <a href={Posts.getEditUrl(this.props.post)} className="button button--secondary">Edit</a> : ""}
</div>
2016-02-18 21:53:44 +09:00
)
},
render() {
const post = this.props.post;
return (
2016-02-19 18:38:39 +09:00
<div className="post-item">
2016-02-18 21:53:44 +09:00
<h3 className="post-title"><a href={Posts.getLink(post)} target={Posts.getLinkTarget(post)}>{post.title}</a></h3>
<p><a href={Users.getProfileUrl(post.user)}>{Users.getDisplayName(post.user)}</a>, {moment(post.postedAt).fromNow()}, {post.commentCount} comments</p>
2016-02-18 21:53:44 +09:00
{this.renderCategories()}
{this.renderCommenters()}
{this.renderActions()}
</div>
)
}
});
module.exports = PostItem;