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';
|
2022-10-18 16:31:06 +00:00
|
|
|
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,
|
2022-10-05 10:54:48 +00:00
|
|
|
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;
|
2022-10-05 10:54:48 +00:00
|
|
|
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 );
|
2022-10-18 16:31:06 +00:00
|
|
|
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-18 16:31:06 +00:00
|
|
|
|
2022-10-04 12:02:28 +00:00
|
|
|
return (
|
|
|
|
<FormStep
|
2022-10-20 10:48:46 +00:00
|
|
|
id="shipping-method"
|
2022-10-04 12:02:28 +00:00
|
|
|
disabled={ checkoutIsProcessing }
|
|
|
|
className={ classnames(
|
2022-10-20 10:48:46 +00:00
|
|
|
'wc-block-checkout__shipping-method',
|
2022-10-04 12:02:28 +00:00
|
|
|
className
|
|
|
|
) }
|
|
|
|
title={ title }
|
|
|
|
description={ description }
|
|
|
|
showStepNumber={ showStepNumber }
|
|
|
|
>
|
|
|
|
<Block
|
|
|
|
checked={ prefersCollection ? 'pickup' : 'shipping' }
|
|
|
|
onChange={ onChange }
|
|
|
|
showPrice={ showPrice }
|
|
|
|
showIcon={ showIcon }
|
2022-10-05 10:54:48 +00:00
|
|
|
localPickupText={ localPickupText }
|
|
|
|
shippingText={ shippingText }
|
2022-10-04 12:02:28 +00:00
|
|
|
/>
|
|
|
|
{ children }
|
|
|
|
</FormStep>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default withFilteredAttributes( attributes )( FrontendBlock );
|