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 | 4x 4x 4x 4x 4x 4x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 45x 4x 4x | import { Address, AddressRequestBody, Cart, CheckoutParams, CheckoutSelectors, Consignment, ConsignmentAssignmentRequestBody, Country, CustomerAddress, CustomerRequestOptions, FormField, RequestOptions, ShippingInitializeOptions, ShippingRequestOptions } from '@bigcommerce/checkout-sdk';
import React, { Component, ReactNode } from 'react';
import { withLanguage, WithLanguageProps } from '../locale';
import MultiShippingForm, { MultiShippingFormValues } from './MultiShippingForm';
import SingleShippingForm, { SingleShippingFormValues } from './SingleShippingForm';
export interface ShippingFormProps {
addresses: CustomerAddress[];
cart: Cart;
cartHasChanged: boolean;
consignments: Consignment[];
countries: Country[];
countriesWithAutocomplete: string[];
customerMessage: string;
googleMapsApiKey?: string;
isBillingSameAsShipping: boolean;
isGuest: boolean;
isLoading: boolean;
isShippingStepPending: boolean;
isMultiShippingMode: boolean;
methodId?: string;
shippingAddress?: Address;
shouldShowSaveAddress?: boolean;
shouldShowOrderComments: boolean;
shouldShowAddAddressInCheckout: boolean;
assignItem(consignment: ConsignmentAssignmentRequestBody): Promise<CheckoutSelectors>;
deinitialize(options: ShippingRequestOptions): Promise<CheckoutSelectors>;
deleteConsignments(): Promise<Address | undefined>;
getFields(countryCode?: string): FormField[];
initialize(options: ShippingInitializeOptions): Promise<CheckoutSelectors>;
onCreateAccount(): void;
createCustomerAddress(address: AddressRequestBody): Promise<CheckoutSelectors>;
onMultiShippingSubmit(values: MultiShippingFormValues): void;
onSignIn(): void;
onSingleShippingSubmit(values: SingleShippingFormValues): void;
onUnhandledError(error: Error): void;
onUseNewAddress(address: Address, itemId: string): void;
signOut(options?: CustomerRequestOptions): void;
updateAddress(address: Partial<Address>, options: RequestOptions<CheckoutParams>): Promise<CheckoutSelectors>;
}
class ShippingForm extends Component<ShippingFormProps & WithLanguageProps> {
render(): ReactNode {
const {
addresses,
assignItem,
cart,
cartHasChanged,
createCustomerAddress,
consignments,
countries,
countriesWithAutocomplete,
onCreateAccount,
customerMessage,
deinitialize,
deleteConsignments,
getFields,
googleMapsApiKey,
initialize,
isBillingSameAsShipping,
isGuest,
isLoading,
isMultiShippingMode,
methodId,
onMultiShippingSubmit,
onSignIn,
onSingleShippingSubmit,
onUnhandledError,
onUseNewAddress,
shippingAddress,
shouldShowOrderComments,
shouldShowSaveAddress,
shouldShowAddAddressInCheckout,
signOut,
updateAddress,
isShippingStepPending,
} = this.props;
return isMultiShippingMode ?
<MultiShippingForm
addresses={ addresses }
assignItem={ assignItem }
cart={ cart }
cartHasChanged={ cartHasChanged }
consignments={ consignments }
countries={ countries }
countriesWithAutocomplete={ countriesWithAutocomplete }
createCustomerAddress={ createCustomerAddress }
customerMessage={ customerMessage }
defaultCountryCode={ shippingAddress?.countryCode }
getFields={ getFields }
googleMapsApiKey={ googleMapsApiKey }
isGuest={ isGuest }
isLoading={ isLoading }
onCreateAccount={ onCreateAccount }
onSignIn={ onSignIn }
onSubmit={ onMultiShippingSubmit }
onUnhandledError={ onUnhandledError }
onUseNewAddress={ onUseNewAddress }
shouldShowAddAddressInCheckout={ shouldShowAddAddressInCheckout }
shouldShowOrderComments={ shouldShowOrderComments }
/> :
<SingleShippingForm
addresses={ addresses }
cartHasChanged={ cartHasChanged }
consignments={ consignments }
countries={ countries }
countriesWithAutocomplete={ countriesWithAutocomplete }
customerMessage={ customerMessage }
deinitialize={ deinitialize }
deleteConsignments={ deleteConsignments }
getFields={ getFields }
googleMapsApiKey={ googleMapsApiKey }
initialize={ initialize }
isBillingSameAsShipping={ isBillingSameAsShipping }
isLoading={ isLoading }
isMultiShippingMode={ isMultiShippingMode }
isShippingStepPending={ isShippingStepPending }
methodId={ methodId }
onSubmit={ onSingleShippingSubmit }
onUnhandledError={ onUnhandledError }
shippingAddress={ shippingAddress }
shouldShowOrderComments={ shouldShowOrderComments }
shouldShowSaveAddress={ shouldShowSaveAddress }
signOut={ signOut }
updateAddress={ updateAddress }
/>;
}
}
export default withLanguage(ShippingForm);
|