2016-03-17 17:48:25 +09:00
|
|
|
import React, { PropTypes, Component } from 'react';
|
2016-04-04 10:21:18 +09:00
|
|
|
import NovaForm from "meteor/nova:forms";
|
2016-06-23 12:17:39 +09:00
|
|
|
import Comments from "meteor/nova:comments";
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-04-14 10:12:35 +09:00
|
|
|
class CommentsNew extends Component {
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-04-03 20:58:11 +09:00
|
|
|
render() {
|
2016-02-23 16:49:56 +09:00
|
|
|
|
2016-04-03 20:58:11 +09:00
|
|
|
let prefilledProps = {postId: this.props.postId};
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-04-03 20:58:11 +09:00
|
|
|
if (this.props.parentComment) {
|
|
|
|
prefilledProps = Object.assign(prefilledProps, {
|
|
|
|
parentCommentId: this.props.parentComment._id,
|
2016-02-23 16:49:56 +09:00
|
|
|
// if parent comment has a topLevelCommentId use it; if it doesn't then it *is* the top level comment
|
2016-04-03 20:58:11 +09:00
|
|
|
topLevelCommentId: this.props.parentComment.topLevelCommentId || this.props.parentComment._id
|
|
|
|
});
|
2016-02-23 16:49:56 +09:00
|
|
|
}
|
2016-02-18 17:53:04 +09:00
|
|
|
|
|
|
|
return (
|
2016-04-19 15:45:36 +09:00
|
|
|
<div className="comments-new-form">
|
2016-04-04 10:21:18 +09:00
|
|
|
<NovaForm
|
2016-04-03 20:58:11 +09:00
|
|
|
collection={Comments}
|
|
|
|
currentUser={this.context.currentUser}
|
|
|
|
methodName="comments.new"
|
|
|
|
prefilledProps={prefilledProps}
|
2016-04-04 10:21:18 +09:00
|
|
|
successCallback={this.props.successCallback}
|
2016-04-08 10:29:32 +09:00
|
|
|
layout="elementOnly"
|
|
|
|
cancelCallback={this.props.type === "reply" ? this.props.cancelCallback : null}
|
2016-02-18 17:53:04 +09:00
|
|
|
/>
|
2016-04-03 20:58:11 +09:00
|
|
|
</div>
|
2016-02-18 17:53:04 +09:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-03-17 17:48:25 +09:00
|
|
|
};
|
|
|
|
|
2016-04-14 10:12:35 +09:00
|
|
|
CommentsNew.propTypes = {
|
2016-03-17 17:48:25 +09:00
|
|
|
postId: React.PropTypes.string.isRequired,
|
|
|
|
type: React.PropTypes.string, // "comment" or "reply"
|
|
|
|
parentComment: React.PropTypes.object, // if reply, the comment being replied to
|
|
|
|
parentCommentId: React.PropTypes.string, // if reply
|
2016-03-25 12:17:29 +09:00
|
|
|
topLevelCommentId: React.PropTypes.string, // if reply
|
2016-04-04 10:21:18 +09:00
|
|
|
successCallback: React.PropTypes.func, // a callback to execute when the submission has been successful
|
2016-03-25 12:17:29 +09:00
|
|
|
cancelCallback: React.PropTypes.func
|
2016-03-17 17:48:25 +09:00
|
|
|
}
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-04-14 10:12:35 +09:00
|
|
|
CommentsNew.contextTypes = {
|
2016-04-03 20:58:11 +09:00
|
|
|
currentUser: React.PropTypes.object
|
|
|
|
}
|
|
|
|
|
2016-04-14 10:12:35 +09:00
|
|
|
module.exports = CommentsNew;
|