2019-12-03 14:12:46 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { registerBlockType } from '@wordpress/blocks';
|
2020-01-31 18:20:33 +00:00
|
|
|
import { Icon, card } from '@woocommerce/icons';
|
2019-12-03 14:12:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import edit from './edit';
|
|
|
|
import { example } from './example';
|
2019-12-06 13:18:55 +00:00
|
|
|
import './editor.scss';
|
2019-12-03 14:12:46 +00:00
|
|
|
|
|
|
|
registerBlockType( 'woocommerce/checkout', {
|
|
|
|
title: __( 'Checkout', 'woo-gutenberg-products-block' ),
|
|
|
|
icon: {
|
2020-01-31 18:20:33 +00:00
|
|
|
src: <Icon srcElement={ card } />,
|
|
|
|
foreground: '#96588a',
|
2019-12-03 14:12:46 +00:00
|
|
|
},
|
|
|
|
category: 'woocommerce',
|
|
|
|
keywords: [ __( 'WooCommerce', 'woo-gutenberg-products-block' ) ],
|
|
|
|
description: __(
|
|
|
|
'Display the checkout experience for customers.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
),
|
2019-12-16 13:27:17 +00:00
|
|
|
supports: {
|
|
|
|
align: [ 'wide', 'full' ],
|
|
|
|
html: false,
|
|
|
|
multiple: false,
|
|
|
|
},
|
2019-12-03 14:12:46 +00:00
|
|
|
example,
|
|
|
|
attributes: {
|
|
|
|
/**
|
|
|
|
* Are we previewing?
|
|
|
|
*/
|
|
|
|
isPreview: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
edit,
|
|
|
|
/**
|
|
|
|
* Save the props to post content.
|
|
|
|
*/
|
|
|
|
save( { attributes } ) {
|
|
|
|
const { className } = attributes;
|
|
|
|
return (
|
|
|
|
<div className={ className }>
|
|
|
|
Checkout block coming soon to store near you
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
} );
|