91 lines
2.3 KiB
JavaScript
91 lines
2.3 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { CART_STORE_KEY as storeKey } from '@woocommerce/block-data';
|
|
import { dispatch } from '@wordpress/data';
|
|
import { useStoreCart } from '@woocommerce/base-context/hooks';
|
|
import { useEffect, RawHTML } from '@wordpress/element';
|
|
import LoadingMask from '@woocommerce/base-components/loading-mask';
|
|
import { ValidationContextProvider } from '@woocommerce/base-context';
|
|
import {
|
|
dispatchEvent,
|
|
translateJQueryEventToNative,
|
|
} from '@woocommerce/base-utils';
|
|
import withScrollToTop from '@woocommerce/base-hocs/with-scroll-to-top';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import FullCart from './full-cart';
|
|
|
|
const EmptyCart = ( { content } ) => {
|
|
useEffect( () => {
|
|
dispatchEvent( 'wc-blocks_render_blocks_frontend', {
|
|
element: document.body.querySelector(
|
|
'.wp-block-woocommerce-cart'
|
|
),
|
|
} );
|
|
}, [] );
|
|
return <RawHTML>{ content }</RawHTML>;
|
|
};
|
|
|
|
const Block = ( { emptyCart, attributes, scrollToTop } ) => {
|
|
const { cartItems, cartIsLoading } = useStoreCart();
|
|
|
|
useEffect( () => {
|
|
const invalidateCartData = () => {
|
|
dispatch( storeKey ).invalidateResolutionForStore();
|
|
scrollToTop();
|
|
};
|
|
|
|
// Make it so we can read jQuery events triggered by WC Core elements.
|
|
const removeJQueryAddedToCartEvent = translateJQueryEventToNative(
|
|
'added_to_cart',
|
|
'wc-blocks_added_to_cart'
|
|
);
|
|
const removeJQueryRemovedFromCartEvent = translateJQueryEventToNative(
|
|
'removed_from_cart',
|
|
'wc-blocks_removed_from_cart'
|
|
);
|
|
|
|
document.body.addEventListener(
|
|
'wc-blocks_added_to_cart',
|
|
invalidateCartData
|
|
);
|
|
document.body.addEventListener(
|
|
'wc-blocks_removed_from_cart',
|
|
invalidateCartData
|
|
);
|
|
|
|
return () => {
|
|
removeJQueryAddedToCartEvent();
|
|
removeJQueryRemovedFromCartEvent();
|
|
|
|
document.body.removeEventListener(
|
|
'wc-blocks_added_to_cart',
|
|
invalidateCartData
|
|
);
|
|
document.body.removeEventListener(
|
|
'wc-blocks_removed_from_cart',
|
|
invalidateCartData
|
|
);
|
|
};
|
|
}, [ scrollToTop ] );
|
|
|
|
return (
|
|
<>
|
|
{ ! cartIsLoading && cartItems.length === 0 ? (
|
|
<EmptyCart content={ emptyCart } />
|
|
) : (
|
|
<LoadingMask showSpinner={ true } isLoading={ cartIsLoading }>
|
|
<ValidationContextProvider>
|
|
<FullCart attributes={ attributes } />
|
|
</ValidationContextProvider>
|
|
</LoadingMask>
|
|
) }
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default withScrollToTop( Block );
|