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

react-native-sc-applepay

v0.2.5

Published

SkipCash ApplePay ReactNative Package; The package facilitates SkipCash Apple Pay integration within your ReactNative app.

Downloads

100

Readme

react-native-sc-applepay

SkipCash ApplePay ReactNative Package; The package facilitates SkipCash Apple Pay integration within your ReactNative app.

Installation

npm install react-native-sc-applepay

License

Apache License 2.0

APP SAMPLE CODE

import React, { useEffect, useState, useRef} from 'react';

import { StyleSheet, View, Button, NativeEventEmitter, Alert, Platform, TextInput } from 'react-native';
import { initiatePayment, PaymentData, PaymentResponse,
   ScApplepay, isWalletHasCards, setupNewCard } from 'react-native-sc-applepay';


// tsx
// import { type NativeEventEmitter as NEE } from 'react-native';
// import {type EmitterSubscription as ES} from 'react-native';

export default function App() {
  const paymentData = new PaymentData();

  const eventSubscription         = useRef(null);
  const eventEmitter              = useRef(null);

  const [firstName, setFirstName] = useState('');
  const [lastName, setLastName]   = useState('');
  const [phone, setPhone]         = useState('');
  const [email, setEmail]         = useState('');
  const [amount, setAmount]       = useState('');

  // here pass the name of the merchant identifier(you need to create a new one
  // from apple developer account of ur app ). 
  // please reachout to us on [email protected] to get the manual that explains how
  // to generate your merchant identifier and to sign it with us to be able to use applepay
  paymentData.setMerchantIdentifier('');
  // add your payment end point - you should create ur own endpoint for your merchant account
  // PLEASE REFER TO https://dev.skipcash.app/doc/api-integration/ for more information
  // on how to request a new payment (payment link) you need to implement that for your 
  // backend server to create endpoint to request a new payment and return the details you receive from skipcash server this package will use this endpoint to process your customer payment using applepay.
  // when u complete setuping & testing ur endpoint please pass the link to below setPaymentLinkEndPoint //// method.
  // 
  paymentData.setPaymentLinkEndPoint('HERE PASS YOUR ENDPOINT URL')
  /* add authorizartion header used to protect you endpoint from unathorized access */
  paymentData.setAuthorizationHeader("");
  
  useEffect(() => {

     if (Platform.OS === 'ios'){

        eventEmitter.current = new NativeEventEmitter(ScApplepay);

        eventSubscription.current = eventEmitter.current.addListener(
          'applepay_response', 
          
          (paymentResponse) => {
            let response: PaymentResponse = PaymentResponse.fromJson(paymentResponse);

        
            console.log(`isSuccess: ${response.isSuccess} | transactionId: ${response.transactionId} | PaymentID: ${response.paymentId} 
            | returnCode: ${response.returnCode} | errorMessage: ${response.errorMessage}`);


            /* 
              Handle payment response here...
              you can get the payment details using the payment id after successful payment request.
              send a GET request to SkipCash server `/api/v1/payments/${response.paymentId}`
              and include your merchant - client id in the authorization header request to get 
              the payment details. 
              for more details please refer to https://dev.skipcash.app/doc/api-integration/ 
            */
          }
      );
    }

    return () => {
      
      if(Platform.OS === 'ios' && eventSubscription.current){
        eventSubscription.current.remove();
      }
    };

  }, []);

  const initiateApplePayPayment = async () => {
    paymentData.setSummaryItem('Tax', '0.0'); // set summary item
    paymentData.setSummaryItem('Total', amount); // set summary item

    paymentData.setFirstName(firstName);
    paymentData.setLastName(lastName)
    paymentData.setPhone(phone);
    paymentData.setEmail(email)
    paymentData.setAmount(amount)
    paymentData.setTransactionId("") // Optional

    const paymentDataJson = JSON.stringify(paymentData);

    initiatePayment(paymentDataJson);
  }


  return (
    <View style={styles.container}>
      <TextInput style={styles.textInput} placeholder='FirstName' onChangeText={(text)=>{setFirstName(text)}} />
      <TextInput style={styles.textInput} placeholder='LastName' onChangeText={(text)=>{setLastName(text)}} />
      <TextInput style={styles.textInput} placeholder='Phone' onChangeText={(text)=>{setPhone(text)}} />
      <TextInput style={styles.textInput} placeholder='Email' onChangeText={(text)=>{setEmail(text)}} />
      <TextInput style={styles.textInput} placeholder='Amount' onChangeText={(text)=>{setAmount(text)}} />


      <Button title='Initiate Payment' onPress={
        async ()=>{ 
          // make sure all fields are filled

          await isWalletHasCards().then( // check for cards in wallet
            response => {
              if(response){
                initiateApplePayPayment(); // initiate a payment if there is a ready card
              }else{ // if no cards
                setupNewCard(); // setup a new card 
              }
            }
          );
          
      }} />

      <Button title='Setup A Card' onPress={
        ()=>{
            setupNewCard(); //setup a new card
          }
        }
      ></Button>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
  box: {
    width: 60,
    height: 60,
    marginVertical: 20,
  },

  textInput: {
    width: '90%',
    marginVertical: 10,
    height: 40,
    padding: 30,
    borderWidth: 2,
    borderRadius: 15
  }
});