Vulcan/packages/base-components/lib/posts/PostPage.jsx
2016-03-25 12:17:29 +09:00

39 lines
No EOL
1.1 KiB
JavaScript

const PostPage = ({document, currentUser}) => {
({ListContainer, CommentList, CommentNew, PostItem, PostCategories, SocialShare, Vote, PostStats} = Telescope.components);
const post = document;
const htmlBody = {__html: post.htmlBody};
return (
<div className="post-page">
<PostItem post={post}/>
<div className="post-body" dangerouslySetInnerHTML={htmlBody}></div>
{/*<SocialShare url={ Posts.getLink(post) } title={ post.title }/>*/}
<div className="comments-thread">
<h4 className="comments-thread-title">Comments</h4>
<ListContainer
collection={Comments}
publication="comments.list"
selector={{postId: post._id}}
terms={{postId: post._id, view: "postComments"}}
limit={0}
parentProperty="parentCommentId"
joins={Comments.getJoins()}
><CommentList/></ListContainer>
<div className="post-new-comment">
<h4>New Comment:</h4>
<CommentNew type="comment" postId={post._id} />
</div>
</div>
</div>
)
}
module.exports = PostPage;