/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { addQueryArgs } from '@wordpress/url'; import apiFetch from '@wordpress/api-fetch'; import { InspectorControls } from '@wordpress/editor'; import { Component, Fragment } from '@wordpress/element'; import { debounce } from 'lodash'; import Gridicon from 'gridicons'; import { PanelBody, Placeholder, Spinner } from '@wordpress/components'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import getQuery from '../../utils/get-query'; import GridLayoutControl from '../../components/grid-layout-control'; import ProductCategoryControl from '../../components/product-category-control'; import ProductPreview from '../../components/product-preview'; /** * Component to handle edit mode of "Best Selling Products". */ class ProductBestSellersBlock extends Component { constructor() { super( ...arguments ); this.state = { products: [], loaded: false, }; this.debouncedGetProducts = debounce( this.getProducts.bind( this ), 200 ); } componentDidMount() { this.getProducts(); } componentDidUpdate( prevProps ) { const hasChange = [ 'categories', 'catOperator', 'columns', 'rows' ].reduce( ( acc, key ) => { return acc || prevProps.attributes[ key ] !== this.props.attributes[ key ]; }, false ); if ( hasChange ) { this.debouncedGetProducts(); } } getProducts() { apiFetch( { path: addQueryArgs( '/wc-pb/v3/products', getQuery( this.props.attributes, this.props.name ) ), } ) .then( ( products ) => { this.setState( { products, loaded: true } ); } ) .catch( () => { this.setState( { products: [], loaded: true } ); } ); } getInspectorControls() { const { attributes, setAttributes } = this.props; const { categories, catOperator, columns, rows } = attributes; return ( { const ids = value.map( ( { id } ) => id ); setAttributes( { categories: ids } ); } } operator={ catOperator } onOperatorChange={ ( value = 'any' ) => setAttributes( { catOperator: value } ) } /> ); } render() { const { columns } = this.props.attributes; const { loaded, products } = this.state; const classes = [ 'wc-block-products-grid', 'wc-block-best-selling-products', ]; if ( columns ) { classes.push( `cols-${ columns }` ); } if ( products && ! products.length ) { if ( ! loaded ) { classes.push( 'is-loading' ); } else { classes.push( 'is-not-found' ); } } return ( { this.getInspectorControls() }
{ products.length ? ( products.map( ( product ) => ( ) ) ) : ( } label={ __( 'Best Selling Products', 'woo-gutenberg-products-block' ) } > { ! loaded ? ( ) : ( __( 'No products found.', 'woo-gutenberg-products-block' ) ) } ) }
); } } ProductBestSellersBlock.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 ProductBestSellersBlock;