63 lines
1.5 KiB
TypeScript
63 lines
1.5 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import classnames from 'classnames';
|
|
import { withFilteredAttributes } from '@woocommerce/shared-hocs';
|
|
import { FormStep } from '@woocommerce/base-components/cart-checkout';
|
|
import { useCheckoutAddress } from '@woocommerce/base-context/hooks';
|
|
import { useSelect } from '@wordpress/data';
|
|
import { CHECKOUT_STORE_KEY } from '@woocommerce/block-data';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import Block from './block';
|
|
import attributes from './attributes';
|
|
|
|
const FrontendBlock = ( {
|
|
title,
|
|
description,
|
|
showStepNumber,
|
|
children,
|
|
className,
|
|
}: {
|
|
title: string;
|
|
description: string;
|
|
requireCompanyField: boolean;
|
|
requirePhoneField: boolean;
|
|
showApartmentField: boolean;
|
|
showCompanyField: boolean;
|
|
showPhoneField: boolean;
|
|
showStepNumber: boolean;
|
|
children: JSX.Element;
|
|
className?: string;
|
|
} ) => {
|
|
const checkoutIsProcessing = useSelect( ( select ) =>
|
|
select( CHECKOUT_STORE_KEY ).isProcessing()
|
|
);
|
|
const { showShippingFields, forcedBillingAddress } = useCheckoutAddress();
|
|
|
|
if ( ! showShippingFields && ! forcedBillingAddress ) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<FormStep
|
|
id="shipping-option"
|
|
disabled={ checkoutIsProcessing }
|
|
className={ classnames(
|
|
'wc-block-checkout__shipping-option',
|
|
className
|
|
) }
|
|
title={ title }
|
|
description={ description }
|
|
showStepNumber={ showStepNumber }
|
|
>
|
|
<Block />
|
|
{ children }
|
|
</FormStep>
|
|
);
|
|
};
|
|
|
|
export default withFilteredAttributes( attributes )( FrontendBlock );
|