mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
219 lines
5.0 KiB
JavaScript
219 lines
5.0 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Web3 from 'web3'
|
|
import InputGroup from './InputGroup'
|
|
import Alerts from './Alerts'
|
|
import styles from './index.module.scss'
|
|
import { getNetworkName } from './utils'
|
|
|
|
const ONE_SECOND = 1000
|
|
const ONE_MINUTE = ONE_SECOND * 60
|
|
|
|
export default class Web3Donation extends PureComponent {
|
|
state = {
|
|
web3Connected: false,
|
|
networkId: null,
|
|
networkName: null,
|
|
accounts: [],
|
|
selectedAccount: null,
|
|
amount: '0.01',
|
|
transactionHash: null,
|
|
loading: false,
|
|
error: null
|
|
}
|
|
|
|
static propTypes = {
|
|
address: PropTypes.string
|
|
}
|
|
|
|
web3 = null
|
|
interval = null
|
|
networkInterval = null
|
|
|
|
componentDidMount() {
|
|
this.initAllTheTings()
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.resetAllTheThings()
|
|
}
|
|
|
|
// getPermissions = async ethereum => {
|
|
// try {
|
|
// // Request account access if needed
|
|
// await ethereum.enable()
|
|
// } catch (error) {
|
|
// // User denied account access...
|
|
// Logger.error(error)
|
|
// }
|
|
// }
|
|
|
|
initAllTheTings() {
|
|
// Modern dapp browsers...
|
|
// if (window.ethereum) {
|
|
// this.web3 = new Web3(window.ethereum)
|
|
// this.setState({ web3Connected: true })
|
|
// this.getPermissions(this.web3.eth)
|
|
// }
|
|
|
|
// Legacy dapp browsers...
|
|
if (window.web3) {
|
|
// this.web3 = new Web3(Web3.givenProvider || 'ws://localhost:8546')
|
|
this.web3 = new Web3(window.web3.currentProvider)
|
|
this.setState({ web3Connected: true })
|
|
|
|
this.fetchAccounts()
|
|
this.fetchNetwork()
|
|
this.initAccountsPoll()
|
|
this.initNetworkPoll()
|
|
}
|
|
// Non-dapp browsers...
|
|
else {
|
|
this.setState({ web3Connected: false })
|
|
}
|
|
}
|
|
|
|
resetAllTheThings() {
|
|
clearInterval(this.interval)
|
|
clearInterval(this.networkInterval)
|
|
this.setState({ web3Connected: false })
|
|
}
|
|
|
|
initAccountsPoll() {
|
|
if (!this.interval) {
|
|
this.interval = setInterval(this.fetchAccounts, ONE_SECOND)
|
|
}
|
|
}
|
|
|
|
initNetworkPoll() {
|
|
if (!this.networkInterval) {
|
|
this.networkInterval = setInterval(this.fetchNetwork, ONE_MINUTE)
|
|
}
|
|
}
|
|
|
|
fetchNetwork = () => {
|
|
const { web3 } = this
|
|
|
|
web3 &&
|
|
web3.eth &&
|
|
//web3.eth.net.getId((err, netId) => {
|
|
web3.version.getNetwork((err, netId) => {
|
|
if (err) this.setState({ error: err })
|
|
|
|
if (netId != this.state.networkId) {
|
|
this.setState({
|
|
error: null,
|
|
networkId: netId
|
|
})
|
|
|
|
getNetworkName(netId).then(networkName => {
|
|
this.setState({ networkName })
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
fetchAccounts = () => {
|
|
const { web3 } = this
|
|
|
|
web3 &&
|
|
web3.eth &&
|
|
web3.eth.getAccounts((err, accounts) => {
|
|
if (err) this.setState({ error: err })
|
|
|
|
this.setState({
|
|
error: null,
|
|
accounts,
|
|
selectedAccount: accounts[0]
|
|
})
|
|
})
|
|
}
|
|
|
|
handleButton = () => {
|
|
const { web3 } = this
|
|
|
|
this.setState({ loading: true })
|
|
|
|
// web3.eth
|
|
// .sendTransaction({
|
|
// from: this.state.selectedAccount,
|
|
// to: this.props.address,
|
|
// value: '10000000000000000'
|
|
// })
|
|
// .then(receipt => {
|
|
// this.setState({ receipt, loading: false })
|
|
// })
|
|
// .catch(error => {
|
|
// this.setState({ error, loading: false })
|
|
// })
|
|
|
|
web3.eth.sendTransaction(
|
|
{
|
|
from: this.state.selectedAccount,
|
|
to: this.props.address,
|
|
value: this.state.amount * 1e18 // ETH -> Wei
|
|
},
|
|
(error, transactionHash) => {
|
|
if (error) this.setState({ error, loading: false })
|
|
if (!transactionHash) this.setState({ loading: true })
|
|
this.setState({ transactionHash, loading: false })
|
|
}
|
|
)
|
|
}
|
|
|
|
onAmountChange = ({ target }) => {
|
|
this.setState({ amount: target.value })
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
networkId,
|
|
accounts,
|
|
selectedAccount,
|
|
web3Connected,
|
|
loading,
|
|
amount,
|
|
networkName,
|
|
error,
|
|
transactionHash
|
|
} = this.state
|
|
const hasCorrectNetwork = networkId === '1'
|
|
const hasAccount = accounts.length !== 0
|
|
|
|
return (
|
|
<div className={styles.web3}>
|
|
<header>
|
|
<h4>web3</h4>
|
|
<p>Send Ether with MetaMask, Brave, or Mist.</p>
|
|
</header>
|
|
|
|
{web3Connected && (
|
|
<div className={styles.web3Row}>
|
|
{loading ? (
|
|
'Hang on...'
|
|
) : (
|
|
<InputGroup
|
|
hasCorrectNetwork={hasCorrectNetwork}
|
|
hasAccount={hasAccount}
|
|
selectedAccount={selectedAccount}
|
|
amount={amount}
|
|
onAmountChange={this.onAmountChange}
|
|
handleButton={this.handleButton}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
<Alerts
|
|
hasCorrectNetwork={hasCorrectNetwork}
|
|
hasAccount={hasAccount}
|
|
networkName={networkName}
|
|
error={error}
|
|
transactionHash={transactionHash}
|
|
web3Connected={web3Connected}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
}
|