Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

frames-react

Package Overview
Dependencies
Maintainers
0
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frames-react

> This project will soon be deprecated. We recommend exploring [Checkout.com Flow](https://www.checkout.com/docs/payments/accept-payments/accept-a-payment-on-your-website) for your payment solution. A React wrapper for Flow is also in development, so stay

  • 1.2.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
20K
increased by3.41%
Maintainers
0
Weekly downloads
 
Created
Source

⚠️ Deprecation Notice

This project will soon be deprecated. We recommend exploring Checkout.com Flow for your payment solution. A React wrapper for Flow is also in development, so stay tuned for updates.


This project is a minimalistic React wrapper of Checkout.com Frames.

:rocket: Install

npm install frames-react

:sparkles: Import the components

import { Frames, CardNumber, ExpiryDate, Cvv } from "frames-react";

:muscle: Example Usage

Make sure you wrap the card input components inside Frames wrapper component.

<Frames
  config={{
    debug: true,
    publicKey: "pk_XXX",
    localization: {
      cardNumberPlaceholder: "Card number",
      expiryMonthPlaceholder: "MM",
      expiryYearPlaceholder: "YY",
      cvvPlaceholder: "CVV",
    },
    style: {
      base: {
        fontSize: "17px",
      },
    },
  }}
  ready={() => {}}
  frameActivated={(e) => {}}
  frameFocus={(e) => {}}
  frameBlur={(e) => {}}
  frameValidationChanged={(e) => {}}
  paymentMethodChanged={(e) => {}}
  cardValidationChanged={(e) => {}}
  cardSubmitted={() => {}}
  cardTokenized={(e) => {}}
  cardTokenizationFailed={(e) => {}}
  cardBinChanged={(e) => {}}
>
  <CardNumber />
  <ExpiryDate />
  <Cvv />
</Frames>

Trigger tokenisation

To trigger the tokenisation, this wrapper has a static methods called submitCard() Here is a full example of the full flow:

<Frames
  config={{
    publicKey: "pk_XXX",
  }}
  cardTokenized={(e) => {
    alert(e.token);
  }}
>
  <CardNumber />
  <ExpiryDate />
  <Cvv />

  <button
    onClick={() => {
      Frames.submitCard();
    }}
  >
    PAY GBP 25.00
  </button>
</Frames>

Single Line component

If you want to use Frame in single frame mode you cna do it like this:

<Frames
  config={{
    publicKey: "pk_XXX",
  }}
  cardTokenized={(e) => {
    alert(e.token);
  }}
>
  <CardFrame />

  <button
    onClick={() => {
      Frames.submitCard();
    }}
  >
    PAY GBP 25.00
  </button>
</Frames>

For Carte Bancaire

If you want to accept Carte Bancaire you can pass the schemeChoice parameter in the config. This will render the scheme icon with a dropdown, and customers will be able to select their scheme. Make sure your CSS is not interfering with the display of the dropdown.

import React from "react";
import { Frames, CardNumber, ExpiryDate, Cvv, CardFrame } from "frames-react";

import "./App.css";

function App() {
  return (
    <div className="App">
      <Frames
        config={{
          publicKey: "pk_XXX",
          schemeChoice: true,
        }}
        cardTokenized={(e) => {
          alert(e.token);
        }}
      >
        <CardNumber />
        <div className="date-and-code">
          <ExpiryDate />
          <Cvv />
        </div>

        {/* Or if you want to use single frames: */}
        {/* <CardFrame /> */}

        <button
          id="pay-button"
          onClick={() => {
            Frames.submitCard();
          }}
        >
          PAY GBP 25.00
        </button>
      </Frames>
    </div>
  );
}

export default App;

:credit_card: Cardholder

If you need to inject the cardholder name on go, for cases where you render the payment form at the same time as the input for the billing and cardholder name, you can simply update the props and Frames will reflect the latest changes

const [cardholder, setCardholder] = useState({
   name: '',
   phone: '',
   billingAddress: {
       addressLine1: '',
   },
});
...
<Frames
   config={{
       cardholder: {
           name: cardholder.name,
           phone: cardholder.phone,
           billingAddress: cardholder.billingAddress,
       }
   }}
   ...
/>
...
<ExampleInput
   onChange={(e) => {
       setCardholder({
           name: e.target.value,
           phone: '7123456789',
           billingAddress: {
               addressLine1: 'London Street',
           },
       });
   }}
/>

The props

propdescription
configThe config is an object following the reference of Checkout.com Frames.
readyTriggered when Frames is registered on the global namespace and safe to use.
frameActivatedTriggered when the form is rendered.
frameFocusTriggered when an input field receives focus. Use it to check the validation status and apply the wanted UI changes.
frameBlurTriggered after an input field loses focus. Use it to check the validation status and apply the wanted UI changes.
frameValidationChangedTriggered when a field's validation status has changed. Use it to show error messages or update the UI.
paymentMethodChangedTriggered when a valid payment method is detected based on the card number being entered. Use this event to change the card icon.
cardValidationChangedTriggered when the state of the card validation changes.
cardSubmittedTriggered when the card form has been submitted.
cardTokenizedTriggered after a card is tokenized.
cardBinChangedTriggered when the user inputs or changes the first 8 digits of a card.

Static functions

functiondescription
initInitializes (or re-initializes) Frames.
isCardValidReturns the state of the card form validation.
submitCardSubmits the card form if all form values are valid.
addEventHandlerAdds a handler that is called when the specified event is triggered.
removeEventHandlerRemoves a previously added handler from an event by providing the event name and handler as arguments in the method.
removeAllEventHandlersRemoves all handlers added to the event specified.
enableSubmitFormRetains the entered card details and allows you to resubmit the payment form.

FAQs

Package last updated on 26 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc