1.1.2 • Published 1 year ago

react-hook-turnstile v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

react-hook-turnstile

A very simple React library for Cloudflare Turnstile.

Installation

npm i react-hook-turnstile

Usage

import Turnstile, { useTurnstile } from "react-hook-turnstile";

// ...

const { reset } = useTurnstile(); // Access turnstile reset method

function TurnstileWidget() {
  return (
    <Turnstile
      sitekey="1x00000000000000000000AA"
      onVerify={(token) => alert(token)}
    />
  );
}

Turnstile tokens expire after 5 minutes, to automatically reset the challenge once they expire, set the autoResetOnExpire prop to true or reset the widget yourself using the onExpire callback.

Documentation

Turnstile takes the following arguments:

nametypedescription
sitekeystringsitekey of your website (REQUIRED)
actionstring-
cDatastring-
themestringone of "light", "dark", "auto"
tabIndexnumber-
responseFieldbooleancontrols generation of <input /> element
responseFieldNamestringchanges the name of <input /> element
retrystringone of "auto", "never"
retryIntervalnumberinterval of retries in ms
autoResetOnExpirebooleanautomatically reset the widget when the token expires
idstringid of the div
refRefcustom react ref for the div
classNamestringpassed to the div
styleobjectpassed to the div

And the following callbacks:

nameargumentsdescription
onVerifytokencalled when challenge is passed (REQUIRED)
onLoadwidgetIdcalled when the widget is loaded
onErrorerrorcalled when an error occurs
onExpire-called when the token expires
onTimeout-called when the challenge expires

For more details on what each argument does, see the Cloudflare Documentation.