Skip to content

Latest commit

 

History

History
198 lines (139 loc) · 5.29 KB

PayPalCommerceAlternativeMethodsPaymentOptions.md

File metadata and controls

198 lines (139 loc) · 5.29 KB

@bigcommerce/checkout-sdk / PayPalCommerceAlternativeMethodsPaymentOptions

Interface: PayPalCommerceAlternativeMethodsPaymentOptions

A set of options that are required to initialize the PayPal Commerce payment method for presenting its PayPal button.

Please note that the minimum version of checkout-sdk is 1.100

Also, PayPal (also known as PayPal Commerce Platform) requires specific options to initialize the PayPal Smart Payment Button on checkout page that substitutes a standard submit button

<!-- This is where the PayPal button will be inserted -->
<div id="container"></div>
<!-- This is where the PayPal alternative payment methods fields will be inserted.  -->
<div id="apm-fields-container"></div>
service.initializePayment({
    gatewayId: 'paypalcommercealternativemethods',
    methodId: 'sepa',
    paypalcommercealternativemethods: {
        container: '#container',
        apmFieldsContainer: '#apm-fields-container',
        apmFieldsStyles: {
            base: {
                backgroundColor: 'transparent',
            },
            input: {
                backgroundColor: 'white',
                fontSize: '1rem',
                color: '#333',
                borderColor: '#d9d9d9',
                borderRadius: '4px',
                borderWidth: '1px',
                padding: '1rem',
            },
            invalid: {
                color: '#ed6a6a',
            },
            active: {
                color: '#4496f6',
            },
        },
        clientId: 'YOUR_CLIENT_ID',
// Callback for submitting payment form that gets called when a buyer approves PayPal payment
        submitForm: () => {
        // Example function
            this.submitOrder(
               {
                  payment: { methodId: 'paypalcommercealternativemethods', }
              }
           );
        },
// Callback is used to define the state of the payment form, validate if it is applicable for submit.
        onValidate: (resolve, reject) => {
        // Example function
            const isValid = this.validatePaymentForm();
            if (isValid) {
                return resolve();
            }
            return reject();
        },
// Callback that is called right before render of a Smart Payment Button. It gets called when a buyer is eligible for use of the particular PayPal method. This callback can be used to hide the standard submit button.
        onRenderButton: () => {
        // Example function
            this.hidePaymentSubmitButton();
        }
    },
});

Table of contents

Properties

Methods

Properties

apmFieldsContainer

Optional apmFieldsContainer: string

The CSS selector of a container where the alternative payment methods fields widget should be inserted into. It's necessary to specify this parameter when using Alternative Payment Methods. Without it alternative payment methods will not work.


apmFieldsStyles

Optional apmFieldsStyles: PayPalCommerceFieldsStyleOptions

Object with styles to customize alternative payment methods fields.


container

container: string

The CSS selector of a container where the payment widget should be inserted into.

Methods

onError

Optional onError(error): void

A callback for displaying error popup. This callback requires error object as parameter.

Parameters

Name Type
error Error

Returns

void


onInitButton

onInitButton(actions): Promise<void>

A callback that gets called when Smart Payment Button is initialized.

Parameters

Name Type
actions InitCallbackActions

Returns

Promise<void>


onRenderButton

Optional onRenderButton(): void

A callback right before render Smart Payment Button that gets called when Smart Payment Button is eligible. This callback can be used to hide the standard submit button.

Returns

void


onValidate

onValidate(resolve, reject): Promise<void>

A callback that gets called when a buyer click on Smart Payment Button and should validate payment form.

Parameters

Name Type Description
resolve () => void A function, that gets called if form is valid.
reject () => void A function, that gets called if form is not valid.

Returns

Promise<void>

reject() or resolve()


submitForm

submitForm(): void

A callback for submitting payment form that gets called when buyer approved PayPal account.

Returns

void