2017-03-23 16:27:59 +09:00
|
|
|
import { Components, registerComponent, getFragment, withMessages } from 'meteor/vulcan:core';
|
2017-05-19 14:42:43 -06:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-03-23 16:27:59 +09:00
|
|
|
import Comments from "meteor/vulcan:comments";
|
2017-06-01 11:42:30 +09:00
|
|
|
import { FormattedMessage } from 'meteor/vulcan:i18n';
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-11-05 18:42:57 +09:00
|
|
|
const CommentsNewForm = (props, context) => {
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-11-05 18:42:57 +09:00
|
|
|
let prefilledProps = {postId: props.postId};
|
2016-02-23 16:49:56 +09:00
|
|
|
|
2016-11-05 18:42:57 +09:00
|
|
|
if (props.parentComment) {
|
|
|
|
prefilledProps = Object.assign(prefilledProps, {
|
|
|
|
parentCommentId: props.parentComment._id,
|
|
|
|
// if parent comment has a topLevelCommentId use it; if it doesn't then it *is* the top level comment
|
|
|
|
topLevelCommentId: props.parentComment.topLevelCommentId || props.parentComment._id
|
|
|
|
});
|
|
|
|
}
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-11-05 18:42:57 +09:00
|
|
|
return (
|
2017-01-18 12:51:10 +01:00
|
|
|
<Components.ShowIf
|
2016-12-01 16:09:54 +09:00
|
|
|
check={Comments.options.mutations.new.check}
|
|
|
|
failureComponent={<FormattedMessage id="users.cannot_comment"/>}
|
2016-11-05 18:42:57 +09:00
|
|
|
>
|
2016-04-19 15:45:36 +09:00
|
|
|
<div className="comments-new-form">
|
2017-01-18 12:51:10 +01:00
|
|
|
<Components.SmartForm
|
2016-11-07 23:46:12 +09:00
|
|
|
collection={Comments}
|
2017-01-30 19:46:48 +09:00
|
|
|
mutationFragment={getFragment('CommentsList')}
|
2016-11-09 21:54:56 +09:00
|
|
|
successCallback={props.successCallback}
|
2016-11-07 23:46:12 +09:00
|
|
|
cancelCallback={props.type === "reply" ? props.cancelCallback : null}
|
2016-04-03 20:58:11 +09:00
|
|
|
prefilledProps={prefilledProps}
|
2016-04-08 10:29:32 +09:00
|
|
|
layout="elementOnly"
|
2016-02-18 17:53:04 +09:00
|
|
|
/>
|
2016-04-03 20:58:11 +09:00
|
|
|
</div>
|
2017-01-18 12:51:10 +01:00
|
|
|
</Components.ShowIf>
|
2016-11-05 18:42:57 +09:00
|
|
|
)
|
2016-02-18 17:53:04 +09:00
|
|
|
|
2016-03-17 17:48:25 +09:00
|
|
|
};
|
|
|
|
|
2016-11-05 18:37:46 +09:00
|
|
|
CommentsNewForm.propTypes = {
|
2017-05-19 14:42:43 -06:00
|
|
|
postId: PropTypes.string.isRequired,
|
|
|
|
type: PropTypes.string, // "comment" or "reply"
|
|
|
|
parentComment: PropTypes.object, // if reply, the comment being replied to
|
|
|
|
parentCommentId: PropTypes.string, // if reply
|
|
|
|
topLevelCommentId: PropTypes.string, // if reply
|
|
|
|
successCallback: PropTypes.func, // a callback to execute when the submission has been successful
|
|
|
|
cancelCallback: PropTypes.func,
|
|
|
|
router: PropTypes.object,
|
|
|
|
flash: PropTypes.func,
|
2016-11-15 18:33:16 +01:00
|
|
|
};
|
2016-04-03 20:58:11 +09:00
|
|
|
|
2016-12-08 09:42:50 +01:00
|
|
|
registerComponent('CommentsNewForm', CommentsNewForm, withMessages);
|