/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Component } from 'react';
import PropTypes from 'prop-types';
import { Disabled } from '@wordpress/components';
import { ENABLE_REVIEW_RATING } from '@woocommerce/settings';
/**
* Internal dependencies
*/
import ApiErrorPlaceholder from '../../components/api-error-placeholder';
import LoadMoreButton from '../../base/components/load-more-button';
import ReviewList from '../../base/components/review-list';
import ReviewOrderSelect from '../../base/components/review-order-select';
import withComponentId from '../../base/hocs/with-component-id';
import withReviews from '../../base/hocs/with-reviews';
/**
* Block rendered in the editor.
*/
class EditorBlock extends Component {
static propTypes = {
/**
* The attributes for this block.
*/
attributes: PropTypes.object.isRequired,
// from withComponentId
componentId: PropTypes.number,
// from withReviews
reviews: PropTypes.array,
totalReviews: PropTypes.number,
}
render() {
const { attributes, componentId, error, isLoading, noReviewsPlaceholder: NoReviewsPlaceholder, reviews, totalReviews } = this.props;
if ( error ) {
return (
);
}
if ( 0 === reviews.length && ! isLoading ) {
return ;
}
return (
{ ( attributes.showOrderby && ENABLE_REVIEW_RATING ) && (
) }
{ ( attributes.showLoadMore && totalReviews > reviews.length ) && (
) }
);
}
}
export default withComponentId( withReviews( EditorBlock ) );