npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-gpay-button

v1.0.2

Published

Cordova plugin for displaying Google Pay Button

Downloads

11

Readme

cordova-plugin-gpay-button

A plugin to display the native GPay button as googd as possible into awebview.

Installation:

For stable relases type:

cordova plugin add cordova-plugin-gpay-button

For latest releases type:

cordova plugin add https://github.com/bkamenov/cordova-plugin-gpay-button

API & Usage:

IMPORTANT: You may have ONLY one instance of the GPay button at a time.

const environment = "TEST"; // GooglePay environment: "TEST" or "PRODUCTION"
const buttonOptions = {
  buttonTheme: "DARK", // "DARK" or "LIGHT"
  buttonType: "BUY", // options: "BOOK", "BUY", "CHECKOUT", "DONATE", "ORDER", "PAY", "PLAIN", "SUBSCRIBE"
  buttonCornerRadius: 4, // any positive integer up to 100
};

//You can adjust it as you wish (see google.payments.api.PaymentDataRequest)
const paymentDataRequest = {
   apiVersion: 2,
  apiVersionMinor: 0,
  allowedPaymentMethods: [
    {
      type: 'CARD',
      parameters: {
        allowedAuthMethods: ['PAN_ONLY', 'CRYPTOGRAM_3DS'],
        allowedCardNetworks: ['AMEX', 'MASTERCARD', 'VISA']
      },
      tokenizationSpecification: {
        type: 'PAYMENT_GATEWAY',
        parameters: {
          gateway: 'example', //This is your payment service provider e.g. "stripe"
          gatewayMerchantId: 'exampleGatewayMerchantId' //Your merchant ID within "stripe
        }
      }
    }
  ],
  merchantInfo: {
    //merchantId: '01234567890123456789', //Your Google merchant ID. Uncomment in PRODUCTION with real ID.
    merchantName: 'Example Merchant' //Your Google merchant name
  },
  transactionInfo: {
    totalPriceStatus: 'FINAL',
    totalPrice: '12.34',
    currencyCode: 'USD',
    countryCode: 'US'
  }
};

const buttonAnchor = document.getElementById("gpay-anchor");
if (!buttonAnchor) {
  console.error("Missing GPay button anchor!");
  return;
}

const rect = buttonAnchor.getBoundingClientRect();
const buttonPosition = {
  top: rect.top,    // integer in pixels. Negative values are allowed. 
  left: rect.left   // integer in pixels. Negative values are allowed. 
};

cordova.plugins.GooglePayButton.create(envirionment, buttonOptions, paymentDataRequest, 
(result) => {
  if(result.canMakePayments) { //You may show the button and use it
    // Set button position - this method is useful if your button 
    // position never changes or changes from time to time.
    // You can call the position method as many times as you wish.
    cordova.plugins.GooglePayButton.setPosition(buttonPosition);

    // If your GPay button needs to be scrolled or just adjusted to a 
    // changing position of the anchor element, you can make this smoothly
    // by calling:
    cordova.plugins.GooglePayButton.attachToElement(buttonAnchor);
    // NOTE: To unanchor the GPay button pass 'null' as an argument to 'attachToElement'.
    // NOTE: You can set another anchor element for the GPay button anytime.

    // Show the button. Passing 'false' will hide the GPay button.
    // NOTE: You can show/hide the button anytime.
    cordova.plugins.GooglePayButton.setVisibility(true);

    // Set the payment handler.
    // paymentResult.paymentData is of type google.payments.api.PaymentData
    cordova.plugins.GooglePayButton.setPaymentHandler((paymentResult) => {
      if (paymentResult.status === "OK") {
        const paymentToken = paymentResult.paymentData.paymentMethodData.tokenizationData.token;
        //TODO: Send the token to your server and process it with your gateway (e.g. stripe)
      }
      else if (paymentResult.status === "ERROR") {
        console.error("GPay error: " + paymentResult.error!);
      }
      else if (paymentResult.status === "CANCELED") {
        console.log("User canceled the payment. Nothing bad happened.");
      }
    });
  }
},
(error) => {
  console.error("GPay button error: " + error);
});

...

// At some point you should have finished your work with the button
// and it should be destroyed by calling:
cordova.plugins.GooglePayButton.destroy();
// NOTE: If you just need to change the price or so, but you are
// still on the same page you can just call:
// 'cordova.plugins.GooglePayButton.create' again - it will
// destroy the previous instance for you, so you won't need to 
// explicitly call the 'destroy()' method.

You may define an anchor element for your button (the button is a native Android view drawn over the Cordova's webview and position handling is needed).

The button anchor should be with the size of the GPay button as it is defined by buttonType in the create method. You can set the background of your anchor element to red, open the Chrome debugger and play with the CSS to find the right size for your button type. Finally, you can set the background of the anchor element to transparent.

...
<div id="gpay-anchor" style="width: 302px; height: 51px; background-color: red"></div>
...

If you like my work and want more nice plugins, you can get me a beer or stake.