Vulcan/packages/nova-base-components/lib/comments/CommentsEdit.jsx
2016-04-14 10:12:35 +09:00

35 lines
No EOL
852 B
JavaScript

import React, { PropTypes, Component } from 'react';
import Actions from '../actions.js';
import NovaForm from "meteor/nova:forms";
class CommentsEdit extends Component {
render() {
return (
<div className="comment-edit-form">
<NovaForm
collection={Comments}
document={this.props.comment}
currentUser={this.context.currentUser}
methodName="comments.edit"
successCallback={this.props.successCallback}
layout="elementOnly"
cancelCallback={this.props.cancelCallback}
/>
</div>
)
}
}
CommentsEdit.propTypes = {
comment: React.PropTypes.object.isRequired,
successCallback: React.PropTypes.func,
cancelCallback: React.PropTypes.func
}
CommentsEdit.contextTypes = {
currentUser: React.PropTypes.object
}
module.exports = CommentsEdit;