1.2.4 • Published 3 years ago

expo-stripe-purchase v1.2.4

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

expo-stripe-purchase

GitHub Repo

NPM Registry

Make purchases directly in your app without ejecting from the Expo Managed Workflow. Avoid all the bugs of other webview solutions, this repo is the product of spending hours fixing other, deprecated solutions.

Return a simple token from the Stripe API on succesfull checkouts.

This repo would not be possible without the hard work of this repo.

Important Usage

  1. This component works best when returned as the primary component / view. Do not try to nest it within other components.
  2. Do not pass decimals into the component. Instead, pass numbers with the hundreth's place included.
  3. This is intended to be used as a full screen checkout page, if that is not your intended usage - you may need to clone this repo and fiddle with the webview yourself (webviews are difficult to use like this in my experience, please show me I am wrong)

Props

PropsTypeDescriptionRequired
publicKeystringApi Key to connect to Stripe (i.e. pk_kjfsdg_shffdg)true
storeNamestringStore name to displaytrue
descriptionstringDescription of the purchase being madetrue
imageUrlstringStore image url to displaytrue
amountnumberAmount to chargetrue
currencystringType of currency to be usedtrue
allowRememberMebooleanAllow for easier future checkoutstrue
emailstringPre-populated email addresstrue
styleobjectStyle the webview, not the inner-components (i.e. cannot style the button / colors)false
onClosefunctionCalled when webview is closedtrue
onPaymentSuccessfunctionCalled after successfull payment made (token: string) =>true

Example

Checkout Webview Demo

import ExpoStripePurchase from 'expo-stripe-purchase';

onClose = () => {
    // handle close (i.e. navigate back)
}

onPaymentSuccess = (token: string) => {
    // handle saving token on backend
    // will automatically call 'onClose'
}

render () {
    return (
        <ExpoStripePurchase
            publicKey="FILL IN WITH YOUR DATA"
            amount={100000}
            imageUrl="www.clever-image-url.com"
            storeName="Clever Store Name"
            description="Clever product description."
            currency="USD"
            allowRememberMe={true}
            prepopulatedEmail="clever_email@clever.com"
            onClose={this.onClose}
            onPaymentSuccess={(token: string) => this.onPaymentSuccess(token)}
            style={{width: 1000, alignSelf: 'center'}}
        />
    )
}

For more information please see the Stripe Docs

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.1.9

4 years ago

1.1.8

4 years ago

1.1.7

4 years ago

1.1.6

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago