Vulcan/packages/nova-forms/lib/FormWithMutation.jsx

101 lines
3.2 KiB
React
Raw Normal View History

2016-11-08 14:56:48 +09:00
/*
This component wraps FormWrapper with a mutation that submits the form.
The mutation can either be one that inserts a new document, or one
that updates an existing document.
*/
2016-11-07 17:45:17 +09:00
import Telescope from 'meteor/nova:lib';
import React, { PropTypes, Component } from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
import { graphql } from 'react-apollo';
import gql from 'graphql-tag';
import update from 'immutability-helper';
import FormWrapper from './FormWrapper.jsx';
// const mapStateToProps = state => ({ messages: state.messages });
// const mapDispatchToProps = dispatch => bindActionCreators(Telescope.actions.messages, dispatch);
2016-11-08 14:56:48 +09:00
2016-11-07 17:45:17 +09:00
const FormWithMutation = props => {
let ComponentWithMutation;
const collectionName = props.collection._name;
2016-11-07 17:45:17 +09:00
// create new component by wrapping FormWrapper with mutation
if (props.document) {
// edit document mutation
ComponentWithMutation = graphql(gql`
mutation ${props.mutationName}($documentId: String, $set: ${collectionName}Input, $unset: ${collectionName}Unset) {
${props.mutationName}(documentId: $documentId, set: $set, unset: $unset) {
${props.fragment ? `...${props.fragment[0].name.value}` : props.resultQuery}
}
2016-11-07 17:45:17 +09:00
}
`, {
options: (props) => props.fragment ? {fragments: props.fragment} : {},
props: ({ownProps, mutate}) => ({
mutation: ({documentId, set, unset}) => {
return mutate({
variables: {documentId: documentId, set, unset}
})
}
}),
})(FormWrapper);
} else {
// new document mutation
ComponentWithMutation = graphql(gql`
2016-11-07 22:48:37 +09:00
mutation ${props.mutationName}($document: ${collectionName}Input) {
${props.mutationName}(document: $document) {
${props.fragment ? `...${props.fragment[0].name.value}` : props.resultQuery}
}
2016-11-07 17:45:17 +09:00
}
`, {
options: (props) => props.fragment ? {fragments: props.fragment} : {},
props: ({ownProps, mutate}) => ({
mutation: ({document}) => {
return mutate({
variables: {document: document},
2016-11-08 14:56:48 +09:00
updateQueries: props.updateQueries // needed for new document form only
})
}
}),
})(FormWrapper);
}
2016-11-07 17:45:17 +09:00
const {mutationName, updateQueries, ...rest} = props;
return <ComponentWithMutation {...rest} />
};
FormWithMutation.propTypes = {
2016-11-08 14:56:48 +09:00
// main options
2016-11-07 17:45:17 +09:00
collection: React.PropTypes.object,
document: React.PropTypes.object, // if a document is passed, this will be an edit form
2016-11-08 14:56:48 +09:00
schema: React.PropTypes.object, // usually not needed
// graphQL
mutationName: React.PropTypes.string, // the mutation name
resultQuery: React.PropTypes.string, // the results to get back
updateQueries: React.PropTypes.object, // how to update queries
// form
2016-11-07 17:45:17 +09:00
labelFunction: React.PropTypes.func,
prefilledProps: React.PropTypes.object,
layout: React.PropTypes.string,
2016-11-08 14:56:48 +09:00
fields: React.PropTypes.arrayOf(React.PropTypes.string),
// callbacks
submitCallback: React.PropTypes.func,
successCallback: React.PropTypes.func,
errorCallback: React.PropTypes.func,
2016-11-07 17:45:17 +09:00
cancelCallback: React.PropTypes.func,
2016-11-08 14:56:48 +09:00
2016-11-07 17:45:17 +09:00
}
module.exports = FormWithMutation;