/** * External dependencies */ import { useEffect } from '@wordpress/element'; import { withProduct } from '@woocommerce/block-hocs'; import { InnerBlockLayoutContextProvider, ProductDataContextProvider, } from '@woocommerce/shared-context'; import { StoreNoticesProvider, StoreNoticesContainer, } from '@woocommerce/base-context'; import { useStoreEvents } from '@woocommerce/base-context/hooks'; /** * Internal dependencies */ import { BLOCK_NAME } from './constants'; /** @typedef {import('react')} React */ /** * The Single Product Block. * * @param {Object} props Incoming props for the component. * @param {boolean} props.isLoading * @param {Object} props.product * @param {React.ReactChildren} props.children */ const Block = ( { isLoading, product, children } ) => { const { dispatchStoreEvent } = useStoreEvents(); const className = 'wc-block-single-product wc-block-layout'; const noticeContext = `woocommerce/single-product/${ product?.id || 0 }`; useEffect( () => { dispatchStoreEvent( 'product-render', { product, listName: BLOCK_NAME, } ); }, [ product, dispatchStoreEvent ] ); return (
{ children }
); }; export default withProduct( Block );