/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { addQueryArgs } from '@wordpress/url'; import apiFetch from '@wordpress/api-fetch'; import classnames from 'classnames'; import { Component, Fragment } from '@wordpress/element'; import { debounce } from 'lodash'; import Gridicon from 'gridicons'; import { InspectorControls } from '@wordpress/editor'; import { PanelBody, Placeholder, Spinner } from '@wordpress/components'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import getQuery from '../../utils/get-query'; import GridContentControl from '../../components/grid-content-control'; import GridLayoutControl from '../../components/grid-layout-control'; import ProductCategoryControl from '../../components/product-category-control'; import ProductOrderbyControl from '../../components/product-orderby-control'; import ProductPreview from '../../components/product-preview'; /** * Component to handle edit mode of "On Sale Products". */ class ProductOnSaleBlock 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', 'orderby', 'rows', ].reduce( ( acc, key ) => { return acc || prevProps.attributes[ key ] !== this.props.attributes[ key ]; }, false ); if ( hasChange ) { this.debouncedGetProducts(); } } getProducts() { apiFetch( { path: addQueryArgs( '/wc-blocks/v1/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, contentVisibility, rows, orderby, } = attributes; return ( setAttributes( { contentVisibility: value } ) } /> { const ids = value.map( ( { id } ) => id ); setAttributes( { categories: ids } ); } } operator={ catOperator } onOperatorChange={ ( value = 'any' ) => setAttributes( { catOperator: value } ) } /> ); } render() { const { columns, contentVisibility } = this.props.attributes; const { loaded, products = [] } = this.state; const classes = classnames( { 'wc-block-products-grid': true, 'wc-block-grid': true, 'wc-block-on-sale-products': true, [ `has-${ columns }-columns` ]: columns, 'is-loading': ! loaded, 'is-not-found': loaded && ! products.length, 'is-hidden-title': ! contentVisibility.title, 'is-hidden-price': ! contentVisibility.price, 'is-hidden-rating': ! contentVisibility.rating, 'is-hidden-button': ! contentVisibility.button, } ); return ( { this.getInspectorControls() }
{ products.length ? ( products.map( ( product ) => ( ) ) ) : ( } label={ __( 'On Sale Products', 'woo-gutenberg-products-block' ) } > { ! loaded ? ( ) : ( __( 'No products found.', 'woo-gutenberg-products-block' ) ) } ) }
); } } ProductOnSaleBlock.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 ProductOnSaleBlock;