import { Components, registerComponent } from 'meteor/nova:lib'; import NovaForm 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' import { FormattedMessage } from 'react-intl'; const PostsNewForm = (props, context) => { return ( } >
{ props.router.push({pathname: Posts.getPageUrl(post)}); context.closeCallback(); props.flash(context.intl.formatMessage({id: "posts.created_message"}), "success"); }} />
); }; PostsNewForm.propTypes = { router: React.PropTypes.object, flash: React.PropTypes.func, } PostsNewForm.contextTypes = { closeCallback: React.PropTypes.func, intl: intlShape }; PostsNewForm.displayName = "PostsNewForm"; registerComponent('PostsNewForm', PostsNewForm, withRouter, withMessages);