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() {
|
2016-02-25 21:05:53 +09:00
|
|
|
|
2016-03-02 13:54:58 +09:00
|
|
|
({ModalButton, DocumentContainer, EditDocContainer} = Telescope.components);
|
2016-02-25 21:32:13 +09:00
|
|
|
|
|
|
|
const component = (
|
|
|
|
<ModalButton label="Edit" className="button button--secondary">
|
2016-02-27 10:58:57 +09:00
|
|
|
<EditDocContainer collection={Posts} document={this.props.post} label="Edit Post" methodName="posts.edit"/>
|
2016-02-25 21:32:13 +09:00
|
|
|
</ModalButton>
|
|
|
|
);
|
2016-02-25 21:05:53 +09:00
|
|
|
|
2016-02-18 21:53:44 +09:00
|
|
|
return (
|
2016-02-19 10:12:08 +09:00
|
|
|
<div className="post-actions">
|
2016-02-25 21:32:13 +09:00
|
|
|
{Users.can.edit(this.props.currentUser, this.props.post) ? component : ""}
|
2016-02-19 10:12:08 +09:00
|
|
|
</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>
|
2016-02-23 21:35:54 +09:00
|
|
|
<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>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
});
|
2016-02-15 22:33:44 +09:00
|
|
|
|
|
|
|
module.exports = PostItem;
|