VGS Collect.js React wrapper
npm install @vgs/collect-js-react
React wrapper for VGS Collect.js fields
Explore the docs »
Report Bug
·
Request Feature

- Overview
- Installation
- How to use
- Documentation
- Examples
- Contact
- License
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.
- Documentation
- Reference Documentation
- Examples
This package provides a convenient way to use VGS secure frames in the React environment by exposing field components.
Install the package using npm:
``bash`
npm install @vgs/collect-js-react
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:
- Download file directly from the CDN.
- Use our loading npm module. _Example_.
`javascript
import { VGSCollectForm } from '@vgs/collect-js-react';
const App = () => {
const onSubmitCallback = (status, data) => {};
const onUpdateCallback = (state) => {};
return (
environment='
action='/post'
submitParameters={{}}
onUpdateCallback={onUpdateCallback}
onSubmitCallback={onSubmitCallback}
>
// Add secure fields here
);
};
export default App;
`
| Property | Description | Documentation |
| ------------------ | ---------------------------------------------------------- | --------------------------------------------------------------------------------------------------- |
| vaultId | A string value beginning with the prefix tnt. | Parameters.vaultId |sanbdox
| environment | Vault environment: \| 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() |
| routeId? | Inbound Route ID. | .setRouteId() |
| Collect.js input type | Collect.js React Component | Default Prop Values |
|---------------------------|---------------------------------------------|------------------------------------------------------------------------------------------|
| text | | { type: 'text', placeholder: 'Cardholder Name' } |text
| | | { type: 'text', name: 'cardholder', placeholder: 'Cardholder' } |card-number
| | | { type: 'card-number', name: 'pan', validations: ['required', 'validCardNumber'], placeholder: 'Credit Card Number' } |card-expiration-date
| | | { type: 'card-expiration-date', name: 'exp-date', validations: ['required', 'validCardExpirationDate'], yearLength: 2, placeholder: 'MM/YY' } |card-security-code
| | | { type: 'card-security-code', name: 'cvc', validations: ['required', 'validCardSecurityCode'], placeholder: 'CVC/CVV' } |password
| | | { type: 'password', placeholder: 'Enter Password' } |ssn
| | | { type: 'ssn', placeholder: 'SSN' } |zip-code
| | | { type: 'zip-code', placeholder: 'Zip Code' } |number
| | | { type: 'number', placeholder: 'Number' } |textarea
| | | { type: 'textarea', placeholder: 'Comment' } |file
| | | { type: 'file', placeholder: '' } |date
| | | { 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:_
`javascript
import { VGSCollectForm } from '@vgs/collect-js-react';
const { CardNumberField, CardExpirationDateField, CardSecurityCodeField } = VGSCollectForm;
const myApp = () => {
const onSubmitCallback = (status, data) => {};
const onUpdateCallback = (state) => {};
return (
environment='
action='/post'
submitParameters={{
headers: {
myHeader: 'MyHeader'
}
}}
onUpdateCallback={onUpdateCallback}
onSubmitCallback={onSubmitCallback}
>
validations={['required', 'validCardNumber']}
placeholder='XXXX XXXX XXXX XXXX'
showCardIcon={true}
css={{}}
/>
validations={['required', 'validCardExpirationDate']}
placeholder='MM / YY'
yearLength={2}
css={{}}
/>
validations={['required', 'validCardSecurityCode']}
placeholder='CVV'
css={{}}
/>
);
};
`
VGS Collect.js allows listening to input changes.
The library exposes the following handlers: onFocus, onBlur, onUpdate, onDelete, onKeyUp, onKeyDown, onKeyPress.
`javascript`
validations={['required']}
onFocus={(info: VGSCollectFocusEventData) => {}}
onBlur={(info: VGSCollectFocusEventData) => {}}
onUpdate={(info: VGSCollectStateParams) => {}}
onKeyUp={(info: VGSCollectKeyboardEventData) => {}}
onKeyDown={(info: VGSCollectKeyboardEventData) => {}}
onKeyPress={(info: VGSCollectKeyboardEventData) => {}}
/>
In order to access the form state and response from the hook, wrap consumer component with the form in VGSCollectProvider context provider.
`javascript
import { VGSCollectProvider, useVGSCollectState, useVGSCollectResponse, VGSCollectForm } from '@vgs/collect-js-react';
const { TextField } = VGSCollectForm;
const App = () => {
return (
);
};
const VGSCollectSecureForm = () => {
const [state] = useVGSCollectState();
const [response] = useVGSCollectResponse();
useEffect(() => {
if (state) {
// do something
}
}, [state]);
return (
);
};
`
You can create a predefined Collect.js form to integrate with the VGS Card Management Platform
`javascript
import { VGSCollectForm } from '@vgs/collect-js-react';
const {CardholderField, CardNumberField, CardExpirationDateField, CardSecurityCodeField } = VGSCollectForm;
const myApp = () => {
const onSubmitCallback = (status, data) => {};
const onUpdateCallback = (state) => {};
return (
environment='
submitParamethers={{
createCard: {
auth:
}
}}
onUpdateCallback={onUpdateCallback}
onSubmitCallback={onSubmitCallback}
>
);
};
`
- Collect.js Documentation
- Collect.js Reference Documentation
To run exmaples locally, in the core folder run:
`sh`
yarn install
yarn start
Switch the folder to example and configure .env file, simply rename .env.example and replace values
`sh`
REACT_APP_VAULT_ID=
REACT_APP_ENVIRONMENT=
REACT_APP_COLLECT_VERSION=
From example folder run:
`sh``
yarn install
yarn start
- Simple Configuration
- Custom Payload Configuration
- Stackblitz
If you have any questions please reach out to support or open issue here.
This project is licensed under the MIT license. See the LICENSE file
for details.