38 lines
836 B
TypeScript
38 lines
836 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import classnames from 'classnames';
|
|
import { SidebarLayout } from '@woocommerce/base-components/sidebar-layout';
|
|
import { useStoreCart } from '@woocommerce/base-context/hooks';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { useCartBlockContext } from '../../context';
|
|
|
|
const FrontendBlock = ( {
|
|
children,
|
|
className,
|
|
}: {
|
|
children: JSX.Element | JSX.Element[];
|
|
className: string;
|
|
} ): JSX.Element | null => {
|
|
const { cartItems, cartIsLoading } = useStoreCart();
|
|
const { hasDarkControls } = useCartBlockContext();
|
|
|
|
if ( cartIsLoading || cartItems.length >= 1 ) {
|
|
return (
|
|
<SidebarLayout
|
|
className={ classnames( 'wc-block-cart', className, {
|
|
'has-dark-controls': hasDarkControls,
|
|
} ) }
|
|
>
|
|
{ children }
|
|
</SidebarLayout>
|
|
);
|
|
}
|
|
return null;
|
|
};
|
|
|
|
export default FrontendBlock;
|