2020-05-27 14:45:18 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { Icon, reader } from '@woocommerce/icons';
|
2020-05-29 11:28:04 +00:00
|
|
|
import { getBlockMap } from '@woocommerce/atomic-utils';
|
2020-05-27 14:45:18 +00:00
|
|
|
|
|
|
|
export const BLOCK_NAME = 'woocommerce/single-product';
|
|
|
|
export const BLOCK_TITLE = __(
|
|
|
|
'Single Product',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
);
|
|
|
|
export const BLOCK_ICON = <Icon srcElement={ reader } />;
|
|
|
|
export const BLOCK_DESCRIPTION = __(
|
|
|
|
'Display a single product.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
);
|
2020-05-29 11:28:04 +00:00
|
|
|
|
|
|
|
export const DEFAULT_INNER_BLOCKS = [
|
|
|
|
[
|
|
|
|
'core/columns',
|
|
|
|
{},
|
|
|
|
[
|
|
|
|
[
|
|
|
|
'core/column',
|
|
|
|
{},
|
|
|
|
[ [ 'woocommerce/product-image', { showSaleBadge: false } ] ],
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'core/column',
|
|
|
|
{},
|
|
|
|
[
|
|
|
|
[ 'woocommerce/product-sale-badge' ],
|
2020-06-05 12:18:16 +00:00
|
|
|
[ 'woocommerce/product-title', { headingLevel: 1 } ],
|
2020-05-29 11:28:04 +00:00
|
|
|
[ 'woocommerce/product-rating' ],
|
|
|
|
[ 'woocommerce/product-price' ],
|
|
|
|
[ 'woocommerce/product-summary' ],
|
|
|
|
[ 'woocommerce/product-button' ],
|
2020-06-05 14:36:07 +00:00
|
|
|
[ 'woocommerce/product-sku' ],
|
2020-06-10 15:56:13 +00:00
|
|
|
[ 'woocommerce/product-category-list' ],
|
|
|
|
[ 'woocommerce/product-tag-list' ],
|
2020-05-29 11:28:04 +00:00
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
export const ALLOWED_INNER_BLOCKS = [
|
|
|
|
'core/columns',
|
|
|
|
'core/column',
|
|
|
|
...Object.keys( getBlockMap( BLOCK_NAME ) ),
|
|
|
|
];
|