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

151 lines
3.2 KiB
TypeScript

/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { useShippingData } from '@woocommerce/base-context/hooks';
import {
__experimentalRadio as Radio,
__experimentalRadioGroup as RadioGroup,
} from 'wordpress-components';
import classnames from 'classnames';
import { Icon, store, shipping } from '@wordpress/icons';
/**
* Internal dependencies
*/
import './style.scss';
import { RatePrice, getLocalPickupPrices, getShippingPrices } from './shared';
import type { minMaxPrices } from './shared';
const LocalPickupSelector = ( {
checked,
rate,
showPrice,
showIcon,
toggleText,
}: {
checked: string;
rate: minMaxPrices;
showPrice: boolean;
showIcon: boolean;
toggleText: string;
} ) => {
return (
<Radio
value="pickup"
className={ classnames( 'wc-block-checkout__collection-item', {
'wc-block-checkout__collection-item--selected':
checked === 'pickup',
} ) }
>
{ showIcon === true && (
<Icon
icon={ store }
size={ 28 }
className="wc-block-checkout__collection-item-icon"
/>
) }
<span className="wc-block-checkout__collection-item-title">
{ toggleText }
</span>
{ showPrice === true && (
<RatePrice minRate={ rate.min } maxRate={ rate.max } />
) }
</Radio>
);
};
const ShippingSelector = ( {
checked,
rate,
showPrice,
showIcon,
toggleText,
}: {
checked: string;
rate: minMaxPrices;
showPrice: boolean;
showIcon: boolean;
toggleText: string;
} ) => {
const Price =
rate.min === undefined ? (
<span className="wc-block-checkout__collection-item-price">
{ __(
'calculated with an address',
'woo-gutenberg-products-block'
) }
</span>
) : (
<RatePrice minRate={ rate.min } maxRate={ rate.max } />
);
return (
<Radio
value="shipping"
className={ classnames( 'wc-block-checkout__collection-item', {
'wc-block-checkout__collection-item--selected':
checked === 'shipping',
} ) }
>
{ showIcon === true && (
<Icon
icon={ shipping }
size={ 28 }
className="wc-block-checkout__collection-item-icon"
/>
) }
<span className="wc-block-checkout__collection-item-title">
{ toggleText }
</span>
{ showPrice === true && Price }
</Radio>
);
};
const Block = ( {
checked,
onChange,
showPrice,
showIcon,
localPickupText,
shippingText,
}: {
checked: string;
onChange: ( value: string ) => void;
showPrice: boolean;
showIcon: boolean;
localPickupText: string;
shippingText: string;
} ): JSX.Element | null => {
const { shippingRates } = useShippingData();
return (
<RadioGroup
id="collection-method"
className="wc-block-checkout__collection-method-container"
label="options"
onChange={ onChange }
checked={ checked }
>
<ShippingSelector
checked={ checked }
rate={ getShippingPrices( shippingRates[ 0 ]?.shipping_rates ) }
showPrice={ showPrice }
showIcon={ showIcon }
toggleText={ shippingText }
/>
<LocalPickupSelector
checked={ checked }
rate={ getLocalPickupPrices(
shippingRates[ 0 ]?.shipping_rates
) }
showPrice={ showPrice }
showIcon={ showIcon }
toggleText={ localPickupText }
/>
</RadioGroup>
);
};
export default Block;