/** * External dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { InnerBlocks } from '@wordpress/block-editor'; import { SHOP_URL } from '@woocommerce/block-settings'; import PropTypes from 'prop-types'; /** * Internal dependencies */ import iconDataUri from './icon-data-uri.js'; import './style.scss'; const templateItemBrowseStore = SHOP_URL ? [ 'core/paragraph', { align: 'center', content: sprintf( /* translators: %s is the link to the store product directory. */ __( 'Browse store.', 'woo-gutenberg-products-block' ), SHOP_URL ), dropCap: false, }, ] : null; const templateItems = [ [ 'core/image', { align: 'center', url: iconDataUri, sizeSlug: 'small', }, ], [ 'core/heading', { align: 'center', content: __( 'Your cart is currently empty!', 'woo-gutenberg-products-block' ), level: 2, className: 'wc-block-cart__empty-cart__title', }, ], templateItemBrowseStore, [ 'core/separator', { className: 'is-style-dots', }, ], [ 'core/heading', { align: 'center', content: __( 'New in store', 'woo-gutenberg-products-block' ), level: 2, }, ], [ 'woocommerce/product-new', { columns: 3, rows: 1, }, ], ].filter( Boolean ); /** * Component to handle edit mode for the Cart block when cart is empty. * * @param {Object} props Incoming props for the component. * @param {boolean} props.hidden Whether this component is hidden or not. */ const EmptyCartEdit = ( { hidden = false } ) => { return ( ); }; EmptyCartEdit.propTypes = { hidden: PropTypes.bool, }; export default EmptyCartEdit;