All files / app/payment/paymentMethod WalletButtonPaymentMethod.tsx

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 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  25x 25x 25x   25x 25x 25x 25x 25x   25x   25x                                                         25x           25x 19x           19x     38x                 25x 1x             1x     2x                 25x                     25x   19x 19x 19x   19x                           25x   10x 10x 10x 10x 10x 10x   10x                             25x   9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x   9x                                                                                             25x   19x 19x 19x 19x   19x 10x   9x       19x 2x               4x 1x 1x   1x     25x                       38x 20x     18x 2x           16x 14x               2x 2x   2x                 36x 18x           19x 19x   19x 19x 19x   19x       19x   19x                   25x  
import { CheckoutSelectors, CustomerRequestOptions, PaymentInitializeOptions, PaymentMethod, PaymentRequestOptions } from '@bigcommerce/checkout-sdk';
import { number } from 'card-validator';
import { noop, some } from 'lodash';
import React, { Component, Fragment, ReactNode } from 'react';
 
import { withCheckout, CheckoutContextProps } from '../../checkout';
import { preventDefault } from '../../common/dom';
import { withLanguage, TranslatedString, WithLanguageProps } from '../../locale';
import { LoadingOverlay } from '../../ui/loading';
import withPayment, { WithPaymentProps } from '../withPayment';
 
import getPaymentMethodName from './getPaymentMethodName';
import { PaymentMethodProps } from './PaymentMethod';
import SignOutLink from './SignOutLink';
 
export interface WalletButtonPaymentMethodProps {
    buttonId: string;
    editButtonClassName?: string;
    editButtonLabel?: ReactNode;
    isInitializing?: boolean;
    method: PaymentMethod;
    shouldShowEditButton?: boolean;
    signInButtonClassName?: string;
    signInButtonLabel?: ReactNode;
    deinitializePayment(options: PaymentRequestOptions): Promise<CheckoutSelectors>;
    initializePayment(options: PaymentInitializeOptions): Promise<CheckoutSelectors>;
    onSignOut?(): void;
    onSignOutError?(error: Error): void;
    onUnhandledError?(error: Error): void;
}
 
interface WithCheckoutWalletButtonPaymentMethodProps {
    accountMask?: string;
    cardName?: string;
    cardType?: string;
    expiryMonth?: string;
    expiryYear?: string;
    isPaymentDataRequired: boolean;
    isPaymentSelected: boolean;
    signOut(options: CustomerRequestOptions): void;
}
 
class WalletButtonPaymentMethod extends Component<
    WalletButtonPaymentMethodProps &
    WithCheckoutWalletButtonPaymentMethodProps &
    WithLanguageProps &
    WithPaymentProps
> {
    async componentDidMount(): Promise<void> {
        const {
            initializePayment,
            method,
            onUnhandledError = noop,
        } = this.props;
 
        this.toggleSubmit();
 
        try {
            await initializePayment({
                gatewayId: method.gateway,
                methodId: method.id,
            });
        } catch (error) {
            onUnhandledError(error);
        }
    }
 
    async componentWillUnmount(): Promise<void> {
        const {
            deinitializePayment,
            disableSubmit,
            method,
            onUnhandledError = noop,
        } = this.props;
 
        disableSubmit(method, false);
 
        try {
            await deinitializePayment({
                gatewayId: method.gateway,
                methodId: method.id,
            });
        } catch (error) {
            onUnhandledError(error);
        }
    }
 
    componentDidUpdate(prevProps: Readonly<PaymentMethodProps & WalletButtonPaymentMethodProps & WithCheckoutWalletButtonPaymentMethodProps & WithLanguageProps>): void {
        const { method, isPaymentDataRequired } = this.props;
        const { method: prevMethod, isPaymentDataRequired: prevIsPaymentDataRequired } = prevProps;
 
        if (method.initializationData !== prevMethod.initializationData ||
            isPaymentDataRequired !== prevIsPaymentDataRequired
        ) {
            this.toggleSubmit();
        }
    }
 
    render(): ReactNode {
        const {
            isInitializing = false,
            isPaymentSelected,
        } = this.props;
 
        return (
            <LoadingOverlay
                hideContentWhenLoading
                isLoading={ isInitializing }
            >
                <div className="paymentMethod paymentMethod--walletButton">
                    { isPaymentSelected ?
                        this.renderPaymentView() :
                        this.renderSignInView() }
                </div>
            </LoadingOverlay>
        );
    }
 
    private renderSignInView(): ReactNode {
        const {
            buttonId,
            language,
            signInButtonClassName,
            signInButtonLabel,
            method,
        } = this.props;
 
        return (
            <a
                className={ signInButtonClassName }
                href="#"
                id={ buttonId }
                onClick={ preventDefault() }
            >
                { signInButtonLabel || <TranslatedString
                    data={ { providerName: getPaymentMethodName(language)(method) } }
                    id="remote.sign_in_action"
                /> }
            </a>
        );
    }
 
    private renderPaymentView(): ReactNode {
        const {
            accountMask,
            buttonId,
            cardName,
            cardType,
            editButtonClassName,
            editButtonLabel,
            expiryMonth,
            expiryYear,
            shouldShowEditButton,
            method,
        } = this.props;
 
        return (
            <Fragment>
                { cardName && <p data-test="payment-method-wallet-card-name">
                    <strong>
                        <TranslatedString id="payment.credit_card_name_label" />
                        :
                    </strong>
                    { ' ' }
                    { cardName }
                </p> }
 
                { accountMask && <p data-test="payment-method-wallet-card-type">
                    <strong>
                        { `${cardType}:` }
                    </strong>
                    { ' ' }
                    { accountMask }
                </p> }
 
                { expiryMonth && expiryYear && <p data-test="payment-method-wallet-card-expiry">
                    <strong>
                        <TranslatedString id="payment.credit_card_expiration_date_label" />
                        :
                        </strong>
                    { ' ' }
                    { `${expiryMonth}/${expiryYear}` }
                </p> }
 
                { shouldShowEditButton && <p>
                    <a
                        className={ editButtonClassName }
                        href="#"
                        id={ buttonId }
                        onClick={ preventDefault() }
                    >
                        { editButtonLabel || <TranslatedString id="remote.select_different_card_action" /> }
                    </a>
                </p> }
 
                <SignOutLink
                    method={ method }
                    onSignOut={ this.handleSignOut }
                />
            </Fragment>
        );
    }
 
    private toggleSubmit(): void {
        const {
            disableSubmit,
            method,
            isPaymentDataRequired,
        } = this.props;
 
        if (normalizeWalletPaymentData(method.initializationData) || !isPaymentDataRequired) {
            disableSubmit(method, false);
        } else {
            disableSubmit(method, true);
        }
    }
 
    private handleSignOut: () => void = async () => {
        const {
            method,
            signOut,
            onSignOut = noop,
            onSignOutError = noop,
        } = this.props;
 
        try {
            await signOut({ methodId: method.id });
            onSignOut();
            window.location.reload();
        } catch (error) {
            onSignOutError(error);
        }
    };
}
 
interface WalletPaymentData {
    accountMask: string;
    cardType: string;
    expiryMonth?: string;
    expiryYear?: string;
}
 
// For some odd reason, `initializationData` is a schema-less object. So in
// order to use it safely, we have to normalize it first.
function normalizeWalletPaymentData(data: any): WalletPaymentData | undefined {
    if (!data) {
        return;
    }
 
    if (data.card_information) {
        return {
            accountMask: formatAccountMask(data.card_information.number),
            cardType: data.card_information.type,
        };
    }
 
    if (data.cardData) {
        return {
            accountMask: formatAccountMask(data.cardData.accountMask),
            cardType: data.cardData.cardType,
            expiryMonth: data.cardData.expMonth,
            expiryYear: data.cardData.expYear,
        };
    }
 
    Eif (data.accountNum) {
        const { card } = number(data.accountNum);
 
        return {
            accountMask: formatAccountMask(data.accountMask),
            expiryMonth: data.expDate && `${data.expDate}`.substr(0, 2),
            expiryYear: data.expDate && `${data.expDate}`.substr(2, 2),
            cardType: card ? card.niceType : '',
        };
    }
}
 
function formatAccountMask(IaccountMask: string = '', Epadding: string = '****'): string {
    return accountMask.indexOf('*') > -1
        ? accountMask
        : `${padding} ${accountMask}`;
}
 
function mapFromCheckoutProps(
    { checkoutService, checkoutState }: CheckoutContextProps,
    { method }: WalletButtonPaymentMethodProps
): WithCheckoutWalletButtonPaymentMethodProps | null {
    const { data: { getBillingAddress, getCheckout, isPaymentDataRequired } } = checkoutState;
    const billingAddress = getBillingAddress();
    const checkout = getCheckout();
 
    Iif (!billingAddress || !checkout) {
        return null;
    }
 
    const walletPaymentData = normalizeWalletPaymentData(method.initializationData);
 
    return {
        ...walletPaymentData,
        // FIXME: I'm not sure how this would work for non-English names.
        cardName: walletPaymentData && [billingAddress.firstName, billingAddress.lastName].join(' '),
        isPaymentDataRequired: isPaymentDataRequired(),
        isPaymentSelected: some(checkout.payments, { providerId: method.id }),
        signOut: checkoutService.signOutCustomer,
    };
}
 
export default withLanguage(withPayment(withCheckout(mapFromCheckoutProps)(WalletButtonPaymentMethod)));