woocommerce/plugins/woocommerce-blocks/assets/js/blocks/checkout/inner-blocks/checkout-collection-method-.../frontend.tsx

98 lines
2.1 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 { useDispatch, useSelect } from '@wordpress/data';
import { CHECKOUT_STORE_KEY } from '@woocommerce/block-data';
import { useShippingData } from '@woocommerce/base-context/hooks';
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,
showPrice,
showIcon,
shippingText,
localPickupText,
2022-10-04 12:02:28 +00:00
}: {
title: string;
description: string;
showStepNumber: boolean;
children: JSX.Element;
className?: string;
showPrice: boolean;
showIcon: boolean;
shippingText: string;
localPickupText: string;
2022-10-04 12:02:28 +00:00
} ) => {
const { checkoutIsProcessing, prefersCollection } = useSelect(
( select ) => {
const checkoutStore = select( CHECKOUT_STORE_KEY );
return {
checkoutIsProcessing: checkoutStore.isProcessing(),
prefersCollection: checkoutStore.prefersCollection(),
};
}
);
const { setPrefersCollection } = useDispatch( CHECKOUT_STORE_KEY );
const {
shippingRates,
needsShipping,
hasCalculatedShipping,
isCollectable,
} = useShippingData();
if (
! needsShipping ||
! hasCalculatedShipping ||
! shippingRates ||
! isCollectable
) {
return null;
}
2022-10-04 12:02:28 +00:00
const onChange = ( method: string ) => {
if ( method === 'pickup' ) {
setPrefersCollection( true );
} else {
setPrefersCollection( false );
}
};
2022-10-04 12:02:28 +00:00
return (
<FormStep
id="collection-method"
disabled={ checkoutIsProcessing }
className={ classnames(
'wc-block-checkout__collection-method',
className
) }
title={ title }
description={ description }
showStepNumber={ showStepNumber }
>
<Block
checked={ prefersCollection ? 'pickup' : 'shipping' }
onChange={ onChange }
showPrice={ showPrice }
showIcon={ showIcon }
localPickupText={ localPickupText }
shippingText={ shippingText }
2022-10-04 12:02:28 +00:00
/>
{ children }
</FormStep>
);
};
export default withFilteredAttributes( attributes )( FrontendBlock );