Socket
Socket
Sign inDemoInstall

@civic/casper-gateway-react

Package Overview
Dependencies
6
Maintainers
13
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @civic/casper-gateway-react

Civic Pass Casper React Component


Version published
Weekly downloads
6
decreased by-76.92%
Maintainers
13
Created
Weekly downloads
 

Readme

Source

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 = () => {
    // TODO show how to instantiate wallet and pass it to the gateway provider

    <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; // the wallet connected to the dApp, can be null initially pre-user wallet connection
  gatekeeperNetwork?: PublicKey; // the gatekeeper network public key
  stage?: string; // optionally set Civic gatekeeper stage (testing only), defaults to 'prod'
  // TODO add Casper-specific fields
  wrapper?: React.FC; // a react element that the dApp can wrap the iframe in to allow customer dApp styling
  logo?: string; // optional url of your logo that will be shown, if set, during verification
  redirectUrl?: string; // a redirect URL that can be used for deep-linking and mobile-web
  gatekeeperSendsTransaction?: boolean; // the gatekeeper will send the transaction to the blockchain. Defaults to false.  When false, the user is required to sign and send the transaction.
  handleTransaction?: (transaction: Transaction) => Promise<void>; // An optional callback that will invoked with a partially signed transaction for the user to sign and send to the blockchain when gatekeeperSendsTransaction is false. If not provided the react component will request the signature and send the transaction.
  options?: Options; // a set of UI options
  expiryMarginSeconds?: number // for gatekeeper networks that have pass expiry, set this value to prompt the user to refresh the pass this amount of seconds before the pass expires
  forceRequireRefresh?: boolean; // when set to true, initiates the refresh flow if the user has an active token, even if the pass hasn't expired
};

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:

StatusDescriptionBehaviour when triggered
UNKNOWNNo user wallet is connected or no gatekeeper network setNone
CHECKINGThe Identity Component is making the relevant requests to check the state of the tokenNone
NOT_REQUESTEDA token has not been requestedOpens the Civic Pass modal dialog and initiates the token request flow
COLLECTING_USER_INFORMATIONThe Identity Component is in progress and can be resumedOpens the Civic Pass modal dialog and resumes the token request flow
IN_REVIEWThe token has been requested and the Gatekeeper is reviewing the requestOpens the Civic Pass modal dialog with a user-friendly explanation of the status.
ACTIVEThe token has been issued successfully and is active.Opens the Civic Pass modal dialog with a user-friendly explanation of the status.
FROZENThe token has been frozen, for example because the user connected from a blocked IPOpens the Civic Pass modal dialog with a user-friendly explanation of the status.
REJECTEDThe token requests has been rejected by the GatekeeperOpens the Civic Pass modal dialog with a user-friendly explanation of the status.
REVOKEDThe token has been revoked, for example because the user connected from a banned IPOpens the Civic Pass modal dialog with a user-friendly explanation of the status.
LOCATION_NOT_SUPPORTEDThe user's location is not currently supportedOpens the Civic Pass modal dialog with a user-friendly explanation of the status.
VPN_NOT_SUPPORTEDThe user is using a proxy or VPNOpens the Civic Pass modal dialog with a user-friendly explanation of the status.
REFRESH_TOKEN_REQUIREDThe user needs to refresh their gateway tokenOpens the Civic Pass modal dialog and takes the user through the flow for refreshing their token.
ERRORThere was an error retrieving the Gateway Token or completing a vrification flowOpens the Civic Pass modal dialog and the user can restart the process.
VALIDATING_USER_INFORMATIONThe validation process is currently being reviewedOpens the Civic Pass modal dialog and shows a user friendly message
VALIDATION_PROCESS_IN_PROGRESSThe validation process is still in progressOpens the Civic Pass modal dialog and the user can resume the process
USER_INFORMATION_VALIDATEDThe validation process has completedOpens the Civic Pass modal dialog and completes the process
USER_INFORMATION_REJECTEDThe validation process was rejectedOpens 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>, // starts off gateway token process
  gatewayStatus: GatewayStatus, // normally a value from a React hook state, defaults to GatewayStatus.UNKNOWN
  gatewayToken?: GatewayToken, // the current GatewayToken used in the dApp
  gatewayTokenTransaction: string, // if broadcastTransaction is false, this will be populated with any transactions generated by the backend
  pendingRequests?: PendingPayload; // an object containing ID(s) that a partner needs to resolve before a pass can be issued
}

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; // whether the Civic modal should appear automatically if the Civic Pass token state changes
  logLevel: LogLevel; // debug | info | warn | error
};

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.

FAQs

Last updated on 11 Apr 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc