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

rn-square-mobile-payments

v0.2.2

Published

A minimal React Native wrapper for Square's Mobile Payments SDK

Downloads

49

Readme

rn-square-mobile-payments

A React Native wrapper for Square's Mobile Payments SDK. This is not meant to be a full and complete implementation of all the functionality that is included in the native sdks and will not be actively maintained & supported. If there is some functionality that is missing here that you need, feel free to contribute a pull request!

Please review the requirements and limitations of the native sdks for iOS and Android.

Installation

// npm
npm install rn-square-mobile-payments

// or yarn
yarn add rn-square-mobile-payments

iOS Additional Setup

  1. Ensure you have the proper privacy permissions in your application's Info.plist
  2. Install pods from your ios directory with:
pod install
  1. Add build phase to your target. On your application targets’ Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), and add the following contents to the script area below the shell:
SETUP_SCRIPT=${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}"/SquareMobilePaymentsSDK.framework/setup"
if [ -f "$SETUP_SCRIPT" ]; then
  "$SETUP_SCRIPT"
fi
  1. Inside your app's AppDelegate.m, initialize the sdk inside the didFinishLaunchingWithOptions function:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  ...
  // Initialize with your Square Application Id
  [SQMPMobilePaymentsSDK initializeWithApplicationLaunchOptions:launchOptions squareApplicationID:@"your square application id"];

  ...
}

Android Addtional Setup

  1. Ensure you have the proper device permissions.
  2. Add the maven repository to your app's build.gradle file (app/build.gradle)
repositories {
  ...
  maven {
    url "https://sdk.squareup.com/public/android"
  }
}
  1. Inside your MainApplication file, initialize the sdk:
import com.rnsquaremobilepayments.RNSquareMobilePaymentsModule
...

override fun onCreate() {
  super.onCreate()
  ...
  RNSquareMobilePaymentsModule.initializeMobilePaymentsSdk("your square application id", this)
}

Usage

The following functions are provided for you to use as direct implementations of the native sdks.

await authorizeMobilePaymentsSdk(accessToken, locationId);
await deauthorizeMobilePaymentsSdk();
await startPairing();
await stopPairing()
await startPayment(paymentParams);
await cancelPayment()
await addReaderObserver();
await removeReaderObserver();
await presentSettings();
await getReaders();
await getAuthorizationState();
await getAuthorizationLocation();
await forgetReader(readerId);

In addition, a useSquareEventListener hook has also been provided to tap into Square Reader events (reader added, removed, and changed):

import { useSquareEventListener, ReaderEventType } from 'rn-square-mobile-payments';

...

const [pairedReaders, setPairedReaders] = useState([]);

useSquareEventListener(ReaderEventType.READER_ADDED, ({ readerInfo }) => {
  console.log('Reader Added Event with serial: ', readerInfo.serialNumber);
  setPairedReaders((prevReaders) => [
    readerInfo,
    ...prevReaders
  ]);
});

Example

There is also an example app in the example folder at the root of this project, where you are able to see most of the functionality in action.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT