mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
30 lines
No EOL
1,002 B
JavaScript
30 lines
No EOL
1,002 B
JavaScript
import { Components, registerComponent, getRawComponent } from 'meteor/nova:core';
|
|
import React, { PropTypes, Component } from 'react';
|
|
import SmartForm from "meteor/nova:forms";
|
|
import Comments from "meteor/nova:comments";
|
|
import { withMessages } from 'meteor/nova:core';
|
|
|
|
const CommentsEditForm = (props, context) => {
|
|
return (
|
|
<div className="comments-edit-form">
|
|
<SmartForm
|
|
layout="elementOnly"
|
|
collection={Comments}
|
|
documentId={props.comment._id}
|
|
successCallback={props.successCallback}
|
|
cancelCallback={props.cancelCallback}
|
|
removeSuccessCallback={props.removeSuccessCallback}
|
|
showRemove={true}
|
|
mutationFragment={getRawComponent('PostsCommentsThread').fragment}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
CommentsEditForm.propTypes = {
|
|
comment: React.PropTypes.object.isRequired,
|
|
successCallback: React.PropTypes.func,
|
|
cancelCallback: React.PropTypes.func
|
|
};
|
|
|
|
registerComponent('CommentsEditForm', CommentsEditForm, withMessages); |