0.0.3 • Published 3 years ago

react-native-rego-googlepay v0.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

react-native-rego-googlepay

React Native library for adding cards to Google Pay

Installation

npm install react-native-rego-googlepay

You also have to add Google SDK for managing Google Pay to your android project in React Native.

Usage

import AddCardButton, { RegoGooglepay } from 'react-native-rego-googlepay';
import { DeviceEventEmitter } from 'react-native';

// ...

useEffect(() => {
  RegoGooglePay.isCardAlreadyAdded(cardSuffix).then((result) => {
    console.log(result);
  });

  DeviceEventEmitter.addListener(
    'onAddToGooglePayHidden',
    onAddToWalletViewHidden
  );

  return () => {
    DeviceEventEmitter.removeListener(
      'onAddToGooglePayHidden',
      onAddToWalletViewHidden
    );
  };
}, []);

// ...

const pushProvisioning = {
  apiEndpoint: INSTANT_PROVISIONING_ENDPOINT,
  authorizationToken: AUTHORIZATION_TOKEN,
  cardDescription: CARD_DESCRIPTION,
};
const address = {
  addressLine1: ADDRESS_LINE_1,
  addressLine2: ADDRESS_LINE_2,
  locality: LOCALITY,
  name: NAME,
  administrativeArea: ADMINISTRATIVE_AREA,
  phoneNumber: PHONE_NUMBER,
  postalCode: POSTAL_CODE,
};
return (
  <AddCardButton
    style={styles.addCardToWalletButton}
    loading={isGooglePayLoading}
    onPress={() => {
      RegoGooglePay.handleAddToGooglePayClicked(pushProvisioning, address);
    }}
  />
);

License

MIT