1.1.2 • Published 13 days ago

@teamteanpm2024/eius-at-voluptatibus v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
13 days ago

React Stripe.js

React components for Stripe.js and Elements.

build status npm version

Requirements

The minimum supported version of React is v16.8. If you use an older version, upgrade React to use this library. If you prefer not to upgrade your React version, we recommend using legacy react-stripe-elements.

Getting started

Documentation

Minimal example

First, install React Stripe.js and Stripe.js.

npm install @teamteanpm2024/eius-at-voluptatibus @stripe/stripe-js

Using hooks

import React, {useState} from 'react';
import ReactDOM from 'react-dom';
import {loadStripe} from '@stripe/stripe-js';
import {
  PaymentElement,
  Elements,
  useStripe,
  useElements,
} from '@teamteanpm2024/eius-at-voluptatibus';

const CheckoutForm = () => {
  const stripe = useStripe();
  const elements = useElements();

  const [errorMessage, setErrorMessage] = useState(null);

  const handleSubmit = async (event) => {
    event.preventDefault();

    if (elements == null) {
      return;
    }

    // Trigger form validation and wallet collection
    const {error: submitError} = await elements.submit();
    if (submitError) {
      // Show error to your customer
      setErrorMessage(submitError.message);
      return;
    }

    // Create the PaymentIntent and obtain clientSecret from your server endpoint
    const res = await fetch('/create-intent', {
      method: 'POST',
    });

    const {client_secret: clientSecret} = await res.json();

    const {error} = await stripe.confirmPayment({
      //`Elements` instance that was used to create the Payment Element
      elements,
      clientSecret,
      confirmParams: {
        return_url: 'https://example.com/order/123/complete',
      },
    });

    if (error) {
      // This point will only be reached if there is an immediate error when
      // confirming the payment. Show error to your customer (for example, payment
      // details incomplete)
      setErrorMessage(error.message);
    } else {
      // Your customer will be redirected to your `return_url`. For some payment
      // methods like iDEAL, your customer will be redirected to an intermediate
      // site first to authorize the payment, then redirected to the `return_url`.
    }
  };

  return (
    <form onSubmit={handleSubmit}>
      <PaymentElement />
      <button type="submit" disabled={!stripe || !elements}>
        Pay
      </button>
      {/* Show error message to your customers */}
      {errorMessage && <div>{errorMessage}</div>}
    </form>
  );
};

const stripePromise = loadStripe('pk_test_6pRNASCoBOKtIshFeQd4XMUh');

const options = {
  mode: 'payment',
  amount: 1099,
  currency: 'usd',
  // Fully customizable with appearance API.
  appearance: {
    /*...*/
  },
};

const App = () => (
  <Elements stripe={stripePromise} options={options}>
    <CheckoutForm />
  </Elements>
);

ReactDOM.render(<App />, document.body);

Using class components

import React from 'react';
import ReactDOM from 'react-dom';
import {loadStripe} from '@stripe/stripe-js';
import {
  PaymentElement,
  Elements,
  ElementsConsumer,
} from '@teamteanpm2024/eius-at-voluptatibus';

class CheckoutForm extends React.Component {
  handleSubmit = async (event) => {
    event.preventDefault();
    const {stripe, elements} = this.props;

    if (elements == null) {
      return;
    }

    // Trigger form validation and wallet collection
    const {error: submitError} = await elements.submit();
    if (submitError) {
      // Show error to your customer
      return;
    }

    // Create the PaymentIntent and obtain clientSecret
    const res = await fetch('/create-intent', {
      method: 'POST',
    });

    const {client_secret: clientSecret} = await res.json();

    const {error} = await stripe.confirmPayment({
      //`Elements` instance that was used to create the Payment Element
      elements,
      clientSecret,
      confirmParams: {
        return_url: 'https://example.com/order/123/complete',
      },
    });

    if (error) {
      // This point will only be reached if there is an immediate error when
      // confirming the payment. Show error to your customer (for example, payment
      // details incomplete)
    } else {
      // Your customer will be redirected to your `return_url`. For some payment
      // methods like iDEAL, your customer will be redirected to an intermediate
      // site first to authorize the payment, then redirected to the `return_url`.
    }
  };

  render() {
    const {stripe} = this.props;
    return (
      <form onSubmit={this.handleSubmit}>
        <PaymentElement />
        <button type="submit" disabled={!stripe}>
          Pay
        </button>
      </form>
    );
  }
}

const InjectedCheckoutForm = () => (
  <ElementsConsumer>
    {({stripe, elements}) => (
      <CheckoutForm stripe={stripe} elements={elements} />
    )}
  </ElementsConsumer>
);

const stripePromise = loadStripe('pk_test_6pRNASCoBOKtIshFeQd4XMUh');

const options = {
  mode: 'payment',
  amount: 1099,
  currency: 'usd',
  // Fully customizable with appearance API.
  appearance: {
    /*...*/
  },
};

const App = () => (
  <Elements stripe={stripePromise} options={options}>
    <InjectedCheckoutForm />
  </Elements>
);

ReactDOM.render(<App />, document.body);

TypeScript support

React Stripe.js is packaged with TypeScript declarations. Some types are pulled from @stripe/stripe-js—be sure to add @stripe/stripe-js as a dependency to your project for full TypeScript support.

Typings in React Stripe.js follow the same versioning policy as @stripe/stripe-js.

Contributing

If you would like to contribute to React Stripe.js, please make sure to read our contributor guidelines.

invariantdeterministicemojiprivate dataspectoArrayweakseteventEmitterindicatordom-testing-libraryconsumepolyfillpluginshamstyleefficientwaapideep-copyerror-handlingtelephonesignalsaccessorJSON-SchemaECMAScript 2019throttlefoldertoobjectmruoncewindowsemithooksreadablestreamexpressaccessibilitytypedbreaksameValueZeropositivepoint-freecss lessisConcatSpreadableinternal slotiesetPrototypeOfwritableratelimitrapidpnpm9watchingjestbundlersettingsfast-deep-copywraptypeerrorhardlinkswarningoptiontypevaliddataexit-codetouchdefinePropertyconsolefast-deep-clonewatchFilea11yairbnbvariablesauthArray.prototype.filteromitpackage.jsoneventsinterruptsmkdirschaisanitizationthreeesUnderscoreFloat32Arraymoveredux-toolkitRegExp.prototype.flagsavaelectroncssstableextraESnextpromiseruntimecurriedhasOwnhigher-ordervaluesjsdomcacheES3connectupanimationassertionansibluebirdArrayBuffer.prototype.slicerangeerrorargvautoprefixerschemeflatMapequalityjson-schema-validatorcallbindvariables in csswhichcrypttsTypeBoxReactiveXjsonnested cssfullcomputed-typesmobileextensionECMAScript 2021callmimechinesecollectionpostcssframeridlegraphqlobjduplexmochacallboundquotewaitsliceexecjsonschemacollection.es6RegExp#flagsStyleSheetrequireprototypemonorepoparentapiisprotocol-buffersgettertoSortedsortassertseslintconfigRxcss variablejsdiffcensorfast-copyWeakSetArray.prototype.findLastsymbolsoffsetfunctionsproppackagefunctionaltoolsless compilerhookformdotenvboundUint32ArrayforminstallerECMAScript 5artfseventsutil.inspectUint8ClampedArrayschemaregularnamesstatusnodearrays$.extendperformancewordbreakloadingnodejsponyfillTypeScriptmapfindLastIndexparsercolorfetchfile systemsignalflattypesafesortedprotoreact-hookstest.envrfc4122configReflect.getPrototypeOfsetterUint16ArrayqueueMicrotaskuninstallincludesfpES2017form-validationimmerwatchreact-hook-formreducerimmutablequeueassertvalidatesymlinklogstylesintrinsicmakepersistentasciies2016iteratornameoperating-systemlinkgroupcss nestingloggerconstclibyteOffsettypedarraysurldeleteio-tszodsequencedirectoryajaxmiddlewareInt16ArrayReactiveExtensionsdatastructureprogresseast-asian-widthObservablesjson-schematranspilerglobes-shimspromisessyntaxspinnerscall-boundspringecmascriptcurlenvtacitviewfind-upcompiler256Uint8ArrayobjectES5getOwnPropertyDescriptorless mixinses7argumentes8yamlbootstrap lesslrutaskhandlersfileCSSStyleDeclarationcolorsyup__proto__l10nURLSymbol.toStringTaglastbatchshrinkwrapdescriptorsfixed-widthfsjsonpathscheme-validationiterationstarterprocessnegative zerotrimStartprotobuflesscsses2017styled-componentsmatchesserializekoreanECMAScript 3npmpropertiesinstallharmonyECMAScript 2023mergesymlinksIteratorshellflagzerosymbolrequestspinnerdataViewstreams2testinggroupByjsreusegetPrototypeOfES8eslint-pluginawesomesaucefastlimitedwhatwgsanitizeregular expressiontc39react posestatelesspackage managerwalkingpostcss-pluginreacttranspilerandomES7dragendergesturesnegativetapcontainsbusysetcommandInt32ArrayES2020serializermake dirsuperagentECMAScript 2015gdprmimetypesutilitiesshimhelperstypescriptttychecklimitassignstringifyes-abstractCSSdayjsmatchinputsidemodulelanguageargparseinternalreaddeepclonepyyamlastbootstrap css@@toStringTagstylesheetTypedArrayless cssES2015styleguidelazyformatString.prototype.trimcodeshashmacosECMAScript 2020estreeES2019_.extendprivateserializationjsxstringerrorfunctionpushwgetescapeWebSocketcommand-lineObject.keysasyncopenreact animationmkdiri18nESsharedtslibString.prototype.matchAllmixinstypanionwalksigtermArray.prototype.includestraversefindES2018Object.definePropertycode points6to5ES6joiarktypefastcopymkdirpJSONtapebddrmshebang[[Prototype]]es2015figletworkerFloat64ArraygetintrinsicapolloterminalMapstylingletspeedclassesawaitSymbolreduxconcurrencyloggingbrowserslistpicomatchBigInt64ArrayHyBirm -frPromisedomnoperemoveperformantregextermsigintObject.iscoerciblewriteECMAScript 2017throatRxJSformattingqueryxssexpressionMicrosoftECMAScript 2016defineuuidrecursivegetdatecreatewebregular expressionsconcatMapArray.prototype.flatrgbconfigurableflagssuperstructpathlockfileparseiteratesafelinewrapfast-clonelintpropertykarmaYAMLwatcherresolvextermbindbundlingparentsrmdirObject.entriesoptimistargstrimstringifierconcatpreserve-symlinksvisualObject.assignStreamES2021typesprunevaluesetImmediategetoptbytegradients css3httpstrimRightfromguidreduceFunction.prototype.namemetadatapasswordclientObservablechromeAsyncIteratorjson-schema-validationeventDispatcherfilterarraypipeformsqsPushECMAScript 6ES2016hasvalidationflattenhttpfindLasttddArray.prototype.flattenequalbrowserlistES2022es2018jasminesharedarraybufferbannerclonelookes6textramdatyped arrayreadablees-shim APIframeworkfantasy-landworkspace:*ArrayBuffertestermodulesfastclonedeep-clonediffarraybufferkeysWebSocketstypeoflibphonenumberregexpprettycryptojQuerystructuredClonechromiumObject.fromEntriesbcryptObject.valuesArray.prototype.flatMapuser-streamsbuffersArray.prototype.findLastIndexkeyInt8ArraysearchtostringtaglinuxpurestreamsdebuginferencestreamObjectcore-jsposevalidatorsyntaxerrortimeinspectbabel-corereact-testing-libraryphonelistenersutilcolourenumerable
1.1.1

14 days ago

1.1.2

13 days ago

1.0.1

15 days ago

1.0.0

16 days ago