mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
58 lines
No EOL
1.6 KiB
JavaScript
58 lines
No EOL
1.6 KiB
JavaScript
const PostItem = React.createClass({
|
|
|
|
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() {
|
|
|
|
({PostCommenters} = Telescope.components);
|
|
|
|
return this.props.post.commentersArray ? <PostCommenters commenters={this.props.post.commentersArray}/> : "";
|
|
},
|
|
|
|
renderActions() {
|
|
|
|
({ModalButton, ItemContainer, EditDocContainer} = Telescope.components);
|
|
|
|
const component = (
|
|
<ModalButton label="Edit" className="button button--secondary">
|
|
<EditDocContainer collection={Posts} document={this.props.post} label="Edit Post" methodName="posts.edit"/>
|
|
</ModalButton>
|
|
);
|
|
|
|
return (
|
|
<div className="post-actions">
|
|
{Users.can.edit(this.props.currentUser, this.props.post) ? component : ""}
|
|
</div>
|
|
)
|
|
},
|
|
|
|
render() {
|
|
|
|
const post = this.props.post;
|
|
|
|
return (
|
|
<div className="post-item">
|
|
|
|
<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>
|
|
|
|
{this.renderCategories()}
|
|
{this.renderCommenters()}
|
|
{this.renderActions()}
|
|
|
|
</div>
|
|
)
|
|
}
|
|
});
|
|
|
|
module.exports = PostItem; |