/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { registerBlockType } from '@wordpress/blocks'; import { RawHTML } from '@wordpress/element'; /** * Internal dependencies */ import Block from './block'; import getShortcode from '../../utils/get-shortcode'; import { IconNewReleases } from '../../components/icons'; import sharedAttributes from '../../utils/shared-attributes'; registerBlockType( 'woocommerce/product-new', { title: __( 'Newest Products', 'woo-gutenberg-products-block' ), icon: , category: 'woocommerce', keywords: [ __( 'WooCommerce', 'woo-gutenberg-products-block' ) ], description: __( 'Display a grid of your newest products.', 'woo-gutenberg-products-block' ), supports: { align: [ 'wide', 'full' ], }, attributes: { ...sharedAttributes, }, /** * Renders and manages the block. */ edit( props ) { return ; }, /** * Save the block content in the post content. Block content is saved as a products shortcode. * * @return string */ save( props ) { const { align, } = props.attributes; /* eslint-disable-line react/prop-types */ return ( { getShortcode( props, 'woocommerce/product-new' ) } ); }, } );