/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Component } from '@wordpress/element'; import { Disabled, PanelBody, Placeholder } from '@wordpress/components'; import { InspectorControls } from '@wordpress/block-editor'; import ServerSideRender from '@wordpress/server-side-render'; import PropTypes from 'prop-types'; import GridContentControl from '@woocommerce/editor-components/grid-content-control'; import GridLayoutControl from '@woocommerce/editor-components/grid-layout-control'; import ProductCategoryControl from '@woocommerce/editor-components/product-category-control'; import ProductOrderbyControl from '@woocommerce/editor-components/product-orderby-control'; import ProductStockControl from '@woocommerce/editor-components/product-stock-control'; import { gridBlockPreview } from '@woocommerce/resource-previews'; import { Icon, percent } from '@wordpress/icons'; import { getSetting } from '@woocommerce/settings'; const EmptyPlaceholder = () => ( } label={ __( 'On Sale Products', 'woo-gutenberg-products-block' ) } className="wc-block-product-on-sale" > { __( 'This block shows on-sale products. There are currently no discounted products in your store.', 'woo-gutenberg-products-block' ) } ); /** * Component to handle edit mode of "On Sale Products". */ class ProductOnSaleBlock extends Component { getInspectorControls() { const { attributes, setAttributes } = this.props; const { categories, catOperator, columns, contentVisibility, rows, orderby, alignButtons, stockStatus, } = attributes; return ( setAttributes( { contentVisibility: value } ) } /> { const ids = value.map( ( { id } ) => id ); setAttributes( { categories: ids } ); } } operator={ catOperator } onOperatorChange={ ( value = 'any' ) => setAttributes( { catOperator: value } ) } /> ); } render() { const { attributes, name } = this.props; if ( attributes.isPreview ) { return gridBlockPreview; } return ( <> { this.getInspectorControls() } ); } } 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;