Vulcan/packages/nova-base-components/lib/posts/PostsNewForm.jsx
2017-01-13 15:48:00 +09:00

43 lines
No EOL
1.3 KiB
JavaScript

import { Components, registerComponent, getRawComponent } from 'meteor/nova:core';
import SmartForm from "meteor/nova:forms";
import { ShowIf, withMessages } from 'meteor/nova:core';
import Posts from "meteor/nova:posts";
import React, { PropTypes, Component } from 'react';
import { intlShape } from 'react-intl';
import { withRouter } from 'react-router'
const PostsNewForm = (props, context) => {
return (
<ShowIf
check={Posts.options.mutations.new.check}
failureComponent={<Components.UsersAccountForm />}
>
<div className="posts-new-form">
<SmartForm
collection={Posts}
mutationFragment={getRawComponent('PostsPage').fragment}
successCallback={post => {
props.closeModal();
// props.router.push({pathname: Posts.getPageUrl(post)});
props.flash(context.intl.formatMessage({id: "posts.created_message"}), "success");
}}
/>
</div>
</ShowIf>
);
};
PostsNewForm.propTypes = {
closeModal: React.PropTypes.func,
router: React.PropTypes.object,
flash: React.PropTypes.func,
}
PostsNewForm.contextTypes = {
closeCallback: React.PropTypes.func,
intl: intlShape
};
PostsNewForm.displayName = "PostsNewForm";
registerComponent('PostsNewForm', PostsNewForm, withRouter, withMessages);