Socket
Book a DemoInstallSign in
Socket

@gr4vy/embed-react

Package Overview
Dependencies
Maintainers
1
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gr4vy/embed-react

Embed a credit card form in your React app and store the card details, authorize the card, and capture a transaction.

npmnpm
Version
0.0.28
Version published
Weekly downloads
680
-17.27%
Maintainers
1
Weekly downloads
 
Created
Source

Gr4vy Embed for React

NPM Version License

Quickly embed Gr4vy in your React app to store card details, authorize payments, and capture a transaction.

Use @gr4vy/embed in a non-React application.

Usage

Via the command line, install this package as follows.

npm install @gr4vy/embed-react --save-prod
# yarn add @gr4vy/embed-react --save

Get started

To use Gr4vy Embed, import the Gr4vyEmbed component.

const Gr4vyEmbed = require(`@gr4vy/embed-react`)
// import Gr4vyEmbed from (`@gr4vy/embed-react)

<Gr4vyEmbed
  amount={1299}
  currency='USD'
  frameHost='127.0.0.1:8080'
  apiHost='127.0.0.1:3100'
  bearerToken='...'
/>

Options

The options for this integration are as follows.

FieldDefaultDescription
amountnullThe amount to authorize or capture in the specified currency. only.
apiHostnullRequired - The host (both hostname and port) of the Gr4vy API server to use.
bearerTokennullRequired - The server-side generated JWT token used to authenticate any of the API calls.
capturetrueControls the behaviour of the integration, defining if it should perform an authorization, as well as a capture
currencynullA valid, active, 3-character ISO 4217 currency code to authorize or capture the amount for.
frameHostnullRequired - The host (both hostname and port) of the server that hosts the Gr4vy payment form.
showButtonfalseSetting this value to true will show a Submit button within the UI. This is useful when the UI around this element does not contain a button
onEventnullAn optional event handler to bind to the form. This is called for various events, more on that below.
externalIdentifiernullAn optional external identifier that can be supplied. This will automatically be associated to any resource created by Gr4vy and can subsequently be used to find a resource by that ID
buyerIdnullAn optional ID for a Gr4vy buyer. The transaction will automatically be associated to a buyer with that ID. If no buyer with this ID exists then it will be ignored.
buyerExternalIdentifiernullAn optional external ID for a Gr4vy buyer. The transaction will automatically be associated to a buyer with that external ID. If no buyer with this external ID exists then it will be ignored. This option is ignored if the buyerId is provided.
form#orderSpecifies the HTML <form> element or a query for the element to attach additional inputs to. Gr4vy will automatically insert a hidden Input field into this form containing the transaction ID.

Events

The onEvent option can be used to listen to certain events emitted from the form.

<Gr4vyEmbed
  amount={1299}
  currency='USD'
  onEvent={(name, data) => {...}}
  ...
/>
})

Currently, we Gr4vy Embed emits the following events.

agumentError

Returned when the initial input (element, options) are incorrectly formatted or missing.

{
  "code": "argumentError",
  "option": "currency",
  "message": "must be a valid number"
}

formUpdate

Returned when the form updates. Currently this only informs the developer if the form is valid.

{
  "valid": false
}

transactionCreated

Returns a full transaction object when the transaction was successfully created.

{
  "type": "transaction",
  "id": "8724fd24-5489-4a5d-90fd-0604df7d3b83",
  "status": "pending",
  ...
}

apiError

Returned when the form encounters an API error.

{
  "type": "error",
  "code": "unauthorized",
  "status": 401,
  "message": "No valid API authentication found",
  "details": [ ]
}

License

This project is provided as-is under the MIT license.

FAQs

Package last updated on 06 Jan 2021

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