woocommerce/plugins/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-pickup-options-block/frontend.tsx

62 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-10-04 12:02:28 +00:00
/**
* External dependencies
*/
import classnames from 'classnames';
import { withFilteredAttributes } from '@woocommerce/shared-hocs';
import { FormStep } from '@woocommerce/base-components/cart-checkout';
import { useSelect } from '@wordpress/data';
2022-10-04 12:02:28 +00:00
import { CHECKOUT_STORE_KEY } from '@woocommerce/block-data';
import { LOCAL_PICKUP_ENABLED } from '@woocommerce/block-settings';
2022-10-04 12:02:28 +00:00
/**
* Internal dependencies
*/
import Block from './block';
import attributes from './attributes';
const FrontendBlock = ( {
title,
description,
showStepNumber,
children,
className,
}: {
title: string;
description: string;
showStepNumber: boolean;
children: JSX.Element;
className?: string;
} ) => {
const { checkoutIsProcessing, prefersCollection } = useSelect(
( select ) => {
const checkoutStore = select( CHECKOUT_STORE_KEY );
return {
checkoutIsProcessing: checkoutStore.isProcessing(),
prefersCollection: checkoutStore.prefersCollection(),
};
}
);
if ( ! prefersCollection || ! LOCAL_PICKUP_ENABLED ) {
return null;
}
2022-10-04 12:02:28 +00:00
return (
<FormStep
id="pickup-options"
2022-10-04 12:02:28 +00:00
disabled={ checkoutIsProcessing }
className={ classnames(
'wc-block-checkout__pickup-options',
2022-10-04 12:02:28 +00:00
className
) }
title={ title }
description={ description }
showStepNumber={ showStepNumber }
>
<Block />
2022-10-04 12:02:28 +00:00
{ children }
</FormStep>
);
};
export default withFilteredAttributes( attributes )( FrontendBlock );