mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
93 lines
No EOL
3.1 KiB
JavaScript
93 lines
No EOL
3.1 KiB
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React, { PropTypes, Component } from 'react';
|
|
import { FormattedMessage, FormattedRelative } from 'react-intl';
|
|
import { Button } from 'react-bootstrap';
|
|
import moment from 'moment';
|
|
import { ModalTrigger } from "meteor/nova:core";
|
|
import { Link } from 'react-router';
|
|
import Posts from "meteor/nova:posts";
|
|
import Users from 'meteor/nova:users';
|
|
|
|
class PostsItem extends Component {
|
|
|
|
renderCategories() {
|
|
return this.props.post.categories && this.props.post.categories.length > 0 ? <Telescope.components.PostsCategories post={this.props.post} /> : "";
|
|
}
|
|
|
|
renderCommenters() {
|
|
return this.props.post.commenters && this.props.post.commenters.length > 0 ? <Telescope.components.PostsCommenters post={this.props.post}/> : "";
|
|
}
|
|
|
|
renderActions() {
|
|
return (
|
|
<div className="post-actions">
|
|
<Telescope.components.CanDo
|
|
action="posts.edit.all"
|
|
document={this.props.post}
|
|
>
|
|
<ModalTrigger title="Edit Post" component={<a className="posts-action-edit"><FormattedMessage id="posts.edit"/></a>}>
|
|
<Telescope.components.PostsEditForm
|
|
post={this.props.post}
|
|
/>
|
|
</ModalTrigger>
|
|
</Telescope.components.CanDo>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
render() {
|
|
|
|
const {post} = this.props;
|
|
|
|
let postClass = "posts-item";
|
|
if (post.sticky) postClass += " posts-sticky";
|
|
|
|
return (
|
|
<div className={postClass}>
|
|
|
|
<div className="posts-item-vote">
|
|
<Telescope.components.VoteContainer component={Telescope.components.Vote} post={post}/>
|
|
</div>
|
|
|
|
{post.thumbnailUrl ? <Telescope.components.PostsThumbnail post={post}/> : null}
|
|
|
|
<div className="posts-item-content">
|
|
|
|
<h3 className="posts-item-title">
|
|
<Link to={Posts.getLink(post)} className="posts-item-title-link" target={Posts.getLinkTarget(post)}>
|
|
{post.title}
|
|
</Link>
|
|
{this.renderCategories()}
|
|
</h3>
|
|
|
|
<div className="posts-item-meta">
|
|
{post.user? <div className="posts-item-user"><Telescope.components.UsersAvatar user={post.user} size="small"/><Telescope.components.UsersName user={post.user}/></div> : null}
|
|
<div className="posts-item-date">{post.postedAt ? <FormattedRelative value={post.postedAt}/> : <FormattedMessage id="posts.dateNotDefined"/>}</div>
|
|
<div className="posts-item-comments">
|
|
<Link to={Posts.getPageUrl(post)}>
|
|
<FormattedMessage id="comments.count" values={{count: post.commentCount}}/>
|
|
</Link>
|
|
</div>
|
|
{this.context.currentUser && this.context.currentUser.isAdmin ? <Telescope.components.PostsStats post={post} /> : null}
|
|
{this.renderActions()}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{this.renderCommenters()}
|
|
|
|
</div>
|
|
)
|
|
}
|
|
};
|
|
|
|
PostsItem.propTypes = {
|
|
post: React.PropTypes.object.isRequired
|
|
}
|
|
|
|
PostsItem.contextTypes = {
|
|
currentUser: React.PropTypes.object
|
|
};
|
|
|
|
module.exports = PostsItem;
|
|
export default PostsItem; |