Vulcan/packages/nova-components/lib/posts/Post.jsx
2016-02-18 17:53:04 +09:00

34 lines
No EOL
872 B
JavaScript

const Post = (props) => {
({ListContainer, CommentList, CommentNew} = Telescope.components);
const htmlBody = {__html: props.htmlBody};
return (
<div className="post">
<h3>{props.title}</h3>
<p>{props.commentCount} comments</p>
<p>{moment(props.postedAt).fromNow()}</p>
<div dangerouslySetInnerHTML={htmlBody}></div>
<div className="comments-thread">
<h4>Comments</h4>
<ListContainer
collection={Comments}
publication="comments.list"
selector={{postId: props._id}}
terms={{postId: props._id, view: "postComments"}}
component={CommentList}
limit={0}
parentProperty="parentCommentId"
/>
<h4>New Comment:</h4>
<CommentNew type="comment" postId={props._id}/>
</div>
</div>
)
}
module.exports = Post;