Cardknox is a developer-friendly payment gateway integration provider for in-store, online, or mobile transactions
Sandbox: https://www.cardknox.com/sandbox/
iFields: https://www.cardknox.com/ifields/
A sandbox or live account is required to use this component
There are 2 basic props required to get this up and running.
There are three types of payment data iFields supports:
- Credit Card
- CVV
- ACH
<IField type={CARD_TYPE} />
The possible values for this property are
- card
- cvv
- ach
These can be imported from the component
import { CARD_TYPE, CVV_TYPE, ACH_TYPE } from '@cardknox/react-ifields';
Pass your iFields key to the component in the account prop like this:
export default class App extends React.Component {
state = {
account = {
xKey: "{Your iFields key}",
xSoftwareName: "{The name of your app}",
xSoftwareVersion: "{Your app's version}"
}
}
render() {
return <IField account={this.state.account} />
}
}
There are 2 lifecycle events and 7 user events.
Is emitted when the iframe
has loaded
<IField onLoad={this.onLoad} />
Is emitted when a token is received from the iField
<IField onToken={this.onToken} />
User events are events passed along from iFields when the user interacts with it.
The available events are
- click
- dblclick
- focus
- blur
- input
- change
- keypress
- issuerupdated (CVV only)
- submit*
* the submit event works slightly differently, see below.
Aside from submit, the above events are all collected on a single event update
.
The event payload is in e.data
. The data also contains the event type so you can filter out events you don't need with a switch
statement like this:
export default class App extends React.Component {
render() {
return <IField onUpdate={this.onUpdate} />
}
onUpdate = (data) => {
switch (data.event) {
case 'input':
console.log("input event received");
break;
case 'click':
console.log("click event received");
break;
default:
break;
}
}
}
This event is triggered when the user submits the form (presses the Enter key) from within the iFrame.
This event works differently than other user events.
- This event is only emitted if prop
options.autoSubmit
is true. - This event does not call
onUpdate
. - No data is passed along with this event.
export default class App extends React.Component {
state = {
options: {
autoSubmit: true
}
}
render() {
return <IField options={this.state.options} onSubmit={this.onSubmit} />
}
onSubmit = () => {
//submit to server
}
}
It is also possible to have the component automatically submit the form for you when submit is triggered from the iFrame.If autoSubmitFormId
is set on the options prop, the component will call submit on the element with that ID. This is useful for smaller applications relying on the form element to handle submission.
export default class App extends React.Component {
state = {
options: {
autoSubmit: true,
autoSubmitFormId: 'form'
}
}
render() {
return <form id="form">
<IField options={this.state.options} />
</form>
}
}
There is also an error event that can be subscribed to.
export default class App extends React.Component {
render() {
return <IField onError={this.onError} />
}
onError = (data) => {
console.error("IFrame errored", data);
}
}
There are 3 actions available on this component as well
focusIfield
This action will set the focus to the ifield when called
clearIfield
This action will clear the data from the ifield when called
getToken
This action will load the token for the ifield when called.
export default class App extends React.Component {
iFieldRef = React.createRef();
render() {
return <IField ref={this.iFieldRef} />
}
focus = () => {
this.iFieldRef.current.focusIfield();
}
clear = () => {
this.iFieldRef.current.clearIfield();
}
getToken = () => {
this.iFieldRef.current.getToken();
}
}
Name | Type | Description | Valid values |
---|---|---|---|
type | String | iFields type |
|
account | Account | ||
options | Options | ||
threeDS | ThreeDS | ||
issuer | String | Card issuer | For cvv iField only |
onLoad | Function | Called when the iframe loads |
|
onUpdate | Function<Update Event Data> | Called when the iField has been updated | |
onSubmit | Function | Called when the user presses the Enter key inside the iframe
|
|
onToken | Function<Token Data> | Called when the iField has received a token | |
onError | Function<Error Data> | Called when an error occurs while retrieving the token |
Name | Type | Description |
---|---|---|
xKey | String | iFields key |
xSoftwareName | String | Software name |
xSoftwareVersion | String | Software version |
Name | Type | Description |
---|---|---|
enableLogging | Boolean | Turn iField logs to the console on and off. |
autoFormat | Boolean | Turn iField auto-formatting on and off. This is only used for iFields of card type. See autoFormatSeparator. |
autoFormatSeparator | String | A string to be used to auto-format card numbers when autoFormat is turned on. The default value is " " (space). |
blockNonNumericInput | Boolean | Block non-numeric character input. This is only used for iFields of card type. This does not interfere with autoFormatSeparator. |
autoSubmit | Boolean | The token should be retrieved as soon as the data is valid. This setting will also turn on capturing a submit event triggered from within the iFrame when submitting the data. |
autoSubmitFormId | String | If autoSubmit is true, the ID of a form element can be set and the component will trigger submit on the form when submit is triggered in the iFrame. |
placeholder | String | Text to be used as placeholder text for the input field. |
iFieldstyle | Object | A style object to be used to style the iFields input element. This object is assigned to HTMLElement.style. |
Name | Type | Description |
---|---|---|
enable3DS | Boolean | Turn 3DSecure on and off |
environment | String | `Staging` or `Production`
These values can be imported from the package |
handle3DSResults | Function | A callback to handle the 3DS results |
For full documentation about 3D-Secure with iFields see here
Name | Type | Description |
---|---|---|
cardNumberlength | Number | The length of the data in the card iField Only returned on an update event from the card iField |
event | String | The name of the event. |
isEmpty | Boolean | Whether or not the iField is empty. |
isValid | Boolean | Whether or not the data in the iField is valid. |
issuer | String | The card issuer Only returned on an update event from the card iField. |
length | Boolean | The length of the data in the iField Note: For card iFields, this includes the formating character. Use cardNumberlength to get the actual data length. |
ifieldValueChanged | Boolean | Whether or not the iField value has changed. |
Name | Type | Description |
---|---|---|
xToken | string | The token |
xTokenType | String | Either card, cvv, or ach |
Name | Type | Description |
---|---|---|
result | String | This will always have the value of error
|
errorMessage | String | Contains the error message |
xTokenType | String | Either card, cvv, or ach |
iFields Version: 2.15.2309.2601