mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
127 lines
No EOL
2.6 KiB
JavaScript
127 lines
No EOL
2.6 KiB
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React, { PropTypes, Component } from 'react';
|
|
import Posts from "meteor/nova:posts";
|
|
|
|
import { graphql } from 'react-apollo';
|
|
import gql from 'graphql-tag';
|
|
|
|
class PostsSingleContainer extends Component {
|
|
|
|
getChildContext() {
|
|
return {
|
|
refetchPostsSingleQuery: this.props.data.refetch
|
|
};
|
|
}
|
|
|
|
render() {
|
|
|
|
console.log(this.props)
|
|
|
|
const {loading, post, refetch} = this.props.data;
|
|
const Component = this.props.component
|
|
|
|
return loading ? <Telescope.components.Loading/> : <Component
|
|
document={post}
|
|
refetchQuery={refetch}
|
|
{...this.props.componentProps}
|
|
/>;
|
|
}
|
|
};
|
|
|
|
PostsSingleContainer.propTypes = {
|
|
data: React.PropTypes.shape({
|
|
loading: React.PropTypes.bool,
|
|
post: React.PropTypes.object,
|
|
}).isRequired,
|
|
params: React.PropTypes.object
|
|
};
|
|
|
|
PostsSingleContainer.childContextTypes = {
|
|
refetchPostsSingleQuery: React.PropTypes.func
|
|
};
|
|
|
|
PostsSingleContainer.contextTypes = {
|
|
currentUser: React.PropTypes.object
|
|
};
|
|
|
|
PostsSingleContainer.displayName = "PostsSingleContainer";
|
|
|
|
// this query is really too big 💥...🚂
|
|
const PostsSingleContainerWithData = graphql(gql`
|
|
query getPost($postId: String) {
|
|
post(_id: $postId) {
|
|
_id
|
|
title
|
|
url
|
|
slug
|
|
body
|
|
htmlBody
|
|
thumbnailUrl
|
|
baseScore
|
|
postedAt
|
|
sticky
|
|
status
|
|
categories {
|
|
_id
|
|
name
|
|
slug
|
|
}
|
|
commentCount
|
|
comments {
|
|
_id
|
|
# note: currently not used in PostsCommentsThread
|
|
# parentComment {
|
|
# htmlBody
|
|
# postedAt
|
|
# user {
|
|
# _id
|
|
# telescope {
|
|
# slug
|
|
# emailHash # used for the avatar
|
|
# }
|
|
# }
|
|
# }
|
|
postId
|
|
parentCommentId
|
|
topLevelCommentId
|
|
htmlBody
|
|
postedAt
|
|
user {
|
|
_id
|
|
telescope {
|
|
slug
|
|
emailHash # used for the avatar
|
|
}
|
|
}
|
|
}
|
|
upvoters {
|
|
_id
|
|
}
|
|
downvoters {
|
|
_id
|
|
}
|
|
upvotes # should be asked only for admins?
|
|
score # should be asked only for admins?
|
|
viewCount # should be asked only for admins?
|
|
clickCount # should be asked only for admins?
|
|
user {
|
|
_id
|
|
telescope {
|
|
displayName
|
|
slug
|
|
emailHash
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
`, {
|
|
options(ownProps) {
|
|
return {
|
|
variables: { postId: ownProps.postId },
|
|
// pollInterval: 20000,
|
|
};
|
|
},
|
|
})(PostsSingleContainer);
|
|
|
|
module.exports = PostsSingleContainerWithData; |