0.0.3 • Published 7 months ago

@asyncpay/checkout-react-native v0.0.3

Weekly downloads
-
License
BSL-1.0
Repository
github
Last release
7 months ago

Asyncpay Checkout SDK

This SDK allows you to seamlessly connect to multiple payment channels such as Flutterwave, Paystack and Stripe and create a checkout experience with only one integration.

Demo

You can see a demo of our checkout experience here: https://asyncpay.io/demo

Requirements

  1. An Asyncpay account - Head to Asyncpay to create an account and gain access to your dashboard.
  2. Connect your payment Channels - The dashboard provides you a means to connect your multiple payment channels to your business. Create accounts on the payment channels you wish to integrate and provide your keys on the dashboard.
  3. Integrate this SDK - After connecting the payment channels you can initialize payments with the Asyncpay public key found on your dashboard.

Steps for Integrating this SDK

  1. To install this SDK, run the npm command
$ npm install @asyncpay/checkout-react-native

OR

$ yarn add @asyncpay/checkout-react-native
  1. The SDK exports a Customizable button Component
import { CheckoutButton } from '@asyncpay/checkout-react-native';

<CheckoutButton
  publicKey="${YOUR_ASYNC_PAY_PUBLIC_KEY}"
  amount={10000}
  currency={'NGN'}
  customer={{
    email: 'example@mail.com',
    first_name: 'John',
    last_name: 'Doe',
  }}
/>;
  1. The SDK exports a custom hook
import { useCheckout } from '@asyncpay/checkout-react-native';
import { StyleSheet, Text, TouchableOpacity } from 'react-native';

const Checkout = () => {
  const { _handleCheckout, Modal } = useCheckout({
    amount: 10000,
    currency: 'NGN',
    customer: {
      email: 'example@mail.com',
    },
    publicKey: '${YOUR_ASYNC_PAY_PUBLIC_KEY}',
  });

  return (
    <>
      <TouchableOpacity
        style={styles.buttonContainer}
        onPress={_handleCheckout}
      >
        <Text style={styles.text}>Press me</Text>
      </TouchableOpacity>
      <Modal />
    </>
  );
};

const styles = StyleSheet.create({
  buttonContainer: {
    width: '90%',
    height: heightPercentageToDP(5),
    backgroundColor: '#1059bc',
    alignItems: 'center',
    justifyContent: 'center',
    borderRadius: 10,
    marginVertical: heightPercentageToDP(5),
  },
  text: {
    color: '#fff',
    fontSize: 16,
    fontWeight: 'bold',
  },
});

Available Checkout Options

Listed below are the available config options for the AsyncpayCheckout button and hook.

publicKey, amount, description, customer_email, customer_uuid, subscription_plan_uuid, customer, paymentChannel, onError, onSuccess, logo, buttonStyle, buttonTextStyle, buttonTitle

NameRequiredDescription
publicKeytrueThe public key of your business gotten from the Asyncpay dashboard.
amounttrue but not considered when subscription_plan_uuid is presentThe amount you want to charge the user.
currencyfalse but not considered when subscription_plan_uuid is presentThe amount you want to charge the user.
descriptionfalse but not considered when subscription_plan_uuid is presentThe description of the transaction.
customer_emailrequired if customer_uuid and customer is absentThe email of the customer you want to charge.
customer_uuidrequired if customer_email and customer is absentThe UUID of the customer you want to charge.
subscription_plan_uuidfalse prohibits amount, currency and descriptionThe UUID of the subscription plan you want to subscribe your customer to.
customerrequired if customer_email and customer_uuid is absentThe customer object of the customer. Using this option would create a customer on the user.
metadatafalseAn object that can be used to add metadata to the checkout. It expects an object whose keys and values are strings.
save_payment_methodfalseThis flag determines whether the payment method used for this checkout should be saved on Asyncpay. Saving this method for the customer allows you to initiate a charge later on the saved payment method.
referencefalseA uniquely generated reference to be tied to the payment request for your checkout session.
payment_channelfalseThe payment channel you want to route the payment to. If you set a value here, the checkout goes staright to that payment channel without giving the user a choice.
buttonStylefalseFor Styling the checkout button.
buttonTextStylefalseFor styling the checkout text .
onCancelfalseA javascript function to call after the user cancels the checkout page.
buttonTitlefalseSet The a custom title for the checkout button.
onErrorfalseA javascript function to call whenever there is an error during the checkout process. An argument with a type of Error would be supplied to describe the error.
onSuccessfalseA javascript function to call after the user has successfully completed checkout.
logofalseThe logo to show up on the payment page if you want to override the logo set on the dashboard.

Available Customer Object Options

The table below shows the properties that can be attached to a customer object if you choose to use that to initialize a payment request with the SDK.

NameRequired
first_nametrue
last_nametrue
emailtrue
phone_codeRequired if email is absent
phone_numberRequired if email is absent
address_line_1false
address_line_2false
cityfalse
statefalse
countryfalse
zipfalse

Support

Feel free to send a message to info@asyncpay.io for any support regarding using this SDK or create an issue on Github