2019-08-23 14:48:48 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { Disabled } from '@wordpress/components';
|
2019-08-27 15:25:32 +00:00
|
|
|
import { ENABLE_REVIEW_RATING } from '@woocommerce/block-settings';
|
2019-08-23 14:48:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
2019-08-27 09:38:41 +00:00
|
|
|
import ApiErrorPlaceholder from '../../components/api-error-placeholder';
|
2019-08-23 14:48:48 +00:00
|
|
|
import LoadMoreButton from '../../base/components/load-more-button';
|
|
|
|
import ReviewList from '../../base/components/review-list';
|
|
|
|
import ReviewOrderSelect from '../../base/components/review-order-select';
|
|
|
|
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 withReviews
|
|
|
|
reviews: PropTypes.array,
|
|
|
|
totalReviews: PropTypes.number,
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-08-27 10:24:50 +00:00
|
|
|
const { attributes, error, isLoading, noReviewsPlaceholder: NoReviewsPlaceholder, reviews, totalReviews } = this.props;
|
2019-08-27 09:38:41 +00:00
|
|
|
|
|
|
|
if ( error ) {
|
|
|
|
return (
|
|
|
|
<ApiErrorPlaceholder
|
|
|
|
className="wc-block-featured-product-error"
|
|
|
|
error={ error }
|
|
|
|
isLoading={ isLoading }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
2019-08-23 14:48:48 +00:00
|
|
|
|
|
|
|
if ( 0 === reviews.length && ! isLoading ) {
|
|
|
|
return <NoReviewsPlaceholder attributes={ attributes } />;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Disabled>
|
|
|
|
{ ( attributes.showOrderby && ENABLE_REVIEW_RATING ) && (
|
|
|
|
<ReviewOrderSelect
|
|
|
|
readOnly
|
|
|
|
value={ attributes.orderby }
|
|
|
|
/>
|
|
|
|
) }
|
|
|
|
<ReviewList
|
|
|
|
attributes={ attributes }
|
|
|
|
reviews={ reviews }
|
|
|
|
/>
|
|
|
|
{ ( attributes.showLoadMore && totalReviews > reviews.length ) && (
|
|
|
|
<LoadMoreButton
|
|
|
|
screenReaderLabel={ __( 'Load more reviews', 'woo-gutenberg-products-block' ) }
|
|
|
|
/>
|
|
|
|
) }
|
|
|
|
</Disabled>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-27 10:24:50 +00:00
|
|
|
export default withReviews( EditorBlock );
|