import { useState, useRef, useEffect } from 'react'; import ReactNativeTurnstile, { resetTurnstile } from "react-native-turnstile"; import Turnstile, { useTurnstile } from "react-turnstile"; import { Platform, View, Text } from 'react-native'; import axios from 'axios'; import { Button } from 'react-native-paper'; import Storage from '@/constants/module/storages/storage'; import Theme from '@/constants/theme'; const CloudflareTurnstile = ({callback}:any) => { const site_key:string = `${process.env.EXPO_PUBLIC_CLOUDFLARE_TURNSTILE_SITE}` const [isError,setIsError] = useState(false) const [feedBack,setFeedBack] = useState("") const [isRefresh,setIsRefresh] = useState(false) const [themeType, setThemeType] = useState("") useEffect(() => { (async () => { const theme_type = await Storage.get("theme") setThemeType(theme_type) })() },[]) useEffect(()=>{ if (isRefresh) setIsRefresh(false) },[isRefresh]) const verify = async (token:string,callback:any) => { const API_BASE = await Storage.get("IN_USE_API_BASE") axios({ method: 'post', url: `${API_BASE}/api/cloudflare_turnstile/verify/`, data:{token:token} }).then((response) => {(async () =>{ await Storage.store("cloudflare-turnstile-token",token) setFeedBack("Redirecting...") callback() })()}).catch((error) => { console.log(error) setIsError(true) setFeedBack("Unable to verify cloudflare turnstile on server-side. Please try again.") }) } return (<>{themeType && !isRefresh ? {Platform.OS === "web" ?{ verify(token,callback) }} onError={()=>{setIsError(true),setFeedBack("Unable to load cloudflare turnstile. Please try again.")}} /> : { verify(token,callback) }} style={{ marginLeft: 'auto', marginRight: 'auto' }} onError={()=>{setIsError(true),setFeedBack("Unable to load cloudflare turnstile. Please try again.")}} /> } {feedBack && !isRefresh && {feedBack}} {isError && !isRefresh && } : <> }) } export default CloudflareTurnstile;