2019-01-23 11:15:27 +01:00
|
|
|
import React, { Component } from 'react'
|
2019-01-30 17:33:56 +01:00
|
|
|
import Web3 from 'web3'
|
2019-01-23 13:03:41 +01:00
|
|
|
import styles from './App.module.scss'
|
2019-01-30 17:33:56 +01:00
|
|
|
import { User } from './context/User'
|
|
|
|
import Routes from './Routes'
|
2019-01-23 13:03:41 +01:00
|
|
|
import './styles/global.scss'
|
|
|
|
|
2019-01-30 17:33:56 +01:00
|
|
|
import {
|
|
|
|
nodeHost,
|
|
|
|
nodePort,
|
|
|
|
nodeScheme
|
|
|
|
} from './config'
|
|
|
|
|
|
|
|
interface IState {
|
|
|
|
isLogged: boolean,
|
|
|
|
web3: any,
|
|
|
|
startLogin: () => void
|
|
|
|
}
|
|
|
|
|
|
|
|
class App extends Component<{},IState> {
|
|
|
|
public startLogin: () => void
|
|
|
|
constructor(props: {}) {
|
|
|
|
super(props)
|
|
|
|
this.startLogin = (event?) => {
|
|
|
|
if (event) {
|
|
|
|
event.preventDefault()
|
|
|
|
}
|
|
|
|
this.startLoginProcess()
|
|
|
|
}
|
|
|
|
this.state = {
|
|
|
|
isLogged: false,
|
|
|
|
web3: {},
|
|
|
|
startLogin: this.startLogin
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async componentDidMount() {
|
|
|
|
this.bootstrap()
|
|
|
|
}
|
2019-01-18 17:34:40 +01:00
|
|
|
|
2019-01-23 11:38:27 +01:00
|
|
|
public render() {
|
|
|
|
return (
|
2019-01-23 13:03:41 +01:00
|
|
|
<div className={styles.app}>
|
2019-01-30 17:33:56 +01:00
|
|
|
<User.Provider value={this.state}>
|
2019-01-23 13:03:41 +01:00
|
|
|
<Routes />
|
|
|
|
</User.Provider>
|
|
|
|
</div>
|
2019-01-23 11:38:27 +01:00
|
|
|
)
|
|
|
|
}
|
2019-01-30 17:33:56 +01:00
|
|
|
|
|
|
|
private startLoginProcess = async () => {
|
|
|
|
if((window as any).web3) {
|
|
|
|
const web3 = new Web3((window as any).web3.currentProvider)
|
|
|
|
try {
|
|
|
|
const accounts = await web3.eth.getAccounts()
|
|
|
|
if (accounts.length === 0 && (window as any).ethereum) {
|
|
|
|
await (window as any).ethereum.enable()
|
|
|
|
this.setState(state => ({
|
|
|
|
isLogged: true,
|
|
|
|
web3
|
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
this.setState(state => ({
|
|
|
|
isLogged: true,
|
|
|
|
web3
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
this.setDefaultProvider()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.setDefaultProvider()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private bootstrap = async () => {
|
|
|
|
if((window as any).web3) {
|
|
|
|
const web3 = new Web3((window as any).web3.currentProvider)
|
|
|
|
try {
|
|
|
|
const accounts = await web3.eth.getAccounts()
|
|
|
|
if (accounts.length > 0) {
|
|
|
|
this.setState(state => ({
|
|
|
|
isLogged: true,
|
|
|
|
web3
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
this.setDefaultProvider()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.setDefaultProvider()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private setDefaultProvider = () => {
|
|
|
|
this.setState(state => ({
|
|
|
|
isLogged: false,
|
|
|
|
web3: new Web3(new Web3.providers.HttpProvider(`${nodeScheme}://${nodeHost}:${nodePort}`))
|
|
|
|
}))
|
|
|
|
}
|
2019-01-18 17:34:40 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 11:15:27 +01:00
|
|
|
export default App
|