Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 25x 25x 25x 25x 25x 25x 25x 1x 1x 1x 1x 1x 1x 25x 25x 1x 1x 2x 1x 1x 1x 2x 1x 25x 2x 2x 2x 1x 1x 2x 25x 1x 1x 25x 25x 25x 25x | import { BillingAddress, PaymentMethod } from '@bigcommerce/checkout-sdk'; import { FieldProps } from 'formik'; import React, { useCallback, useContext, useEffect, useState, FunctionComponent, SyntheticEvent } from 'react'; import { TranslatedString } from '../../locale'; import { DropdownTrigger } from '../../ui/dropdown'; import { CheckboxFormField, FormField } from '../../ui/form'; import { TextFieldForm } from '../creditCard'; import PaymentContext from '../PaymentContext'; interface CheckoutcomAPMFormProps { method: PaymentMethod; debtor: BillingAddress; } interface Issuer { bic: string; name: string; } interface HiddenInputProps extends FieldProps { selectedIssuer?: string; } interface DropdownButtonProps { selectedIssuer?: Issuer; } interface OptionButtonProps { className?: string; issuer: Issuer; onClick?(event: SyntheticEvent<EventTarget>): void; } interface SepaCreditor { sepaCreditorAddress: string; sepaCreditorCity: string; sepaCreditorCompanyName: string; sepaCreditorCountry: string; sepaCreditorIdentifier: string; sepaCreditorPostalCode: string; } const Sepa: FunctionComponent<CheckoutcomAPMFormProps> = ({method, debtor}) => { const paymentContext = useContext(PaymentContext); const creditor: SepaCreditor = method.initializationData.sepaCreditor; useEffect(() => { paymentContext?.disableSubmit(method, true); return () => paymentContext?.disableSubmit(method, false); }, [paymentContext, method]); function toggleSubmitButton(isChecked: boolean) { paymentContext?.disableSubmit(method, !isChecked); } return (<> <div className="checkoutcom-sepa-column-container"> <div className="checkoutcom-sepa-column-content"> <h4 className="checkoutcom-sepa-title"> <TranslatedString id="payment.checkoutcom_sepa_creditor_title" /> </h4> <h5 className="checkoutcom-sepa-title">{ creditor.sepaCreditorCompanyName }</h5> <p className="checkoutcom-sepa-line">{ creditor.sepaCreditorAddress }</p> <p className="checkoutcom-sepa-line">{ `${creditor.sepaCreditorPostalCode} ${creditor.sepaCreditorCity}` }</p> <p className="checkoutcom-sepa-line">{ creditor.sepaCreditorCountry }</p> <br /> <p className="checkoutcom-sepa-line"> <TranslatedString data={ { creditorId: creditor.sepaCreditorIdentifier } } id="payment.checkoutcom_sepa_creditor_id" /> </p> </div> <div className="checkoutcom-sepa-column-content"> <h4 className="checkoutcom-sepa-title"> <TranslatedString id="payment.checkoutcom_sepa_debtor_title" /> </h4> <h5 className="checkoutcom-sepa-title">{ `${debtor.firstName} ${debtor.lastName}` }</h5> <p className="checkoutcom-sepa-line">{ debtor.address1 }</p> <p className="checkoutcom-sepa-line">{ `${debtor.postalCode} ${debtor.city}, ${debtor.stateOrProvinceCode}` }</p> <p className="checkoutcom-sepa-line">{ debtor.countryCode }</p> </div> </div> <p className="checkoutcom-sepa-line"> <TranslatedString id="payment.checkoutcom_sepa_payment_type" /> </p> <br /> <TextFieldForm additionalClassName="form-field--iban" autoComplete="iban" labelId="payment.sepa_account_number" name="iban" /> <CheckboxFormField labelContent={ <TranslatedString data={ { creditorName: creditor.sepaCreditorCompanyName } } id="payment.checkoutcom_sepa_mandate_disclaimer" /> } name="sepaMandate" onChange={ toggleSubmitButton } /> </>); }; const Fawry: FunctionComponent<CheckoutcomAPMFormProps> = () => { return ( <> <TextFieldForm additionalClassName="form-field--customerMobile" autoComplete="tel" labelId="payment.checkoutcom_fawry_customer_mobile_label" name="customerMobile" /> <TextFieldForm additionalClassName="form-field--customerEmail" autoComplete="email" labelId="payment.checkoutcom_fawry_customer_email_label" name="customerEmail" /> </> ); }; const Ideal: FunctionComponent<CheckoutcomAPMFormProps> = ({ method }) => { const [selectedIssuer, setSelectedIssuer] = useState<Issuer | undefined>(); const [bicValue, setBicValue] = useState<string>(''); const render = useCallback((props: FieldProps) => <HiddenInput { ...props } selectedIssuer={ bicValue } />, [bicValue]); const issuers: Issuer[] = method.initializationData.idealIssuers; const handleClick = ({ currentTarget }: SyntheticEvent<HTMLButtonElement>) => { const _selectedIssuer = issuers.find(({ bic }) => bic === currentTarget?.dataset.bic); if (!_selectedIssuer) { return; } setSelectedIssuer(_selectedIssuer); setBicValue(_selectedIssuer.bic); }; const issuersList = <ul className="instrumentSelect-dropdownMenu instrumentSelect-dropdownMenuNext dropdown-menu"> { issuers.map(issuer => <li className="instrumentSelect-option dropdown-menu-item" key={ issuer.bic }> <OptionButton issuer={ issuer } onClick={ handleClick } /> </li> ) } </ul>; return (<> <DropdownTrigger dropdown={ issuersList } > <DropdownButton selectedIssuer={ selectedIssuer } /> </DropdownTrigger> <FormField input={ render } name="bic" /> </>); }; const HiddenInput: FunctionComponent<HiddenInputProps> = ({field: {value, ...restField}, form, selectedIssuer}) => { const Input = useCallback(() => <input { ...restField } type="hidden" />, [restField]); useEffect(() => { if (value === selectedIssuer) { return; } form.setFieldValue(restField.name, selectedIssuer); }, [value, form, selectedIssuer, restField.name]); return <Input />; }; const DropdownButton: FunctionComponent<DropdownButtonProps> = ({ selectedIssuer }) => { Eif (!selectedIssuer) { return (<button className="instrumentSelect-button optimizedCheckout-form-select dropdown-button form-input" type="button" > <div className="instrumentSelect-details instrumentSelect-details--addNew"> <div className="instrumentSelect-card"> Your bank </div> </div> </button>); } return (<OptionButton className="instrumentSelect-button optimizedCheckout-form-select dropdown-button form-input" issuer={ selectedIssuer } />); }; const OptionButton: FunctionComponent<OptionButtonProps> = ({ issuer, ...restProps }) => { const { bic, name } = issuer; return (<button data-bic={ bic } type="button" { ...restProps }> <div className="instrumentSelect-details"> { `${bic} / ${name}` } </div> </button>); }; const checkoutcomCustomFormFields = { fawry: Fawry, sepa: Sepa, ideal: Ideal, }; export const ccDocumentField = ({ method }: CheckoutcomAPMFormProps) => ( <TextFieldForm additionalClassName="form-field--ccDocument" autoComplete="cc-document" labelId={ `payment.checkoutcom_document_label_${ method.id }` } name="ccDocument" /> ); export default checkoutcomCustomFormFields; |