mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 13:06:41 -04:00
51 lines
No EOL
1.3 KiB
JavaScript
51 lines
No EOL
1.3 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 {
|
|
// render() {
|
|
// const {loading, post, refetch} = this.props.data;
|
|
// const Component = this.props.component
|
|
|
|
// return loading ? <Telescope.components.Loading/> : <Component
|
|
// document={post}
|
|
// {...this.props.componentProps}
|
|
// />;
|
|
// }
|
|
// };
|
|
|
|
// PostsSingleContainer.propTypes = {
|
|
// data: React.PropTypes.shape({
|
|
// loading: React.PropTypes.bool,
|
|
// post: React.PropTypes.object,
|
|
// }).isRequired,
|
|
// params: React.PropTypes.object
|
|
// };
|
|
|
|
// 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) {
|
|
// ${Posts.graphQLQueries.single}
|
|
// }
|
|
// }
|
|
|
|
// `, {
|
|
// options(ownProps) {
|
|
// return {
|
|
// variables: { postId: ownProps.postId },
|
|
// // pollInterval: 20000,
|
|
// };
|
|
// },
|
|
// })(PostsSingleContainer);
|
|
|
|
// module.exports = PostsSingleContainerWithData;
|