2022-10-05 10:54:48 +00:00
|
|
|
/* eslint-disable @wordpress/no-unsafe-wp-apis */
|
2022-10-04 12:02:28 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import classnames from 'classnames';
|
|
|
|
import { __ } from '@wordpress/i18n';
|
2022-10-05 10:54:48 +00:00
|
|
|
import {
|
|
|
|
PanelBody,
|
|
|
|
ToggleControl,
|
|
|
|
__experimentalRadio as Radio,
|
|
|
|
__experimentalRadioGroup as RadioGroup,
|
|
|
|
} from '@wordpress/components';
|
|
|
|
import { Icon, store, shipping } from '@wordpress/icons';
|
2022-12-07 13:39:13 +00:00
|
|
|
import { ADMIN_URL } from '@woocommerce/settings';
|
2022-12-09 09:50:08 +00:00
|
|
|
import { LOCAL_PICKUP_ENABLED } from '@woocommerce/block-settings';
|
2022-10-05 10:54:48 +00:00
|
|
|
import {
|
|
|
|
InspectorControls,
|
|
|
|
useBlockProps,
|
|
|
|
RichText,
|
|
|
|
} from '@wordpress/block-editor';
|
|
|
|
import { useShippingData } from '@woocommerce/base-context/hooks';
|
2022-10-04 12:02:28 +00:00
|
|
|
import { innerBlockAreas } from '@woocommerce/blocks-checkout';
|
2022-10-06 12:00:30 +00:00
|
|
|
import { useDispatch, useSelect } from '@wordpress/data';
|
|
|
|
import { CHECKOUT_STORE_KEY } from '@woocommerce/block-data';
|
2022-10-25 13:59:40 +00:00
|
|
|
import ExternalLinkCard from '@woocommerce/editor-components/external-link-card';
|
2023-03-13 11:49:28 +00:00
|
|
|
import { Attributes } from '@woocommerce/blocks/checkout/types';
|
|
|
|
import { updateAttributeInSiblingBlock } from '@woocommerce/utils';
|
2022-10-04 12:02:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import {
|
|
|
|
FormStepBlock,
|
|
|
|
AdditionalFields,
|
|
|
|
AdditionalFieldsContent,
|
|
|
|
} from '../../form-step';
|
2022-10-11 15:46:59 +00:00
|
|
|
import { RatePrice, getLocalPickupPrices, getShippingPrices } from './shared';
|
|
|
|
import type { minMaxPrices } from './shared';
|
2022-10-05 10:54:48 +00:00
|
|
|
import './style.scss';
|
2022-12-22 13:36:25 +00:00
|
|
|
import { defaultShippingText, defaultLocalPickupText } from './constants';
|
2022-10-05 10:54:48 +00:00
|
|
|
|
|
|
|
const LocalPickupSelector = ( {
|
|
|
|
checked,
|
|
|
|
rate,
|
|
|
|
showPrice,
|
|
|
|
showIcon,
|
|
|
|
toggleText,
|
|
|
|
setAttributes,
|
|
|
|
}: {
|
|
|
|
checked: string;
|
2022-10-11 15:46:59 +00:00
|
|
|
rate: minMaxPrices;
|
2022-10-05 10:54:48 +00:00
|
|
|
showPrice: boolean;
|
|
|
|
showIcon: boolean;
|
|
|
|
toggleText: string;
|
|
|
|
setAttributes: ( attributes: Record< string, unknown > ) => void;
|
|
|
|
} ) => {
|
|
|
|
return (
|
|
|
|
<Radio
|
|
|
|
value="pickup"
|
2022-10-20 10:48:46 +00:00
|
|
|
className={ classnames(
|
|
|
|
'wc-block-checkout__shipping-method-option',
|
|
|
|
{
|
|
|
|
'wc-block-checkout__shipping-method-option--selected':
|
|
|
|
checked === 'pickup',
|
|
|
|
}
|
|
|
|
) }
|
2022-10-05 10:54:48 +00:00
|
|
|
>
|
|
|
|
{ showIcon === true && (
|
|
|
|
<Icon
|
|
|
|
icon={ store }
|
|
|
|
size={ 28 }
|
2022-10-20 10:48:46 +00:00
|
|
|
className="wc-block-checkout__shipping-method-option-icon"
|
2022-10-05 10:54:48 +00:00
|
|
|
/>
|
|
|
|
) }
|
|
|
|
<RichText
|
|
|
|
value={ toggleText }
|
2022-12-22 13:36:25 +00:00
|
|
|
placeholder={ defaultLocalPickupText }
|
2022-10-05 10:54:48 +00:00
|
|
|
tagName="span"
|
2022-10-20 10:48:46 +00:00
|
|
|
className="wc-block-checkout__shipping-method-option-title"
|
2022-10-05 10:54:48 +00:00
|
|
|
onChange={ ( value ) =>
|
|
|
|
setAttributes( { localPickupText: value } )
|
|
|
|
}
|
|
|
|
__unstableDisableFormats
|
|
|
|
preserveWhiteSpace
|
|
|
|
/>
|
2022-10-11 15:46:59 +00:00
|
|
|
{ showPrice === true && (
|
|
|
|
<RatePrice minRate={ rate.min } maxRate={ rate.max } />
|
|
|
|
) }
|
2022-10-05 10:54:48 +00:00
|
|
|
</Radio>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const ShippingSelector = ( {
|
|
|
|
checked,
|
|
|
|
rate,
|
|
|
|
showPrice,
|
|
|
|
showIcon,
|
|
|
|
toggleText,
|
|
|
|
setAttributes,
|
|
|
|
}: {
|
|
|
|
checked: string;
|
2022-10-11 15:46:59 +00:00
|
|
|
rate: minMaxPrices;
|
2022-10-05 10:54:48 +00:00
|
|
|
showPrice: boolean;
|
|
|
|
showIcon: boolean;
|
|
|
|
toggleText: string;
|
|
|
|
setAttributes: ( attributes: Record< string, unknown > ) => void;
|
|
|
|
} ) => {
|
|
|
|
const Price =
|
2022-10-11 15:46:59 +00:00
|
|
|
rate.min === undefined ? (
|
2022-10-20 10:48:46 +00:00
|
|
|
<span className="wc-block-checkout__shipping-method-option-price">
|
2022-10-05 10:54:48 +00:00
|
|
|
{ __(
|
|
|
|
'calculated with an address',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
</span>
|
|
|
|
) : (
|
2022-10-11 15:46:59 +00:00
|
|
|
<RatePrice minRate={ rate.min } maxRate={ rate.max } />
|
2022-10-05 10:54:48 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Radio
|
|
|
|
value="shipping"
|
2022-10-20 10:48:46 +00:00
|
|
|
className={ classnames(
|
|
|
|
'wc-block-checkout__shipping-method-option',
|
|
|
|
{
|
|
|
|
'wc-block-checkout__shipping-method-option--selected':
|
|
|
|
checked === 'shipping',
|
|
|
|
}
|
|
|
|
) }
|
2022-10-05 10:54:48 +00:00
|
|
|
>
|
|
|
|
{ showIcon === true && (
|
|
|
|
<Icon
|
|
|
|
icon={ shipping }
|
|
|
|
size={ 28 }
|
2022-10-20 10:48:46 +00:00
|
|
|
className="wc-block-checkout__shipping-method-option-icon"
|
2022-10-05 10:54:48 +00:00
|
|
|
/>
|
|
|
|
) }
|
|
|
|
<RichText
|
|
|
|
value={ toggleText }
|
2022-12-22 13:36:25 +00:00
|
|
|
placeholder={ defaultShippingText }
|
2022-10-05 10:54:48 +00:00
|
|
|
tagName="span"
|
2022-10-20 10:48:46 +00:00
|
|
|
className="wc-block-checkout__shipping-method-option-title"
|
2022-10-05 10:54:48 +00:00
|
|
|
onChange={ ( value ) =>
|
|
|
|
setAttributes( { shippingText: value } )
|
|
|
|
}
|
|
|
|
__unstableDisableFormats
|
|
|
|
preserveWhiteSpace
|
|
|
|
/>
|
|
|
|
{ showPrice === true && Price }
|
|
|
|
</Radio>
|
|
|
|
);
|
|
|
|
};
|
2022-10-04 12:02:28 +00:00
|
|
|
|
|
|
|
export const Edit = ( {
|
|
|
|
attributes,
|
|
|
|
setAttributes,
|
2023-03-13 11:49:28 +00:00
|
|
|
clientId,
|
2022-10-04 12:02:28 +00:00
|
|
|
}: {
|
2023-03-13 11:49:28 +00:00
|
|
|
clientId: string;
|
2022-10-04 12:02:28 +00:00
|
|
|
attributes: {
|
|
|
|
title: string;
|
|
|
|
description: string;
|
|
|
|
showStepNumber: boolean;
|
|
|
|
allowCreateAccount: boolean;
|
2022-10-05 10:54:48 +00:00
|
|
|
localPickupText: string;
|
|
|
|
shippingText: string;
|
2022-10-04 12:02:28 +00:00
|
|
|
showPrice: boolean;
|
|
|
|
showIcon: boolean;
|
|
|
|
className: string;
|
2023-03-13 11:49:28 +00:00
|
|
|
shippingCostRequiresAddress: boolean;
|
2022-10-04 12:02:28 +00:00
|
|
|
};
|
|
|
|
setAttributes: ( attributes: Record< string, unknown > ) => void;
|
2022-10-18 16:31:06 +00:00
|
|
|
} ): JSX.Element | null => {
|
2023-03-13 11:49:28 +00:00
|
|
|
const toggleAttribute = ( key: keyof Attributes ): void => {
|
|
|
|
const newAttributes = {} as Partial< Attributes >;
|
|
|
|
newAttributes[ key ] = ! ( attributes[ key ] as boolean );
|
|
|
|
setAttributes( newAttributes );
|
|
|
|
};
|
|
|
|
|
2022-10-06 12:00:30 +00:00
|
|
|
const { setPrefersCollection } = useDispatch( CHECKOUT_STORE_KEY );
|
|
|
|
const { prefersCollection } = useSelect( ( select ) => {
|
|
|
|
const checkoutStore = select( CHECKOUT_STORE_KEY );
|
|
|
|
return {
|
|
|
|
prefersCollection: checkoutStore.prefersCollection(),
|
|
|
|
};
|
|
|
|
} );
|
2022-10-05 10:54:48 +00:00
|
|
|
const { showPrice, showIcon, className, localPickupText, shippingText } =
|
|
|
|
attributes;
|
2022-10-18 16:31:06 +00:00
|
|
|
const {
|
|
|
|
shippingRates,
|
|
|
|
needsShipping,
|
|
|
|
hasCalculatedShipping,
|
|
|
|
isCollectable,
|
|
|
|
} = useShippingData();
|
|
|
|
|
|
|
|
if (
|
|
|
|
! needsShipping ||
|
|
|
|
! hasCalculatedShipping ||
|
|
|
|
! shippingRates ||
|
2022-12-09 09:50:08 +00:00
|
|
|
! isCollectable ||
|
|
|
|
! LOCAL_PICKUP_ENABLED
|
2022-10-18 16:31:06 +00:00
|
|
|
) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-10-06 12:00:30 +00:00
|
|
|
|
|
|
|
const changeView = ( method: string ) => {
|
|
|
|
if ( method === 'pickup' ) {
|
|
|
|
setPrefersCollection( true );
|
|
|
|
} else {
|
|
|
|
setPrefersCollection( false );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-10-04 12:02:28 +00:00
|
|
|
return (
|
|
|
|
<FormStepBlock
|
|
|
|
attributes={ attributes }
|
|
|
|
setAttributes={ setAttributes }
|
|
|
|
className={ classnames(
|
2022-10-20 10:48:46 +00:00
|
|
|
'wc-block-checkout__shipping-method',
|
2022-10-05 10:54:48 +00:00
|
|
|
className
|
2022-10-04 12:02:28 +00:00
|
|
|
) }
|
|
|
|
>
|
|
|
|
<InspectorControls>
|
2023-03-13 11:49:28 +00:00
|
|
|
<PanelBody
|
|
|
|
title={ __(
|
|
|
|
'Calculations',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
>
|
|
|
|
<ToggleControl
|
|
|
|
label={ __(
|
|
|
|
'Hide shipping costs until an address is entered',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
checked={ attributes.shippingCostRequiresAddress }
|
|
|
|
onChange={ ( selected ) => {
|
|
|
|
updateAttributeInSiblingBlock(
|
|
|
|
clientId,
|
|
|
|
'shippingCostRequiresAddress',
|
|
|
|
selected,
|
|
|
|
'woocommerce/checkout-shipping-methods-block'
|
|
|
|
);
|
|
|
|
|
|
|
|
toggleAttribute( 'shippingCostRequiresAddress' );
|
|
|
|
} }
|
|
|
|
/>
|
|
|
|
</PanelBody>
|
2022-10-04 12:02:28 +00:00
|
|
|
<PanelBody
|
|
|
|
title={ __( 'Appearance', 'woo-gutenberg-products-block' ) }
|
|
|
|
>
|
|
|
|
<p className="wc-block-checkout__controls-text">
|
|
|
|
{ __(
|
|
|
|
'Choose how this block is displayed to your customers.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
</p>
|
|
|
|
<ToggleControl
|
|
|
|
label={ __(
|
|
|
|
'Show icon',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
2022-10-05 10:54:48 +00:00
|
|
|
checked={ showIcon }
|
2022-10-04 12:02:28 +00:00
|
|
|
onChange={ () =>
|
|
|
|
setAttributes( {
|
2022-10-05 10:54:48 +00:00
|
|
|
showIcon: ! showIcon,
|
2022-10-04 12:02:28 +00:00
|
|
|
} )
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<ToggleControl
|
|
|
|
label={ __(
|
|
|
|
'Show costs',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
2022-10-05 10:54:48 +00:00
|
|
|
checked={ showPrice }
|
2022-10-04 12:02:28 +00:00
|
|
|
onChange={ () =>
|
|
|
|
setAttributes( {
|
2022-10-05 10:54:48 +00:00
|
|
|
showPrice: ! showPrice,
|
2022-10-04 12:02:28 +00:00
|
|
|
} )
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
</PanelBody>
|
2022-10-25 13:59:40 +00:00
|
|
|
<PanelBody
|
|
|
|
title={ __(
|
|
|
|
'Shipping Methods',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
>
|
|
|
|
<p className="wc-block-checkout__controls-text">
|
|
|
|
{ __(
|
|
|
|
'Methods can be made managed in your store settings.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
</p>
|
|
|
|
<ExternalLinkCard
|
|
|
|
key={ 'shipping_methods' }
|
|
|
|
href={ `${ ADMIN_URL }admin.php?page=wc-settings&tab=shipping` }
|
|
|
|
title={ __(
|
|
|
|
'Shipping',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
description={ __(
|
|
|
|
'Manage your shipping zones, methods, and rates.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
/>
|
|
|
|
<ExternalLinkCard
|
|
|
|
key={ 'pickup_location' }
|
|
|
|
href={ `${ ADMIN_URL }admin.php?page=wc-settings&tab=shipping§ion=pickup_location` }
|
|
|
|
title={ __(
|
|
|
|
'Local Pickup',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
description={ __(
|
|
|
|
'Allow customers to choose a local pickup location during checkout.',
|
|
|
|
'woo-gutenberg-products-block'
|
|
|
|
) }
|
|
|
|
/>
|
|
|
|
</PanelBody>
|
2022-10-04 12:02:28 +00:00
|
|
|
</InspectorControls>
|
2022-10-05 10:54:48 +00:00
|
|
|
<RadioGroup
|
2022-10-20 10:48:46 +00:00
|
|
|
id="shipping-method"
|
|
|
|
className="wc-block-checkout__shipping-method-container"
|
2022-10-05 10:54:48 +00:00
|
|
|
label="options"
|
2022-10-04 12:02:28 +00:00
|
|
|
onChange={ changeView }
|
2022-10-06 12:00:30 +00:00
|
|
|
checked={ prefersCollection ? 'pickup' : 'shipping' }
|
2022-10-05 10:54:48 +00:00
|
|
|
>
|
|
|
|
<ShippingSelector
|
2022-10-06 12:00:30 +00:00
|
|
|
checked={ prefersCollection ? 'pickup' : 'shipping' }
|
2022-10-11 15:46:59 +00:00
|
|
|
rate={ getShippingPrices(
|
|
|
|
shippingRates[ 0 ]?.shipping_rates
|
|
|
|
) }
|
2022-10-05 10:54:48 +00:00
|
|
|
showPrice={ showPrice }
|
|
|
|
showIcon={ showIcon }
|
|
|
|
setAttributes={ setAttributes }
|
|
|
|
toggleText={ shippingText }
|
|
|
|
/>
|
|
|
|
<LocalPickupSelector
|
2022-10-06 12:00:30 +00:00
|
|
|
checked={ prefersCollection ? 'pickup' : 'shipping' }
|
2022-10-11 15:46:59 +00:00
|
|
|
rate={ getLocalPickupPrices(
|
|
|
|
shippingRates[ 0 ]?.shipping_rates
|
|
|
|
) }
|
2022-10-05 10:54:48 +00:00
|
|
|
showPrice={ showPrice }
|
|
|
|
showIcon={ showIcon }
|
|
|
|
setAttributes={ setAttributes }
|
|
|
|
toggleText={ localPickupText }
|
|
|
|
/>
|
|
|
|
</RadioGroup>
|
2022-10-20 10:48:46 +00:00
|
|
|
<AdditionalFields block={ innerBlockAreas.SHIPPING_METHOD } />
|
2022-10-04 12:02:28 +00:00
|
|
|
</FormStepBlock>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const Save = (): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<div { ...useBlockProps.save() }>
|
|
|
|
<AdditionalFieldsContent />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|