File size: 6,596 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
import { Button, FormInputValidation } from '@automattic/components';
import clsx from 'clsx';
import { localize, useTranslate } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import GravatarWithHovercards from 'calypso/components/gravatar-with-hovercards';
import { ProtectFormGuard } from 'calypso/lib/protect-form';
import { recordAction, recordGaEvent, recordTrackForPost } from 'calypso/reader/stats';
import { writeComment, deleteComment, replyComment } from 'calypso/state/comments/actions';
import { getCurrentUser, isUserLoggedIn } from 'calypso/state/current-user/selectors';
import { registerLastActionRequiresLogin } from 'calypso/state/reader-ui/actions';
import AutoresizingFormTextarea from './autoresizing-form-textarea';
import './form.scss';
const noop = () => {};
function PostCommentFormError( { type } ) {
const translate = useTranslate();
const message =
type === 'comment_duplicate'
? translate( "Duplicate comment detected. It looks like you've already said that!" )
: translate( 'Sorry - there was a problem posting your comment.' );
return <FormInputValidation isError text={ message } />;
}
class PostCommentForm extends Component {
state = {
haveFocus: false,
};
handleKeyDown = ( event ) => {
// Use Ctrl+Enter to submit comment
if ( event.keyCode === 13 && ( event.ctrlKey || event.metaKey ) ) {
event.preventDefault();
this.submit();
}
// Use ESC to remove the erroneous comment placeholder and just start over
if ( event.keyCode === 27 ) {
if ( this.props.placeholderId ) {
// sync the text to the upper level so it won't be lost
this.props.onUpdateCommentText( this.getCommentText() );
// remove the comment
this.props.deleteComment(
this.props.post.site_ID,
this.props.post.ID,
this.props.placeholderId
);
}
}
};
handleFocus = () => {
this.setState( { haveFocus: true } );
};
handleTextChange = ( event ) => {
if ( ! this.props.isLoggedIn ) {
return this.props.registerLastActionRequiresLogin( {
type: 'comment',
siteId: this.props.post.site_ID,
postId: this.props.post.ID,
commentId: this.props.placeholderId,
} );
}
// Update the comment text in the container's state
this.props.onUpdateCommentText( event.target.value );
};
handleSubmit = ( event ) => {
event.preventDefault();
const post = this.props.post;
const commentText = this.getCommentText().trim();
if ( ! commentText ) {
this.resetCommentText(); // Clean up any newlines
return false;
}
// Do not submit form if the user is not logged in
if ( ! this.props.isLoggedIn ) {
return this.props.registerLastActionRequiresLogin( {
type: 'comment-submit',
siteId: this.props.post.site_ID,
postId: this.props.post.ID,
commentId: this.props.placeholderId,
commentText: commentText,
} );
}
if ( this.props.placeholderId ) {
this.props.deleteComment( post.site_ID, post.ID, this.props.placeholderId );
}
if ( this.props.parentCommentId ) {
this.props.replyComment( commentText, post.site_ID, post.ID, this.props.parentCommentId );
} else {
this.props.writeComment( commentText, post.site_ID, post.ID );
}
recordAction( 'posted_comment' );
recordGaEvent( 'Clicked Post Comment Button' );
recordTrackForPost( 'calypso_reader_article_commented_on', post, {
parent_post_id: this.props.parentCommentId ? this.props.parentCommentId : undefined,
is_inline_comment: this.props.isInlineComment,
} );
this.resetCommentText();
// Resets the active reply comment in PostCommentList
this.props.onCommentSubmit();
return true;
};
resetCommentText() {
// Update the comment text in the container's state
this.props.onUpdateCommentText( '' );
}
getCommentText() {
return this.props.commentText ?? '';
}
hasCommentText() {
return this.getCommentText().trim().length > 0;
}
render() {
const { post, error, errorType, translate } = this.props;
// Don't display the form if comments are closed
if ( post && post.discussion && post.discussion.comments_open === false ) {
// If we already have some comments, show a 'comments closed message'
if ( post.discussion.comment_count && post.discussion.comment_count > 0 ) {
return <p className="comments__form-closed">{ translate( 'Comments closed.' ) }</p>;
}
return null;
}
const buttonClasses = clsx( {
'is-active': this.hasCommentText(),
'is-visible': this.state.haveFocus || this.hasCommentText(),
} );
const isReply = !! this.props.parentCommentId;
// How auto expand works for the textarea is covered in this article:
// http://alistapart.com/article/expanding-text-areas-made-elegant
return (
<form className="comments__form">
<ProtectFormGuard isChanged={ this.hasCommentText() } />
<FormFieldset>
<GravatarWithHovercards user={ this.props.currentUser } />
<AutoresizingFormTextarea
value={ this.getCommentText() }
placeholder={ translate( 'Add a comment…' ) }
onKeyUp={ this.handleKeyUp }
onKeyDown={ this.handleKeyDown }
onFocus={ this.handleFocus }
onBlur={ this.handleBlur }
onChange={ this.handleTextChange }
enableAutoFocus={ isReply }
siteId={ post.site_ID }
/>
<Button
className={ buttonClasses }
disabled={ this.getCommentText().length === 0 }
onClick={ this.handleSubmit }
>
{ this.props.error ? translate( 'Resend' ) : translate( 'Send' ) }
</Button>
{ error && <PostCommentFormError type={ errorType } /> }
</FormFieldset>
</form>
);
}
}
PostCommentForm.propTypes = {
post: PropTypes.object.isRequired,
parentCommentId: PropTypes.number,
placeholderId: PropTypes.string, // can only be 'placeholder-123'
commentText: PropTypes.string,
onUpdateCommentText: PropTypes.func.isRequired,
onCommentSubmit: PropTypes.func,
isInlineComment: PropTypes.bool,
isLogedIn: PropTypes.bool,
// connect()ed props:
currentUser: PropTypes.object,
writeComment: PropTypes.func.isRequired,
deleteComment: PropTypes.func.isRequired,
replyComment: PropTypes.func.isRequired,
};
PostCommentForm.defaultProps = {
commentText: '',
onCommentSubmit: noop,
};
export default connect(
( state ) => ( {
currentUser: getCurrentUser( state ),
isLoggedIn: isUserLoggedIn( state ),
} ),
{ writeComment, deleteComment, replyComment, registerLastActionRequiresLogin }
)( localize( PostCommentForm ) );
|