36 lines
997 B
TypeScript
36 lines
997 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { renderFrontend } from '@woocommerce/base-utils';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import FrontendContainerBlock from './frontend-container-block';
|
|
|
|
const selector = `
|
|
.wp-block-woocommerce-all-reviews,
|
|
.wp-block-woocommerce-reviews-by-product,
|
|
.wp-block-woocommerce-reviews-by-category
|
|
`;
|
|
|
|
const getProps = ( el: HTMLElement ) => {
|
|
const showOrderby = el.dataset.showOrderby === 'true';
|
|
const showLoadMore = el.dataset.showLoadMore === 'true';
|
|
|
|
return {
|
|
attributes: {
|
|
showOrderby,
|
|
showLoadMore,
|
|
showReviewDate: el.classList.contains( 'has-date' ),
|
|
showReviewerName: el.classList.contains( 'has-name' ),
|
|
showReviewImage: el.classList.contains( 'has-image' ),
|
|
showReviewRating: el.classList.contains( 'has-rating' ),
|
|
showReviewContent: el.classList.contains( 'has-content' ),
|
|
showProductName: el.classList.contains( 'has-product-name' ),
|
|
},
|
|
};
|
|
};
|
|
|
|
renderFrontend( { selector, Block: FrontendContainerBlock, getProps } );
|