63 lines
1.4 KiB
JavaScript
63 lines
1.4 KiB
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { __ } from '@wordpress/i18n';
|
||
|
import Gridicon from 'gridicons';
|
||
|
import { registerBlockType } from '@wordpress/blocks';
|
||
|
import { RawHTML } from '@wordpress/element';
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import Block from './block';
|
||
|
import getShortcode from '../../utils/get-shortcode';
|
||
|
import sharedAttributes from '../../utils/shared-attributes';
|
||
|
|
||
|
registerBlockType( 'woocommerce/product-on-sale', {
|
||
|
title: __( 'On Sale Products', 'woo-gutenberg-products-block' ),
|
||
|
icon: <Gridicon icon="tag" />,
|
||
|
category: 'woocommerce',
|
||
|
keywords: [ __( 'WooCommerce', 'woo-gutenberg-products-block' ) ],
|
||
|
description: __(
|
||
|
'Display a grid of on sale products.',
|
||
|
'woo-gutenberg-products-block'
|
||
|
),
|
||
|
supports: {
|
||
|
align: [ 'wide', 'full' ],
|
||
|
},
|
||
|
attributes: {
|
||
|
...sharedAttributes,
|
||
|
|
||
|
/**
|
||
|
* How to order the products: 'date', 'popularity', 'price_asc', 'price_desc' 'rating', 'title'.
|
||
|
*/
|
||
|
orderby: {
|
||
|
type: 'string',
|
||
|
default: 'date',
|
||
|
},
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* Renders and manages the block.
|
||
|
*/
|
||
|
edit( props ) {
|
||
|
return <Block { ...props } />;
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 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 (
|
||
|
<RawHTML className={ align ? `align${ align }` : '' }>
|
||
|
{ getShortcode( props, 'woocommerce/product-on-sale' ) }
|
||
|
</RawHTML>
|
||
|
);
|
||
|
},
|
||
|
} );
|