119 lines
2.7 KiB
JavaScript
119 lines
2.7 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { registerBlockComponent } from '@woocommerce/blocks-registry';
|
|
import { lazy } from '@wordpress/element';
|
|
import { WC_BLOCKS_BUILD_URL } from '@woocommerce/block-settings';
|
|
|
|
// Modify webpack publicPath at runtime based on location of WordPress Plugin.
|
|
// eslint-disable-next-line no-undef,camelcase
|
|
__webpack_public_path__ = WC_BLOCKS_BUILD_URL;
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-price',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-price" */ './product-elements/price/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-image',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-image" */ './product-elements/image/frontend'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-title',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-title" */ './product-elements/title/frontend'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-rating',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-rating" */ './product-elements/rating/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-button',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-button" */ './product-elements/button/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-summary',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-summary" */ './product-elements/summary/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-sale-badge',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-sale-badge" */ './product-elements/sale-badge/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-sku',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-sku" */ './product-elements/sku/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-category-list',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-category-list" */ './product-elements/category-list/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-tag-list',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-tag-list" */ './product-elements/tag-list/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-stock-indicator',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-stock-indicator" */ './product-elements/stock-indicator/block'
|
|
)
|
|
),
|
|
} );
|
|
|
|
registerBlockComponent( {
|
|
blockName: 'woocommerce/product-add-to-cart',
|
|
component: lazy( () =>
|
|
import(
|
|
/* webpackChunkName: "product-add-to-cart" */ './product-elements/add-to-cart/frontend'
|
|
)
|
|
),
|
|
} );
|