2020-07-15 14:14:41 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
import { registerPaymentMethod } from '@woocommerce/blocks-registry';
|
|
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
import { getSetting } from '@woocommerce/settings';
|
|
|
|
import { decodeEntities } from '@wordpress/html-entities';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { PAYMENT_METHOD_NAME } from './constants';
|
|
|
|
|
|
|
|
const settings = getSetting( 'cod_data', {} );
|
2020-07-21 19:57:21 +00:00
|
|
|
const defaultLabel = __( 'Cash on delivery', 'woo-gutenberg-products-block' );
|
2020-07-15 14:14:41 +00:00
|
|
|
const label = decodeEntities( settings.title ) || defaultLabel;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {import('@woocommerce/type-defs/registered-payment-method-props').RegisteredPaymentMethodProps} RegisteredPaymentMethodProps
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content component
|
|
|
|
*/
|
|
|
|
const Content = () => {
|
|
|
|
return <div>{ decodeEntities( settings.description || '' ) }</div>;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Label component
|
|
|
|
*
|
|
|
|
* @param {*} props Props from payment API.
|
|
|
|
*/
|
|
|
|
const Label = ( props ) => {
|
|
|
|
const { PaymentMethodLabel } = props.components;
|
|
|
|
return <PaymentMethodLabel text={ label } />;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether COD is available for this cart/order.
|
|
|
|
*
|
2020-09-20 23:54:08 +00:00
|
|
|
* @param {Object} props Incoming props for the component.
|
|
|
|
* @param {boolean} props.cartNeedsShipping True if the cart contains any physical/shippable products.
|
|
|
|
* @param {boolean} props.selectedShippingMethods
|
|
|
|
*
|
|
|
|
* @return {boolean} True if COD payment method should be displayed as a payment option.
|
2020-07-15 14:14:41 +00:00
|
|
|
*/
|
|
|
|
const canMakePayment = ( { cartNeedsShipping, selectedShippingMethods } ) => {
|
|
|
|
if ( ! settings.enableForVirtual && ! cartNeedsShipping ) {
|
|
|
|
// Store doesn't allow COD for virtual orders AND
|
|
|
|
// order doesn't contain any shippable products.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-14 14:36:14 +00:00
|
|
|
if ( ! settings.enableForShippingMethods.length ) {
|
2020-07-15 14:14:41 +00:00
|
|
|
// Store does not limit COD to specific shipping methods.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-07-21 19:57:21 +00:00
|
|
|
// Look for a supported shipping method in the user's selected
|
|
|
|
// shipping methods. If one is found, then COD is allowed.
|
|
|
|
const selectedMethods = Object.values( selectedShippingMethods );
|
|
|
|
// supported shipping methods might be global (eg. "Any flat rate"), hence
|
|
|
|
// this is doing a `String.prototype.includes` match vs a `Array.prototype.includes` match.
|
|
|
|
return settings.enableForShippingMethods.some( ( shippingMethodId ) => {
|
|
|
|
return selectedMethods.some( ( selectedMethod ) => {
|
|
|
|
return selectedMethod.includes( shippingMethodId );
|
|
|
|
} );
|
|
|
|
} );
|
2020-07-15 14:14:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cash on Delivery (COD) payment method config object.
|
|
|
|
*/
|
|
|
|
const cashOnDeliveryPaymentMethod = {
|
|
|
|
name: PAYMENT_METHOD_NAME,
|
|
|
|
label: <Label />,
|
|
|
|
content: <Content />,
|
|
|
|
edit: <Content />,
|
|
|
|
canMakePayment,
|
|
|
|
ariaLabel: label,
|
2021-01-29 06:28:44 +00:00
|
|
|
supports: {
|
|
|
|
features: settings?.supports ?? [],
|
|
|
|
},
|
2020-07-15 14:14:41 +00:00
|
|
|
};
|
|
|
|
|
2020-11-18 22:06:33 +00:00
|
|
|
registerPaymentMethod( cashOnDeliveryPaymentMethod );
|