Vulcan/packages/nova-base-components/lib/posts/PostsNewForm.jsx
SachaG f82e458302 Merge branch 'devel' of https://github.com/TelescopeJS/Telescope into devel
# Conflicts:
#	packages/nova-base-components/package.js
#	packages/nova-posts/package.js
2017-02-16 23:11:47 +09:00

41 lines
1.2 KiB
JavaScript

import { Components, registerComponent, getRawComponent, getFragment, 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 (
<Components.ShowIf
check={Posts.options.mutations.new.check}
failureComponent={<Components.UsersAccountForm />}
>
<div className="posts-new-form">
<Components.SmartForm
collection={Posts}
mutationFragment={getFragment('PostsPage')}
successCallback={post => {
props.closeModal();
props.router.push({pathname: Posts.getPageUrl(post)});
props.flash(context.intl.formatMessage({id: "posts.created_message"}), "success");
}}
/>
</div>
</Components.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);