woocommerce/plugins/woocommerce-blocks/assets/js/blocks/product-top-rated/block.js

171 lines
4.1 KiB
JavaScript
Raw Normal View History

2018-12-14 19:45:19 +00:00
/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { addQueryArgs } from '@wordpress/url';
import apiFetch from '@wordpress/api-fetch';
import { InspectorControls } from '@wordpress/editor';
2018-12-14 19:45:19 +00:00
import { Component, Fragment } from '@wordpress/element';
import { debounce } from 'lodash';
2018-12-14 19:45:19 +00:00
import Gridicon from 'gridicons';
import {
PanelBody,
Placeholder,
RangeControl,
Spinner,
} from '@wordpress/components';
import PropTypes from 'prop-types';
/**
* Internal dependencies
*/
import getQuery from '../../utils/get-query';
import ProductCategoryControl from '../../components/product-category-control';
import ProductPreview from '../../components/product-preview';
2018-12-14 19:45:19 +00:00
/**
* Component to handle edit mode of "Top Rated Products".
*/
class ProductTopRatedBlock extends Component {
constructor() {
super( ...arguments );
this.state = {
products: [],
loaded: false,
};
this.debouncedGetProducts = debounce( this.getProducts.bind( this ), 200 );
2018-12-14 19:45:19 +00:00
}
componentDidMount() {
if ( this.props.attributes.categories ) {
this.getProducts();
}
}
componentDidUpdate( prevProps ) {
const hasChange = [ 'rows', 'columns', 'categories' ].reduce( ( acc, key ) => {
return acc || prevProps.attributes[ key ] !== this.props.attributes[ key ];
}, false );
if ( hasChange ) {
this.debouncedGetProducts();
2018-12-14 19:45:19 +00:00
}
}
getProducts() {
apiFetch( {
path: addQueryArgs(
'/wc-pb/v3/products',
getQuery( this.props.attributes, this.props.name )
),
2018-12-14 19:45:19 +00:00
} )
.then( ( products ) => {
this.setState( { products, loaded: true } );
} )
.catch( () => {
this.setState( { products: [], loaded: true } );
} );
}
getInspectorControls() {
const { attributes, setAttributes } = this.props;
const { columns, rows } = attributes;
return (
<InspectorControls key="inspector">
<PanelBody
title={ __( 'Layout', 'woo-gutenberg-products-block' ) }
initialOpen
>
<RangeControl
label={ __( 'Columns', 'woo-gutenberg-products-block' ) }
value={ columns }
onChange={ ( value ) => setAttributes( { columns: value } ) }
min={ wc_product_block_data.min_columns }
max={ wc_product_block_data.max_columns }
/>
<RangeControl
label={ __( 'Rows', 'woo-gutenberg-products-block' ) }
value={ rows }
onChange={ ( value ) => setAttributes( { rows: value } ) }
min={ wc_product_block_data.min_rows }
max={ wc_product_block_data.max_rows }
/>
</PanelBody>
<PanelBody
title={ __(
'Filter by Product Category',
'woo-gutenberg-products-block'
) }
initialOpen={ false }
>
<ProductCategoryControl
selected={ attributes.categories }
onChange={ ( value = [] ) => {
const ids = value.map( ( { id } ) => id );
setAttributes( { categories: ids } );
} }
/>
</PanelBody>
</InspectorControls>
);
}
render() {
const { columns } = this.props.attributes;
2018-12-14 19:45:19 +00:00
const { loaded, products } = this.state;
const classes = [ 'wc-block-products-grid', 'wc-block-top-rated-products' ];
if ( columns ) {
classes.push( `cols-${ columns }` );
}
if ( products && ! products.length ) {
if ( ! loaded ) {
classes.push( 'is-loading' );
} else {
classes.push( 'is-not-found' );
}
}
return (
<Fragment>
{ this.getInspectorControls() }
<div className={ classes.join( ' ' ) }>
{ products.length ? (
products.map( ( product ) => (
<ProductPreview product={ product } key={ product.id } />
) )
) : (
<Placeholder
icon={ <Gridicon icon="trophy" /> }
label={ __( 'Top Rated Products', 'woo-gutenberg-products-block' ) }
2018-12-14 19:45:19 +00:00
>
{ ! loaded ? (
<Spinner />
) : (
__( 'No products found.', 'woo-gutenberg-products-block' )
) }
</Placeholder>
) }
</div>
</Fragment>
);
}
}
ProductTopRatedBlock.propTypes = {
/**
* The attributes for this block
*/
attributes: PropTypes.object.isRequired,
/**
* The register block name.
*/
name: PropTypes.string.isRequired,
/**
* A callback to update attributes
*/
setAttributes: PropTypes.func.isRequired,
};
export default ProductTopRatedBlock;