import { get } from 'lodash'; import PropTypes from 'prop-types'; import { useState } from 'react'; import PostCommentForm from './form'; import './post-comment.scss'; // intentional, shares styles import './post-comment-with-error.scss'; function PostCommentWithError( { activeReplyCommentId, commentId, commentsTree, post, repliesList, } ) { const commentParentId = get( commentsTree, [ commentId, 'data', 'parent', 'ID' ], null ); const commentText = get( commentsTree, [ commentId, 'data', 'content' ] ); const placeholderError = get( commentsTree, [ commentId, 'data', 'placeholderError' ] ); const placeholderErrorType = get( commentsTree, [ commentId, 'data', 'placeholderErrorType' ] ); const [ comment, setComment ] = useState( commentText ); if ( activeReplyCommentId !== commentParentId ) { return null; } return (
  • { repliesList }
  • ); } PostCommentWithError.propTypes = { commentId: PropTypes.oneOfType( [ PropTypes.string, PropTypes.number ] ).isRequired, commentsTree: PropTypes.object.isRequired, onUpdateCommentText: PropTypes.func.isRequired, post: PropTypes.object.isRequired, repliesList: PropTypes.object, }; export default PostCommentWithError;