File size: 5,219 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
import styled from '@emotion/styled';
import { sprintf } from '@wordpress/i18n';
import { useI18n } from '@wordpress/react-i18n';
import debugFactory from 'debug';
import { useCallback, useContext } from 'react';
import CheckoutContext from '../lib/checkout-context';
import joinClasses from '../lib/join-classes';
import { PaymentMethodProviderContext } from '../lib/payment-method-provider-context';
import { useAvailablePaymentMethodIds } from '../lib/payment-methods';
import {
useAllPaymentMethods,
usePaymentMethod,
usePaymentMethodId,
useIsStepActive,
useIsStepComplete,
useFormStatus,
} from '../public-api';
import { FormStatus } from '../types';
import CheckoutErrorBoundary from './checkout-error-boundary';
import RadioButton from './radio-button';
import type { ReactNode } from 'react';
const debug = debugFactory( 'composite-checkout:checkout-payment-methods' );
const CheckoutPaymentMethodsWrapper = styled.div`
padding-top: 4px;
> div > div:not( [disabled] ):has( + div:hover )::before,
> div > div[disabled]:has( + div.is-checked[disabled] )::before {
border-bottom: none;
}
`;
export default function CheckoutPaymentMethods( {
summary,
isComplete,
className,
}: {
summary?: boolean;
isComplete: boolean;
className?: string;
} ) {
const { __ } = useI18n();
const { onPageLoadError } = useContext( CheckoutContext );
const { onPaymentMethodChanged } = useContext( PaymentMethodProviderContext );
const onError = useCallback(
( error: Error ) => onPageLoadError?.( 'payment_method_load', error ),
[ onPageLoadError ]
);
const paymentMethod = usePaymentMethod();
const [ , setPaymentMethod ] = usePaymentMethodId();
const onClickPaymentMethod = ( newMethod: string ) => {
debug( 'setting payment method to', newMethod );
onPaymentMethodChanged?.( newMethod );
setPaymentMethod( newMethod );
};
const paymentMethods = useAllPaymentMethods();
if ( summary && isComplete && paymentMethod ) {
debug( 'rendering selected paymentMethod', paymentMethod );
return (
<CheckoutPaymentMethodsWrapper
className={ joinClasses( [ className, 'checkout-payment-methods' ] ) }
>
<CheckoutErrorBoundary
errorMessage={ __( 'There was a problem with this payment method.' ) }
onError={ onError }
>
<PaymentMethod
id={ paymentMethod.id }
label={ paymentMethod.label }
activeContent={ paymentMethod.activeContent }
inactiveContent={ paymentMethod.inactiveContent }
checked
summary
ariaLabel={ paymentMethod.getAriaLabel( __ as ( text: string ) => string ) }
/>
</CheckoutErrorBoundary>
</CheckoutPaymentMethodsWrapper>
);
}
if ( summary ) {
debug(
'summary requested, but no complete paymentMethod is selected; isComplete:',
isComplete,
'paymentMethod:',
paymentMethod
);
return null;
}
debug( 'rendering paymentMethods', paymentMethods );
return (
<CheckoutPaymentMethodsWrapper
className={ joinClasses( [ className, 'checkout-payment-methods' ] ) }
>
<div>
{ paymentMethods.map( ( method ) => (
<CheckoutErrorBoundary
key={ method.id }
errorMessage={ sprintf(
/* translators: %s is the payment method name that has an error, like "PayPal" */
__( 'There was a problem with the payment method: %s' ),
method.id
) }
onError={ onError }
>
<PaymentMethod
id={ method.id }
label={ method.label }
activeContent={ method.activeContent }
inactiveContent={ method.inactiveContent }
checked={ paymentMethod?.id === method.id }
onClick={ onClickPaymentMethod }
ariaLabel={ method.getAriaLabel( __ as ( text: string ) => string ) }
/>
</CheckoutErrorBoundary>
) ) }
</div>
</CheckoutPaymentMethodsWrapper>
);
}
export function CheckoutPaymentMethodsTitle() {
const { __ } = useI18n();
const isActive = useIsStepActive();
const isComplete = useIsStepComplete();
const paymentMethodLabelActive = __( 'Pick a payment method' );
const paymentMethodLabelInactive = __( 'Payment method' );
return <>{ ! isActive && isComplete ? paymentMethodLabelInactive : paymentMethodLabelActive }</>;
}
function PaymentMethod( {
id,
label,
activeContent,
inactiveContent,
checked,
onClick,
ariaLabel,
summary,
}: PaymentMethodProps ) {
const availablePaymentMethodIds = useAvailablePaymentMethodIds();
const { formStatus } = useFormStatus();
const isSinglePaymentMethod = availablePaymentMethodIds.length === 1;
if ( summary ) {
return <>{ inactiveContent && inactiveContent }</>;
}
return (
<RadioButton
name="paymentMethod"
value={ id }
id={ id }
checked={ checked }
disabled={ formStatus !== FormStatus.READY }
hidden={ ! availablePaymentMethodIds.includes( id ) }
onChange={ onClick ? () => onClick( id ) : undefined }
ariaLabel={ ariaLabel }
label={ label }
hideRadioButton={ isSinglePaymentMethod }
>
{ activeContent && activeContent }
</RadioButton>
);
}
interface PaymentMethodProps {
id: string;
onClick?: ( id: string ) => void;
checked: boolean;
ariaLabel: string;
activeContent?: ReactNode;
label?: ReactNode;
inactiveContent?: ReactNode;
summary?: boolean;
}
|