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 214 215 216 217 218 219 220 221 222 223 224 225 226 | 27x 27x 27x 27x 27x 27x 27x 27x 27x 27x 28x 28x 27x 28x 56x 50x 12x 27x 1x 2x 27x 28x 28x 28x 28x 28x 28x 28x 28x 28x 28x 28x 28x 20x 8x 27x 28x 28x 28x 28x 28x 28x 27x 27x 28x 28x 28x 28x 56x 56x 28x 28x 28x 28x 28x 28x 56x 28x 28x 28x 28x 28x 28x 28x 27x | import { AccountInstrument, CheckoutSelectors, PaymentInitializeOptions, PaymentInstrument, PaymentMethod, PaymentRequestOptions } from '@bigcommerce/checkout-sdk'; import { memoizeOne } from '@bigcommerce/memoize'; import { find, noop } from 'lodash'; import React, { Component, ReactNode } from 'react'; import { withCheckout, CheckoutContextProps } from '../../checkout'; import { connectFormik, ConnectFormikProps } from '../../common/form'; import { MapToPropsFactory } from '../../common/hoc'; import { withLanguage, WithLanguageProps } from '../../locale'; import { LoadingOverlay } from '../../ui/loading'; import { isAccountInstrument, isInstrumentFeatureAvailable, AccountInstrumentFieldset } from '../storedInstrument'; import withPayment, { WithPaymentProps } from '../withPayment'; import { PaymentFormValues } from '../PaymentForm'; import StoreInstrumentFieldset from '../StoreInstrumentFieldset'; export interface HostedPaymentMethodProps { description?: ReactNode; isInitializing?: boolean; isUsingMultiShipping?: boolean; method: PaymentMethod; deinitializePayment(options: PaymentRequestOptions): Promise<CheckoutSelectors>; initializePayment(options: PaymentInitializeOptions): Promise<CheckoutSelectors>; onUnhandledError?(error: Error): void; } interface HostedPaymentMethodState { isAddingNewInstrument: boolean; selectedInstrument?: AccountInstrument; } interface WithCheckoutHostedPaymentMethodProps { instruments: AccountInstrument[]; isInstrumentFeatureAvailable: boolean; isLoadingInstruments: boolean; isNewAddress: boolean; isPaymentDataRequired: boolean; loadInstruments(): Promise<CheckoutSelectors>; } class HostedPaymentMethod extends Component< HostedPaymentMethodProps & WithCheckoutHostedPaymentMethodProps & WithPaymentProps & WithLanguageProps & ConnectFormikProps<PaymentFormValues>, HostedPaymentMethodState > { state: HostedPaymentMethodState = { isAddingNewInstrument: false, }; async componentDidMount(): Promise<void> { const { initializePayment, isInstrumentFeatureAvailable: isInstrumentFeatureAvailableProp, loadInstruments, method, onUnhandledError = noop, } = this.props; try { await initializePayment({ gatewayId: method.gateway, methodId: method.id, }); if (isInstrumentFeatureAvailableProp) { await loadInstruments(); } } catch (error) { onUnhandledError(error); } } async componentWillUnmount(): Promise<void> { const { deinitializePayment, method, onUnhandledError = noop, } = this.props; try { await deinitializePayment({ gatewayId: method.gateway, methodId: method.id, }); } catch (error) { onUnhandledError(error); } } render(): ReactNode { const { description, isInitializing = false, isLoadingInstruments, instruments, isNewAddress, isInstrumentFeatureAvailable: isInstrumentFeatureAvailableProp, } = this.props; const { selectedInstrument = this.getDefaultInstrument(), } = this.state; const isLoading = isInitializing || isLoadingInstruments; const shouldShowInstrumentFieldset = isInstrumentFeatureAvailableProp && (instruments.length > 0 || isNewAddress); if (!description && !isInstrumentFeatureAvailableProp) { return null; } return ( <LoadingOverlay hideContentWhenLoading isLoading={ isLoading } > <div className="paymentMethod paymentMethod--hosted"> { description } { shouldShowInstrumentFieldset && <AccountInstrumentFieldset instruments={ instruments } onSelectInstrument={ this.handleSelectInstrument } onUseNewInstrument={ this.handleUseNewInstrument } selectedInstrument={ selectedInstrument } /> } { isInstrumentFeatureAvailableProp && <StoreInstrumentFieldset instrumentId={ selectedInstrument && selectedInstrument.bigpayToken } isAccountInstrument={ true } /> } </div> </LoadingOverlay> ); } private getDefaultInstrument(): AccountInstrument | undefined { const { isAddingNewInstrument } = this.state; const { instruments } = this.props; Eif (isAddingNewInstrument || !instruments.length) { return; } return find(instruments, { defaultInstrument: true }) || instruments[0]; } private handleUseNewInstrument: () => void = () => { this.setState({ isAddingNewInstrument: true, selectedInstrument: undefined, }); }; private handleSelectInstrument: (id: string) => void = id => { const { instruments, } = this.props; this.setState({ isAddingNewInstrument: false, selectedInstrument: find(instruments, { bigpayToken: id }), }); }; } const mapFromCheckoutProps: MapToPropsFactory< CheckoutContextProps, WithCheckoutHostedPaymentMethodProps, HostedPaymentMethodProps & ConnectFormikProps<PaymentFormValues> > = () => { const filterAccountInstruments = memoizeOne((Iinstruments: PaymentInstrument[] = []) => instruments.filter(isAccountInstrument)); const filterTrustedInstruments = memoizeOne((Iinstruments: AccountInstrument[] = []) => instruments.filter(({ trustedShippingAddress }) => trustedShippingAddress)); return (context, props) => { const { isUsingMultiShipping = false, method, } = props; const { checkoutService, checkoutState } = context; const { data: { getCart, getConfig, getCustomer, getInstruments, isPaymentDataRequired, isPaymentDataSubmitted, }, statuses: { isLoadingInstruments, }, } = checkoutState; const cart = getCart(); const config = getConfig(); const customer = getCustomer(); Iif (!config || !cart || !customer || !method) { return null; } const currentMethodInstruments = filterAccountInstruments(getInstruments(method)); const trustedInstruments = filterTrustedInstruments(currentMethodInstruments); return { instruments: trustedInstruments, isNewAddress: trustedInstruments.length === 0 && currentMethodInstruments.length > 0, isInstrumentFeatureAvailable: !isPaymentDataSubmitted(method.id, method.gateway) && isInstrumentFeatureAvailable({ config, customer, isUsingMultiShipping, paymentMethod: method, }), isLoadingInstruments: isLoadingInstruments(), isPaymentDataRequired: isPaymentDataRequired(), loadInstruments: checkoutService.loadInstruments, }; }; }; export default connectFormik(withLanguage(withPayment(withCheckout(mapFromCheckoutProps)(HostedPaymentMethod)))); |