Casper Gateway React Component
Overview
Civic provides a developer-friendly plug and play React Component as an easy way to request a Gateway Token from your dApp with minimal setup. It includes a Civic Pass status widget, the Identity Button; and an in-dApp modal to guide your users through the process.
Official Documentation
You can find the official documentation hosted on Gitbook.
Example Project
We have also created an example React project that shows how you would go about integrating the different features provided by our @civic/casper-gateway-react
component project on Github.
Getting started
Please refer to the project on Github for a complete example.
1. Install the component
npm i @civic/casper-gateway-react
or using yarn
yarn add @civic/casper-gateway-react
2. Include the gateway context
Surround any code that needs access to the gateway token with:
import {GatewayProvider} from "@civic/casper-gateway-react";
const YourDapp = () => {
<GatewayProvider
gatekeeperNetwork={GATEKEEPER_NETWORK}
wallet={wallet}
>
// your dApp content
</GatewayProvider>
}
where:
3. Accessing or requesting the gateway token
The component will automatically look for a gateway token on chain. To access it once created:
import { useGateway } from "@civic/casper-gateway-react";
const { gatewayToken } = useGateway()
If the wallet does not have a gateway token, request it using requestGatewayToken
:
const { requestGatewayToken } = useGateway()
For example, by connecting it to a button component:
<button onclick={requestGatewayToken}>Validate your wallet</button>
Or by using Identity Button provided:
import IdentityButton from '@civic/casper-gateway-react';
...
<IdentityButton />
4. IdentityButton behaviour
The IdentityButton is a reference implementation of a UI component to communicate to your dApp users the current status of their Gateway Token, or Gateway Token request. It changes appearance with text and icons to indicate when the user needs to take action and can be clicked by the user at any point in the process. The initial click for a new user will initiate the flow for the user to create a new Gateway Token. Once the user has gone through KYC and submitted their Gateway Token request via the Civic compliance iFrame, any subsequent click will launch the Civic Pass iframe with a screen describing the current status of the flow.
API Documentation
GatewayProvider
The GatewayProvider
is a React component that gives children access to the GatewayContext through the useGateway
function. This component holds the state for a given gateway token or gateway token request.
export type GatewayProviderProps = {
wallet?: WalletAdapter;
gatekeeperNetwork?: PublicKey;
stage?: string;
wrapper?: React.FC;
logo?: string;
redirectUrl?: string;
gatekeeperSendsTransaction?: boolean;
handleTransaction?: (transaction: Transaction) => Promise<void>;
options?: Options;
expiryMarginSeconds?: number
forceRequireRefresh?: boolean;
};
GatewayStatus
The GatewayStatus
is an enum that reveals the state of the requested Gateway Token.
export enum GatewayStatus {
UNKNOWN,
CHECKING,
NOT_REQUESTED,
COLLECTING_USER_INFORMATION,
PROOF_OF_WALLET_OWNERSHIP,
IN_REVIEW,
REJECTED,
REVOKED,
FROZEN,
ACTIVE,
ERROR,
LOCATION_NOT_SUPPORTED,
VPN_NOT_SUPPORTED,
REFRESH_TOKEN_REQUIRED,
VALIDATING_USER_INFORMATION,
USER_INFORMATION_VALIDATED,
USER_INFORMATION_REJECTED,
}
The behaviour of the React component depends on the status of the token. For example, if the token status is NOT_REQUESTED
and the user triggers the react component, then the flow to collect the user's information and request a Civic Token will be started.
For other cases, like the token status FROZEN
, triggering the React component opens a dialog explaining to the user the current status and offering him to reach out to Civic is he requires assistance.
The table bellow lists all status:
Status | Description | Behaviour when triggered |
---|
UNKNOWN | No user wallet is connected or no gatekeeper network set | None |
CHECKING | The Identity Component is making the relevant requests to check the state of the token | None |
NOT_REQUESTED | A token has not been requested | Opens the Civic Pass modal dialog and initiates the token request flow |
COLLECTING_USER_INFORMATION | The Identity Component is in progress and can be resumed | Opens the Civic Pass modal dialog and resumes the token request flow |
IN_REVIEW | The token has been requested and the Gatekeeper is reviewing the request | Opens the Civic Pass modal dialog with a user-friendly explanation of the status. |
ACTIVE | The token has been issued successfully and is active. | Opens the Civic Pass modal dialog with a user-friendly explanation of the status. |
FROZEN | The token has been frozen, for example because the user connected from a blocked IP | Opens the Civic Pass modal dialog with a user-friendly explanation of the status. |
REJECTED | The token requests has been rejected by the Gatekeeper | Opens the Civic Pass modal dialog with a user-friendly explanation of the status. |
REVOKED | The token has been revoked, for example because the user connected from a banned IP | Opens the Civic Pass modal dialog with a user-friendly explanation of the status. |
LOCATION_NOT_SUPPORTED | The user's location is not currently supported | Opens the Civic Pass modal dialog with a user-friendly explanation of the status. |
VPN_NOT_SUPPORTED | The user is using a proxy or VPN | Opens the Civic Pass modal dialog with a user-friendly explanation of the status. |
REFRESH_TOKEN_REQUIRED | The user needs to refresh their gateway token | Opens the Civic Pass modal dialog and takes the user through the flow for refreshing their token. |
ERROR | There was an error retrieving the Gateway Token or completing a vrification flow | Opens the Civic Pass modal dialog and the user can restart the process. |
VALIDATING_USER_INFORMATION | The validation process is currently being reviewed | Opens the Civic Pass modal dialog and shows a user friendly message |
VALIDATION_PROCESS_IN_PROGRESS | The validation process is still in progress | Opens the Civic Pass modal dialog and the user can resume the process |
USER_INFORMATION_VALIDATED | The validation process has completed | Opens the Civic Pass modal dialog and completes the process |
USER_INFORMATION_REJECTED | The validation process was rejected | Opens the Civic Pass modal explaing the reasons for the failure |
useGateway
Any component wrapped by GatewayProvider
can access the state and useful functions of the GatewayProvider through this function.
Returns the current context values for the GatewayContext
by exposing the following properties.
export type GatewayProps = {
requestGatewayToken: () => Promise<void>,
gatewayStatus: GatewayStatus,
gatewayToken?: GatewayToken,
gatewayTokenTransaction: string,
pendingRequests?: PendingPayload;
}
const gatewayProps: GatewayProps = useGateway();
Client options
You can specify some options that affect the display behaviour of the Civic modal that the user interacts with:
export type Options = {
autoShowModal: boolean;
logLevel: LogLevel;
};
Triggering early pass refresh
If you want to force a user to refresh their pass before the pass has expired, the boolean value 'forceRequireRefresh' can be passed to the GatewayProviderProps, e.g. if you want the user to have to refresh if their pass is older than 1 day old:
const shouldForceRefresh = gatewayTokenExpiry < 1_DAY_FROM_NOW
<GatewayProvider wallet={...} gatekeeperNetwork={...} forceRequireRefresh={shouldForceRefresh}/>
This would cause the refresh flow to be initiated for a user with a pass that was created more than one day ago.
Wrapper
You can customise how the verification flow is displayed by providing a custom wrapper.
...
const customWrapperStyle: CSS.Properties = {
backgroundColor: 'rgba(0,0,0,1)',
position: 'fixed',
zIndex: 999,
width: '100%',
height: '100%',
overflow: 'auto',
paddingTop: '5%'
}
const customWrapperContentStyle: CSS.Properties = {
backgroundColor: '#fefefe',
margin: 'auto',
width: '90%',
position: 'relative',
}
export const CustomWrapper: React.FC = ({ children = null }) => {
return (
<div style={customWrapperStyle}>
<div style={customWrapperContentStyle}>
<img style={{ maxWidth: '20%' }} src={logo} className="app-logo" alt="logo"/>
{children}
</div>
</div>
)
}
Contributing
yarn build
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
yarn publish
Publishes a new version of the React Component. We use beta releases before releasing an official release in the following format (major).(minor).(patch)-beta.(build number)
. You can release a beta with the following command yarn add @civic/casper-gateway-react@beta
.
Automated publishing
To publish a new version of the react-component, add a Git tag and use a prefix along with the desired version number e.g.
casper-rc-0.7.0
Note that this method should only be used for production versions, not beta tags.