1
0
Fork 0
blog/src/components/molecules/Web3Donation/index.tsx

72 lines
1.9 KiB
TypeScript
Raw Normal View History

import React, { ReactElement, useState } from 'react'
import { parseEther } from '@ethersproject/units'
2022-09-17 15:58:59 +02:00
import { useDebounce } from 'use-debounce'
2018-10-13 20:37:13 +02:00
import InputGroup from './InputGroup'
2019-11-22 21:26:50 +01:00
import Alert, { getTransactionMessage } from './Alert'
import * as styles from './index.module.css'
2022-09-16 00:48:55 +02:00
import { useSendTransaction, usePrepareSendTransaction } from 'wagmi'
import { ConnectButton } from '@rainbow-me/rainbowkit'
2018-10-09 23:48:25 +02:00
2020-05-22 14:38:19 +02:00
export default function Web3Donation({
address
}: {
address: string
}): ReactElement {
2022-09-17 15:58:59 +02:00
const [amount, setAmount] = useState('0.01')
const [debouncedAmount] = useDebounce(amount, 500)
const { config } = usePrepareSendTransaction({
request: {
to: address,
value: debouncedAmount ? parseEther(debouncedAmount) : undefined
}
})
2022-09-16 00:48:55 +02:00
const { sendTransactionAsync } = useSendTransaction(config)
2021-03-23 21:38:06 +01:00
const [message, setMessage] = useState<{ status: string; text: string }>()
const [transactionHash, setTransactionHash] = useState<string>()
2019-11-21 21:32:55 +01:00
2022-09-17 15:58:59 +02:00
async function handleSendTransaction() {
2019-11-21 21:32:55 +01:00
setMessage({
status: 'loading',
2019-11-22 21:26:50 +01:00
text: getTransactionMessage().waitingForUser
2019-11-21 21:32:55 +01:00
})
2018-10-09 23:48:25 +02:00
2020-01-13 22:07:48 +01:00
try {
2022-09-17 15:58:59 +02:00
const tx = await sendTransactionAsync()
2020-01-13 22:07:48 +01:00
setTransactionHash(tx.hash)
setMessage({
status: 'loading',
text: getTransactionMessage().waitingConfirmation
})
2018-10-30 18:08:07 +01:00
2020-01-13 22:07:48 +01:00
await tx.wait()
2020-01-13 22:07:48 +01:00
setMessage({
status: 'success',
text: getTransactionMessage().success
})
} catch (error) {
2021-03-23 21:38:06 +01:00
setMessage(null)
2020-01-13 22:07:48 +01:00
}
2018-10-09 23:48:25 +02:00
}
2019-11-21 21:32:55 +01:00
return (
2022-09-17 15:58:59 +02:00
<form
className={styles.web3}
2022-09-17 15:58:59 +02:00
onSubmit={(e) => {
e.preventDefault()
handleSendTransaction()
}}
>
<ConnectButton chainStatus="icon" showBalance={false} />
2021-03-23 01:09:32 +01:00
{message ? (
<Alert message={message} transactionHash={transactionHash} />
2019-11-21 21:32:55 +01:00
) : (
2022-09-17 15:58:59 +02:00
<InputGroup amount={amount} setAmount={setAmount} />
2019-11-21 21:32:55 +01:00
)}
2022-09-17 15:58:59 +02:00
</form>
2019-11-21 21:32:55 +01:00
)
2018-10-09 23:48:25 +02:00
}