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

nativescript-paypal

v2.6.9

Published

A NativeScript module providing access to PayPal SDK.

Downloads

74

Readme

npm npm

NativeScript PayPal

NativeScript module for implementing simple PayPal checkouts using official SDK.

Donate

License

MIT license

Platforms

  • Android

Roadmap

Installation

Run

tns plugin add nativescript-paypal

inside your app project to install the module.

Android

AndroidManifest.xml

Keep sure to define the following permissions, activities and other data in your manifest file:

<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />    
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.VIBRATE" />
    
    <action android:name="android.intent.action.MAIN" />
 
    <category android:name="android.intent.category.LAUNCHER" />

    <uses-feature android:name="android.hardware.camera"
                  android:required="false" />
    <uses-feature android:name="android.hardware.camera.autofocus"
                  android:required="false" />

    <application>
        <activity android:name="com.paypal.android.sdk.payments.PaymentActivity" />
        <activity android:name="com.paypal.android.sdk.payments.LoginActivity" />
        <activity android:name="com.paypal.android.sdk.payments.PaymentMethodActivity" />
        <activity android:name="com.paypal.android.sdk.payments.PaymentConfirmActivity" />
        <activity android:name="com.paypal.android.sdk.payments.PayPalFuturePaymentActivity" />
        <activity android:name="com.paypal.android.sdk.payments.FuturePaymentConsentActivity" />
        <activity android:name="com.paypal.android.sdk.payments.FuturePaymentInfoActivity" />
        <activity android:name="io.card.payment.DataEntryActivity" />
		
	    <service android:name="com.paypal.android.sdk.payments.PayPalService"
                 android:exported="false" />
    </application>
    
</manifest>

app.gradle

Keep sure to have a reference to the PayPal SDK in your app/App_Resources/Android/app.gradle file of your project.

dependencies {
    // PayPal
    compile 'com.paypal.sdk:paypal-android-sdk:2.14.2'
}

Demo

For quick start have a look at the demo/app/main-view-model.js file of the demo app to learn how it works.

Otherwise ...

Usage

Include

Include the module in your code-behind:

var PayPal = require("nativescript-paypal");

Initialize

Initialize the environment:

function onPageLoaded(args) {
    PayPal.init({
        clientId: '<YOUR-CLIENT-ID>'
    });
}
exports.onPageLoaded = onPageLoaded;

The (optional) object that is submitted to the PayPal.init function has the following structure:

Properties

| Name | Description | | ----- | ----------- | | acceptCreditCards | [OPTIONAL] Accept credit cards or not. Default: (true) | | account | [OPTIONAL] Defines information about the account. | | clientId | The PayPal ID for your app that was generated in the PayPal Developer Portal. | | defaults | [OPTIONAL] Defines default data. | | environment | [OPTIONAL] The environment to use. Possible values are: 0 = ENVIRONMENT_SANDBOX, 1 = ENVIRONMENT_PRODUCTION, 2 = ENVIRONMENT_NO_NETWORK. | | onActivityResult | [OPTIONAL] Logic for Activity.onActivityResult method of the underlying Android activity that is used to invoke logic for other modules, e.g. | | rememberUser | [OPTIONAL] Remember the last user for the next payment or not. Default: (true) | | requestCode | [OPTIONAL] The custom request code to use (e.g. for Activity.onActivityResult Android method). Default: 230958624 |

account

The account object has the following structure:

Properties

| Name | Description | | ----- | ----------- | | name | [OPTIONAL] The name of the merchant. | | privacyPolicy | [OPTIONAL] The URI to the privacy policy of the merchant. | | userAgreement | [OPTIONAL] The URI to the user agreement of the merchant. |

defaults

The defaults object has the following structure:

Properties

| Name | Description | | ----- | ----------- | | userEmail | [OPTIONAL] The default user email. | | userPhone | [OPTIONAL] The default user phone. | | userPhoneCountryCode | [OPTIONAL] The default user phone country code. |

Start a payment

function buyProduct(args) {
    // configure
    var payment = PayPal.newPayment()
        .setDescription('My product')
        .setAmount(59.79);

    // start checkout / payment
    payment.start(function(cbResult) {
        switch (cbResult.code) {
            case 0:
                // SUCCESS
                // pay key is stored in 'cbResult.key'
                break;
                
            case 1:
                // operation was CANCELLED
                break;
                
            case -1:
                // checkout FAILED
                break;
                
            case -2:
                // "unhandled exception"
                break;
        }
    });
}
exports.buyProduct = buyProduct;

The payment object that is created by PayPal.newPayment function has the following structure.

Methods

| Name | Description | | ----- | ----------- | | getAmount | Gets the price. Example: var a = payment.getAmount(); | | getBnCode | Gets the BN code. Example: var bc = payment.getBnCode(); | | getCurrency | Gets the custom currency to use. Example: var c = payment.getCurrency(); | | getCustom | Gets the custom value for the payment. Example: var c = payment.getCustom(); | | getDescription | Gets the (short) description. Example: var d = payment.getDescription(); | | getDetails | Gets an object with the payment details. Example: var d = payment.getDetails(); | | getInvoiceNumber | Gets the custom invoice number. Example: var i = payment.getInvoiceNumber(); | | setAmount | Sets the price. Example: payment.setAmount(1.25); | | setBnCode | Sets a BN code. Example: payment.setBnCode('Your BN Code'); | | setCurrency | Sets the custom currency to use. Example: payment.setCurrency('EUR'); | | setCustom | Sets the custom value for the payment. Example: payment.setCustom('MY-PRODUCT-ID'); | | setDetails | Sets details (shipping, subtotal & tax). Example: payment.setDetails(4.95, 199.99, 1.19); | | setDescription | Sets the (short) description. Example: payment.setDescription('This is really awesom!'); | | setInvoiceNumber | Sets the custom invoice number. Example: payment.setInvoiceNumber('MY_INVOICE-666'); | | start | Starts the payment / checkout process. |

start

The callback that is submitted to the payment.start method receives an object with the following properties:

| Name | Description | | ----- | ----------- | | code | The result code. 0 = success, -3 = JSON parse error, -2 = unhandled exception, -1 = checkout failed, 1 = cancelled, 2 = no confirm data, 3 = no JSON data | | key | The key of the payment (if code = 0)

Enhancements

Logging

If you want to get the logging output of the module, you can use PayPal.addLogger function to add a callback that receives a message from the module:

PayPal.addLogger(function(msg) {
    console.log('[nativescript-paypal]: ' + msg);
});