import Router from "next/router"; import { useCallback, useMemo, useState } from "react"; import React from "react"; import Web3 from "web3"; import { AbiItem } from "web3-utils"; import showToast from "@calcom/lib/notification"; import { Button } from "@calcom/ui/Button"; import { useLocale } from "@lib/hooks/useLocale"; import { useContracts } from "../../../contexts/contractsContext"; import genericAbi from "../../../web3/abis/abiWithGetBalance.json"; import verifyAccount, { AUTH_MESSAGE } from "../../../web3/utils/verifyAccount"; interface Window { ethereum: any; web3: Web3; } interface EvtsToVerify { [eventId: string]: boolean; } declare const window: Window; interface CryptoSectionProps { id: number | string; pathname: string; smartContractAddress: string; /** When set to true, there will be only 1 button which will both connect Metamask and verify the user's wallet. Otherwise, it will be in 2 steps with 2 buttons. */ oneStep: boolean; verified: boolean | undefined; setEvtsToVerify: React.Dispatch>>; } const CryptoSection = (props: CryptoSectionProps) => { // Crypto section which should be shown on booking page if event type requires a smart contract token. const [ethEnabled, toggleEthEnabled] = useState(false); const { addContract } = useContracts(); const { t } = useLocale(); const connectMetamask = useCallback(async () => { if (window.ethereum) { await window.ethereum.request({ method: "eth_requestAccounts" }); window.web3 = new Web3(window.ethereum); toggleEthEnabled(true); } else { toggleEthEnabled(false); } }, []); const verifyWallet = useCallback(async () => { try { if (!window.web3) { throw new Error("MetaMask browser extension is not installed"); } const contract = new window.web3.eth.Contract(genericAbi as AbiItem[], props.smartContractAddress); const balance = await contract.methods.balanceOf(window.ethereum.selectedAddress).call(); const hasToken = balance > 0; if (!hasToken) { throw new Error("Specified wallet does not own any tokens belonging to this smart contract"); } else { const account = (await window.web3.eth.getAccounts())[0]; // @ts-ignore const signature = await window.web3.eth.personal.sign(AUTH_MESSAGE, account); // @ts-ignore addContract({ address: props.smartContractAddress, signature }); await verifyAccount(signature, account); props.setEvtsToVerify((prevState: EvtsToVerify) => { const changedEvt = { [props.id]: hasToken }; return { ...prevState, ...changedEvt }; }); } } catch (err) { err instanceof Error ? showToast(err.message, "error") : showToast("An error has occurred", "error"); } }, [props, addContract]); // @TODO: Show error on either of buttons if fails. Yup schema already contains the error message. const successButton = useMemo(() => { if (props.verified) { Router.push(props.pathname); } return
; }, [props.verified]); const verifyButton = useMemo(() => { return ( ); }, [verifyWallet, t]); const connectButton = useMemo(() => { return ( ); }, [connectMetamask, t]); const oneStepButton = useMemo(() => { return ( ); }, [connectMetamask, verifyWallet, t]); const determineButton = useCallback(() => { // Did it in an extra function for some added readability, but this can be done in a ternary depending on preference if (props.oneStep) { return props.verified ? successButton : oneStepButton; } else { if (ethEnabled) { return props.verified ? successButton : verifyButton; } else { return connectButton; } } }, [props.verified, successButton, oneStepButton, connectButton, ethEnabled, props.oneStep, verifyButton]); return (
{determineButton()}
); }; export default CryptoSection;