Vulcan/packages/nova-base-components/lib/containers/PostsNewFormContainer.jsx

132 lines
3.2 KiB
React
Raw Normal View History

import Telescope from 'meteor/nova:lib';
import React, { PropTypes, Component } from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import NovaForm from "meteor/nova:forms";
import { withRouter } from 'react-router'
import { graphql } from 'react-apollo';
import gql from 'graphql-tag';
import update from 'immutability-helper';
const PostsNewFormContainer = (props, context) => {
const Component = props.component;
2016-11-04 14:14:19 +01:00
return <Component router={props.router} novaFormMutation={props.novaFormMutation} flash={props.flash} />
}
PostsNewFormContainer.propTypes = {
router: React.PropTypes.object,
novaFormMutation: React.PropTypes.func,
component: React.PropTypes.func,
};
PostsNewFormContainer.displayName = "PostsNewFormContainer";
const mapStateToProps = state => ({ messages: state.messages });
const mapDispatchToProps = dispatch => bindActionCreators(Telescope.actions.messages, dispatch);
const PostsNewFormContainerWithMutation = graphql(gql`
mutation postsNew($post: PostInput) {
postsNew(post: $post) {
_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
# }
# }
# }
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
}
}
}
}
`, {
props: ({ownProps, mutate}) => ({
novaFormMutation: ({document}) => {
// const optimisticResponseItem = {
// ...document,
// title: "optimisitc!",
// __typename: 'Post',
// id: 123,
// slug: 'foo'
// }
// console.log(document)
// console.log(optimisticResponseItem)
return mutate({
variables: {post: document},
// optimisticResponse: {
// __typename: 'Mutation',
// postsNew: optimisticResponseItem,
// },
updateQueries: {
getPostsView: (prev, { mutationResult }) => {
const newPost = mutationResult.data.postsNew;
const newList = update(prev, {
posts: {
$unshift: [newPost],
},
postsViewTotal: {
$set: prev.postsViewTotal + 1
}
});
return newList;
},
}
})
}
}),
})(PostsNewFormContainer);
module.exports = withRouter(connect(mapStateToProps, mapDispatchToProps)(PostsNewFormContainerWithMutation));