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 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 16x 2x 16x 29x 13x 2x 20x 20x 20x 20x 20x 16x 3x 3x 3x 3x 3x 3x 3x 3x 3x 1x 6x 2x 1x 2x 21x 21x 21x 21x 21x 21x 21x 21x 21x 21x 21x 21x 42x 21x 21x 21x 21x 21x 1x 20x 20x 20x 20x 20x 20x 20x 2x | import { Address, CheckoutRequestBody, CheckoutSelectors, Country, Customer, FormField } from '@bigcommerce/checkout-sdk'; import { noop } from 'lodash'; import React, { Component, ReactNode } from 'react'; import { isEqualAddress, mapAddressFromFormValues } from '../address'; import { withCheckout, CheckoutContextProps } from '../checkout'; import { EMPTY_ARRAY } from '../common/utility'; import { TranslatedString } from '../locale'; import { getShippableItemsCount } from '../shipping'; import { Legend } from '../ui/form'; import { LoadingOverlay } from '../ui/loading'; import getBillingMethodId from './getBillingMethodId'; import BillingForm, { BillingFormValues } from './BillingForm'; export interface BillingProps { navigateNextStep(): void; onReady?(): void; onUnhandledError(error: Error): void; } export interface WithCheckoutBillingProps { countries: Country[]; countriesWithAutocomplete: string[]; customer: Customer; customerMessage: string; googleMapsApiKey: string; isInitializing: boolean; isUpdating: boolean; shouldShowOrderComments: boolean; billingAddress?: Address; methodId?: string; getFields(countryCode?: string): FormField[]; initialize(): Promise<CheckoutSelectors>; updateAddress(address: Partial<Address>): Promise<CheckoutSelectors>; updateCheckout(payload: CheckoutRequestBody): Promise<CheckoutSelectors>; } class Billing extends Component<BillingProps & WithCheckoutBillingProps> { async componentDidMount(): Promise<void> { const { initialize, onReady = noop, onUnhandledError, } = this.props; try { await initialize(); onReady(); } catch (e) { onUnhandledError(e); } } render(): ReactNode { const { updateAddress, isInitializing, ...props } = this.props; return ( <div className="checkout-form"> <div className="form-legend-container"> <Legend testId="billing-address-heading"> <TranslatedString id="billing.billing_address_heading" /> </Legend> </div> <LoadingOverlay isLoading={ isInitializing } unmountContentWhenLoading > <BillingForm { ...props } onSubmit={ this.handleSubmit } updateAddress={ updateAddress } /> </LoadingOverlay> </div> ); } private handleSubmit: (values: BillingFormValues) => void = async ({ orderComment, ...addressValues }) => { const { updateAddress, updateCheckout, customerMessage, billingAddress, navigateNextStep, onUnhandledError, } = this.props; const promises: Array<Promise<CheckoutSelectors>> = []; const address = mapAddressFromFormValues(addressValues); Eif (address && !isEqualAddress(address, billingAddress)) { promises.push(updateAddress(address)); } if (customerMessage !== orderComment) { promises.push(updateCheckout({ customerMessage: orderComment })); } try { await Promise.all(promises); navigateNextStep(); } catch (error) { onUnhandledError(error); } }; } function mapToBillingProps({ checkoutService, checkoutState, }: CheckoutContextProps): WithCheckoutBillingProps | null { const { data: { getCheckout, getConfig, getCart, getCustomer, getBillingAddress, getBillingAddressFields, getBillingCountries, }, statuses: { isLoadingBillingCountries, isUpdatingBillingAddress, isUpdatingCheckout, }, } = checkoutState; const config = getConfig(); const customer = getCustomer(); const checkout = getCheckout(); const cart = getCart(); if (!config || !customer || !checkout || !cart) { return null; } const { enableOrderComments, googleMapsApiKey, features, } = config.checkoutSettings; const countriesWithAutocomplete = ['US', 'CA', 'AU', 'NZ']; Iif (features['CHECKOUT-4183.checkout_google_address_autocomplete_uk']) { countriesWithAutocomplete.push('GB'); } return { billingAddress: getBillingAddress(), countries: getBillingCountries() || EMPTY_ARRAY, countriesWithAutocomplete, customer, customerMessage: checkout.customerMessage, getFields: getBillingAddressFields, googleMapsApiKey, initialize: checkoutService.loadBillingAddressFields, isInitializing: isLoadingBillingCountries(), isUpdating: isUpdatingBillingAddress() || isUpdatingCheckout(), methodId: getBillingMethodId(checkout), shouldShowOrderComments: enableOrderComments && getShippableItemsCount(cart) < 1, updateAddress: checkoutService.updateBillingAddress, updateCheckout: checkoutService.updateCheckout, }; } export default withCheckout(mapToBillingProps)(Billing); |