File size: 9,689 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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | import { Button, FormStatus, useFormStatus } from '@automattic/composite-checkout';
import { useShoppingCart } from '@automattic/shopping-cart';
import { Field } from '@automattic/wpcom-checkout';
import styled from '@emotion/styled';
import { useTranslate } from 'i18n-calypso';
import { useEffect, Fragment, ReactNode, useState, ChangeEvent } from 'react';
import {
getStateLabelText,
STATE_SELECT_TEXT,
} from 'calypso/components/domains/contact-details-form-fields/custom-form-fieldsets/utils';
import { StateSelect } from 'calypso/my-sites/domains/components/form';
import useCartKey from '../../use-cart-key';
import { useCachedContactDetails } from '../hooks/use-cached-contact-details';
import type { PaymentMethod, ProcessPayment } from '@automattic/composite-checkout';
// We currently only show Pix for Brazil so we hard-code the country to avoid
// asking the user twice or having to grab it from the billing information
// state.
const countryCode = 'BR';
interface PixPaymentMethodStateShape {
cardholderName: string;
state: string;
city: string;
postalCode: string;
address: string;
streetNumber: string;
phoneNumber: string;
taxpayerId: string;
}
type PixPaymentMethodKey = keyof PixPaymentMethodStateShape;
type StateSubscriber = () => void;
class PixPaymentMethodState {
data: PixPaymentMethodStateShape = {
cardholderName: '',
state: '',
city: '',
postalCode: '',
address: '',
streetNumber: '',
phoneNumber: '',
taxpayerId: '',
};
subscribers: StateSubscriber[] = [];
isTouched: boolean = false;
change = ( field: PixPaymentMethodKey, newValue: string ): void => {
this.data[ field ] = newValue;
this.isTouched = true;
this.notifySubscribers();
};
subscribe = ( callback: () => void ): ( () => void ) => {
this.subscribers.push( callback );
return () => {
this.subscribers = this.subscribers.filter( ( subscriber ) => subscriber !== callback );
};
};
notifySubscribers = (): void => {
this.subscribers.forEach( ( subscriber ) => subscriber() );
};
}
export function createPixPaymentMethod( {
submitButtonContent,
}: {
submitButtonContent: ReactNode;
} ): PaymentMethod {
const state = new PixPaymentMethodState();
return {
id: 'pix',
paymentProcessorId: 'pix',
label: <PixLabel />,
activeContent: <PixForm state={ state } />,
submitButton: <PixPayButton submitButtonContent={ submitButtonContent } state={ state } />,
getAriaLabel: () => 'Pix',
};
}
function useSubscribeToEventEmitter( state: PixPaymentMethodState ) {
const [ , forceReload ] = useState( 0 );
useEffect( () => {
return state.subscribe( () => {
forceReload( ( val: number ) => val + 1 );
} );
}, [ state ] );
}
function usePrefillState( state: PixPaymentMethodState ): void {
const cartKey = useCartKey();
const { responseCart } = useShoppingCart( cartKey );
const isLoggedOut = responseCart.cart_key === 'no-user';
const { contactDetails } = useCachedContactDetails( { isLoggedOut } );
// Don't try to pre-fill if the form has been edited. (Also prevents
// infinite loops.)
if ( state.isTouched ) {
return;
}
if ( ! contactDetails ) {
return;
}
if ( contactDetails.postalCode ) {
state.change( 'postalCode', contactDetails.postalCode );
}
if ( contactDetails.city ) {
state.change( 'city', contactDetails.city );
}
if ( contactDetails.state ) {
state.change( 'state', contactDetails.state );
}
if ( contactDetails.phone ) {
state.change( 'phoneNumber', contactDetails.phone );
}
// Street number and address are separate in the Pix form but joined
// together in the tax form (where `contactDetails` comes from), so this
// attempts to split out the street number so we can prefill both fields.
// Street numbers in Brazil seem to mostly follow the street name (eg: "Av.
// Foo, 1098"), so we look for a number at the end of the address. If this
// fails, we just fill the address field and leave the street number field
// blank. Other possible examples of entries: "Av. Xavier da Foo, 1773, apt
// 1000", or "Est. Terra Foo 700 c 4", or "rua Foo Bar 1975".
if ( contactDetails.address1 ) {
const regexpForStreetNumber = /^(\D+?)[,\s]+(\d+|\d+[,\s]+\w+\s+\d+)$/;
const streetNumberSearch = contactDetails.address1.match( regexpForStreetNumber );
if ( streetNumberSearch && streetNumberSearch[ 1 ] && streetNumberSearch[ 2 ] ) {
state.change( 'address', streetNumberSearch[ 1 ] );
state.change( 'streetNumber', streetNumberSearch[ 2 ] );
} else {
state.change( 'address', contactDetails.address1 );
}
}
}
const PixFormWrapper = styled.div`
position: relative;
padding: 0 24px 24px 24px;
display: flex;
flex-direction: column;
gap: 14px;
`;
function PixForm( { state }: { state: PixPaymentMethodState } ) {
useSubscribeToEventEmitter( state );
usePrefillState( state );
const { formStatus } = useFormStatus();
const translate = useTranslate();
return (
<PixFormWrapper>
<Field
type="text"
id="cardholderName"
onChange={ ( value: string ) => {
state.change( 'cardholderName', value );
} }
label={ translate( 'Name' ) }
value={ state.data.cardholderName }
disabled={ formStatus !== FormStatus.READY }
/>
<Field
type="text"
id="taxpayerId"
onChange={ ( value: string ) => {
state.change( 'taxpayerId', value );
} }
label={ translate( 'CPF', {
textOnly: true,
comment: 'The taxpayer identification number for Brazil',
} ) }
value={ state.data.taxpayerId }
disabled={ formStatus !== FormStatus.READY }
/>
<Field
type="text"
id="phoneNumber"
onChange={ ( value: string ) => {
state.change( 'phoneNumber', value );
} }
label={ translate( 'Phone' ) }
value={ state.data.phoneNumber }
disabled={ formStatus !== FormStatus.READY }
/>
<Field
type="text"
id="address"
onChange={ ( value: string ) => {
state.change( 'address', value );
} }
label={ translate( 'Address' ) }
value={ state.data.address }
disabled={ formStatus !== FormStatus.READY }
/>
<Field
type="text"
id="streetNumber"
onChange={ ( value: string ) => {
state.change( 'streetNumber', value );
} }
label={ translate( 'Street Number' ) }
value={ state.data.streetNumber }
disabled={ formStatus !== FormStatus.READY }
/>
<Field
type="text"
id="city"
onChange={ ( value: string ) => {
state.change( 'city', value );
} }
label={ translate( 'City' ) }
value={ state.data.city }
disabled={ formStatus !== FormStatus.READY }
/>
<StateSelect
label={ getStateLabelText( countryCode ) }
countryCode={ countryCode }
selectText={ STATE_SELECT_TEXT[ countryCode ] }
value={ state.data.state }
onChange={ ( event: ChangeEvent< HTMLSelectElement > ) => {
state.change( 'state', event.target.value );
} }
/>
<Field
type="text"
id="postalCode"
onChange={ ( value: string ) => {
state.change( 'postalCode', value );
} }
label={ translate( 'Postal Code' ) }
value={ state.data.postalCode }
disabled={ formStatus !== FormStatus.READY }
/>
</PixFormWrapper>
);
}
function PixPayButton( {
disabled,
onClick,
submitButtonContent,
state,
}: {
disabled?: boolean;
onClick?: ProcessPayment;
submitButtonContent: ReactNode;
state: PixPaymentMethodState;
} ) {
const { formStatus } = useFormStatus();
// This must be typed as optional because it's injected by cloning the
// element in CheckoutSubmitButton, but the uncloned element does not have
// this prop yet.
if ( ! onClick ) {
throw new Error(
'Missing onClick prop; PixPayButton must be used as a payment button in CheckoutSubmitButton'
);
}
return (
<Button
disabled={ disabled }
onClick={ () => {
onClick( {
name: state.data.cardholderName,
countryCode: countryCode,
state: state.data.state,
city: state.data.city,
postalCode: state.data.postalCode,
address: state.data.address,
streetNumber: state.data.streetNumber,
phoneNumber: state.data.phoneNumber,
document: state.data.taxpayerId,
} );
} }
buttonType="primary"
isBusy={ FormStatus.SUBMITTING === formStatus }
fullWidth
>
{ submitButtonContent }
<div className="pix-modal-target" />
</Button>
);
}
const PixLogoWrapper = styled.div`
width: 24px;
`;
function PixLogo() {
return (
<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
<defs />
<g fill="#4BB8A9" fillRule="evenodd">
<path d="M112.57 391.19c20.056 0 38.928-7.808 53.12-22l76.693-76.692c5.385-5.404 14.765-5.384 20.15 0l76.989 76.989c14.191 14.172 33.045 21.98 53.12 21.98h15.098l-97.138 97.139c-30.326 30.344-79.505 30.344-109.85 0l-97.415-97.416h9.232zm280.068-271.294c-20.056 0-38.929 7.809-53.12 22l-76.97 76.99c-5.551 5.53-14.6 5.568-20.15-.02l-76.711-76.693c-14.192-14.191-33.046-21.999-53.12-21.999h-9.234l97.416-97.416c30.344-30.344 79.523-30.344 109.867 0l97.138 97.138h-15.116z" />
<path d="M22.758 200.753l58.024-58.024h31.787c13.84 0 27.384 5.605 37.172 15.394l76.694 76.693c7.178 7.179 16.596 10.768 26.033 10.768 9.417 0 18.854-3.59 26.014-10.75l76.989-76.99c9.787-9.787 23.331-15.393 37.171-15.393h37.654l58.3 58.302c30.343 30.344 30.343 79.523 0 109.867l-58.3 58.303H392.64c-13.84 0-27.384-5.605-37.171-15.394l-76.97-76.99c-13.914-13.894-38.172-13.894-52.066.02l-76.694 76.674c-9.788 9.788-23.332 15.413-37.172 15.413H80.782L22.758 310.62c-30.344-30.345-30.344-79.524 0-109.868" />
</g>
</svg>
);
}
function PixLabel() {
return (
<Fragment>
<span>Pix</span>
<PixLogoWrapper>
<PixLogo />
</PixLogoWrapper>
</Fragment>
);
}
|