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

@vgs/collect-js-react

v1.0.0

Published

VGS Collect.js React wrapper

Downloads

46,710

Readme

CircleCI

Overview

What is VGS Collect.js?

VGS Collect.js is a JavaScript library that allows you to securely collect data via any form. Instantly create custom forms that adhere to PCI, HIPAA, GDPR, or CCPA security requirements. VGS intercepts sensitive data before it hits your servers and replaces it with aliased versions while securing the original data in our vault. The form fields behave like traditional forms while preventing access to unsecured data by injecting secure iframe components.

Why do I need to use this package?

This package provides a convenient way to use VGS secure frames in the React environment by exposing field components.

Installation

Install the package using npm:

npm install @vgs/collect-js-react

How to use

1. Load VGS Collect.js script:

To stay PCI Compliant it's a mandatory to load js from our js.verygoodvault.com domain as a consequence you need to find the most suitable way to download it. There are couple of options here:

2. Define parent form wrapper component:

import { VGSCollectForm } from '@vgs/collect-js-react';

const App = () => {
  const onSubmitCallback = (status, data) => {};
  const onUpdateCallback = (state) => {};

  return (
    <VGSCollectForm
      vaultId='<vault_id>'
      environment='<environment>'
      action='/post'
      submitParameters={{}}
      onUpdateCallback={onUpdateCallback}
      onSubmitCallback={onSubmitCallback}
    >
      // Add secure fields here
    </VGSCollectForm>
  );
};
export default App;

| Property | Description | Documentation | | ------------------ | ---------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | | vaultId | A string value beginning with the prefix tnt. | Parameters.vaultId | | environment | Vault environment: sanbdox | live or region specific. | Parameters.environment | | action | Endpoint for the HTTP request. | Parameters.path | | submitParamethers? | HTTP request configuration. | Parameters.options | | onUpdateCallback? | Returns the form state in the callback. | Parameters.stateCallback | | onSubmitCallback? | Returns status and response data in the callback. | Parameters.responseCallback | | cname? | String represents CNAME the request will be submitted to. | .useCNAME() |

3. Define secure input fields:

| Collect.js input type | Collect.js React Component | Default Prop Values | | ---------------------- | ------------------------------------------- | ---------------------------------------------------------- | | text | <VGSCollectForm.TextField/> | {type: 'text', placeholder: 'Cardholder Name'} | | card-number | <VGSCollectForm.CardNumberField/> | {type: 'card-number', placeholder: 'Credit Card Number'} | | card-expiration-date | <VGSCollectForm.CardExpirationDateField/> | {type: 'card-expiration-date', placeholder: 'MM/YY'} | | card-security-code | <VGSCollectForm.CardSecurityCodeField/> | {type: 'card-security-code', placeholder: 'CVC/CVV'} | | password | <VGSCollectForm.PasswordField/> | {type: 'password', placeholder: 'Enter Password'} | | ssn | <VGSCollectForm.SSNField/> | {type: 'ssn', placeholder: 'SSN'} | | zip-code | <VGSCollectForm.ZipCodeField/> | {type: 'zip-code', placeholder: 'Zip Code'} | | number | <VGSCollectForm.NumberField/> | {type: 'number', placeholder: 'Number'} | | textarea | <VGSCollectForm/TextareaField/> | {type: 'textarea', placeholder: 'Comment'} | | file | <VGSCollectForm/FileField/> | {type: 'file', placeholder: ''} | | date | <VGSCollectForm/DateField/> | {type: 'date', placeholder: ''} |

The complete list of supported properties you can find here: https://www.verygoodsecurity.com/docs/api/collect/#api-formfield. All configuration properties available in the Reference Documentation can be passed in the component props using the same name.

Example:

import { VGSCollectForm } from '@vgs/collect-js-react';

const { CardNumberField, CardExpirationDateField, CardSecurityCodeField } =
  VGSCollectForm;

const myApp = () => {
  const onSubmitCallback = (status, data) => {};
  const onUpdateCallback = (state) => {};

  return (
    <VGSCollectForm
      vaultId='<vault_id>'
      environment='<environment>'
      action='/post'
      submitParamethers={{
        headers: {
          myHeader: 'MyHeader'
        }
      }}
      onUpdateCallback={onUpdateCallback}
      onSubmitCallback={onSubmitCallback}
    >
      <CardNumberField
        name='card-number'
        validations={['required', 'validCardNumber']}
        placeholder='XXXX XXXX XXXX XXXX'
        showCardIcon={true}
        css={{}}
      />
      <CardEpirationDateField
        name='exp-date'
        validations={['required', 'validCardExpirationDate']}
        placeholder='MM / YY'
        yearLength={2}
        css={{}}
      />
      <CardSecurityCodeField
        name='cvv'
        validations={['required', 'validCardSecurityCode']}
        placeholder='CVV'
        css={{}}
      />
    </VGSCollectForm>
  );
};

3. Field event handlers

VGS Collect.js allows listening to input changes. The library exposes the following handlers: onFocus, onBlur, onUpdate, onDelete, onKeyUp, onKeyDown, onKeyPress.

<TextField
  name='text'
  validations={['required']}
  onFocus={(info: VGSCollectFocusEventData) => {}}
  onBlur={(info: VGSCollectFocusEventData) => {}}
  onUpdate={(info: VGSCollectStateParams) => {}}
  onKeyUp={(info: VGSCollectKeyboardEventData) => {}}
  onKeyDown={(info: VGSCollectKeyboardEventData) => {}}
  onKeyPress={(info: VGSCollectKeyboardEventData) => {}}
/>

4. Hooks

In order to access the form state and response from the hook, wrap consumer component with the form in VGSCollectProvider context provider.

import {
  VGSCollectProvider,
  useVGSCollectState,
  useVGSCollectResponse,
  VGSCollectForm
} from '@vgs/collect-js-react';

const { TextField } = VGSCollectForm;

const App = () => {
  return (
    <VGSCollectProvider>
      <VGSCollectSecureForm />
    </VGSCollectProvider>
  );
};

const VGSCollectSecureForm = () => {
  const [state] = useVGSCollectState();
  const [response] = useVGSCollectResponse();

  useEffect(() => {
    if (state) {
      // do something
    }
  }, [state]);

  return (
    <VGSCollectForm
      vaultId='<vault_id>'
      environment='<environment>'
      action='/post'
    >
      <TextField
        name='cardholder-name'
        validations={['required']}
        placeholder='Cardholder name'
      />
    </VGSCollectForm>
  );
};

Documentation

Examples

Contact

If you have any questions please reach out to support or open issue here.

License

This project is licensed under the MIT license. See the LICENSE file for details.