75 lines
1.7 KiB
JavaScript
75 lines
1.7 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Disabled } from '@wordpress/components';
|
|
import { REVIEW_RATINGS_ENABLED } from '@woocommerce/block-settings';
|
|
import ErrorPlaceholder from '@woocommerce/block-components/error-placeholder';
|
|
import LoadMoreButton from '@woocommerce/base-components/load-more-button';
|
|
import {
|
|
ReviewList,
|
|
ReviewSortSelect,
|
|
} from '@woocommerce/base-components/reviews';
|
|
import withReviews from '@woocommerce/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() {
|
|
const {
|
|
attributes,
|
|
error,
|
|
isLoading,
|
|
noReviewsPlaceholder: NoReviewsPlaceholder,
|
|
reviews,
|
|
totalReviews,
|
|
} = this.props;
|
|
|
|
if ( error ) {
|
|
return (
|
|
<ErrorPlaceholder
|
|
className="wc-block-featured-product-error"
|
|
error={ error }
|
|
isLoading={ isLoading }
|
|
/>
|
|
);
|
|
}
|
|
|
|
if ( reviews.length === 0 && ! isLoading ) {
|
|
return <NoReviewsPlaceholder attributes={ attributes } />;
|
|
}
|
|
|
|
return (
|
|
<Disabled>
|
|
{ attributes.showOrderby && REVIEW_RATINGS_ENABLED && (
|
|
<ReviewSortSelect readOnly value={ attributes.orderby } />
|
|
) }
|
|
<ReviewList attributes={ attributes } reviews={ reviews } />
|
|
{ attributes.showLoadMore && totalReviews > reviews.length && (
|
|
<LoadMoreButton
|
|
screenReaderLabel={ __(
|
|
'Load more reviews',
|
|
'woo-gutenberg-products-block'
|
|
) }
|
|
/>
|
|
) }
|
|
</Disabled>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withReviews( EditorBlock );
|