1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/client/src/App.tsx

203 lines
5.8 KiB
TypeScript
Raw Normal View History

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'
import { BrowserRouter as Router } from 'react-router-dom'
2019-02-27 15:39:41 +01:00
import { Logger } from '@oceanprotocol/squid'
import Header from './components/Header'
import Footer from './components/Footer'
2019-02-13 12:39:04 +01:00
import Spinner from './components/atoms/Spinner'
2019-01-30 17:33:56 +01:00
import { User } from './context/User'
import { provideOcean } from './ocean'
2019-01-30 17:33:56 +01:00
import Routes from './Routes'
2019-01-23 13:03:41 +01:00
import './styles/global.scss'
import styles from './App.module.scss'
2019-01-23 13:03:41 +01:00
2019-02-20 15:00:42 +01:00
import {
nodeHost,
nodePort,
nodeScheme,
faucetHost,
faucetPort,
faucetScheme
} from './config'
2019-01-30 17:33:56 +01:00
declare global {
interface Window {
2019-02-08 12:04:19 +01:00
web3: Web3
ethereum: any
}
}
2019-02-05 17:05:28 +01:00
interface AppState {
2019-02-05 16:00:22 +01:00
isLogged: boolean
isLoading: boolean
isWeb3: boolean
account: string
2019-03-04 16:06:52 +01:00
balance: {
eth: number
ocn: number
}
2019-03-04 11:58:52 +01:00
network: string
web3: Web3
2019-02-05 16:00:22 +01:00
ocean: {}
startLogin: () => void
2019-01-30 17:33:56 +01:00
}
2019-02-05 17:05:28 +01:00
class App extends Component<{}, AppState> {
public startLogin = (event?: any) => {
if (event) {
event.preventDefault()
2019-01-30 17:33:56 +01:00
}
2019-02-05 17:05:28 +01:00
this.startLoginProcess()
}
2019-02-20 15:00:42 +01:00
private requestFromFaucet = async () => {
if (this.state.account !== '') {
try {
await fetch(
`${faucetScheme}://${faucetHost}:${faucetPort}/faucet`,
{
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
address: this.state.account,
agent: 'commons-marketplace'
})
}
)
} catch (error) {
2019-03-04 11:58:52 +01:00
Logger.log('requestFromFaucet', error)
2019-02-20 15:00:42 +01:00
}
} else {
// no account found
}
}
2019-02-05 17:05:28 +01:00
public state = {
isLogged: false,
isLoading: true,
isWeb3: false,
2019-03-04 16:06:52 +01:00
balance: {
eth: 0,
ocn: 0
},
2019-03-04 11:58:52 +01:00
network: '',
web3: new Web3(
new Web3.providers.HttpProvider(
`${nodeScheme}://${nodeHost}:${nodePort}`
)
),
account: '',
2019-02-05 17:05:28 +01:00
ocean: {},
2019-02-20 15:00:42 +01:00
startLogin: this.startLogin,
requestFromFaucet: this.requestFromFaucet
2019-01-30 17:33:56 +01:00
}
public async componentDidMount() {
this.bootstrap()
}
2019-01-30 17:33:56 +01:00
private startLoginProcess = async () => {
if (window.web3) {
const web3 = new Web3(window.web3.currentProvider)
2019-01-30 17:33:56 +01:00
try {
const accounts = await web3.eth.getAccounts()
if (accounts.length > 0) {
this.setState({
2019-01-30 17:33:56 +01:00
isLogged: true,
isWeb3: true,
account: accounts[0],
2019-01-30 17:33:56 +01:00
web3
})
} else {
if (accounts.length === 0 && window.ethereum) {
await window.ethereum.enable()
2019-02-13 14:21:47 +01:00
const newAccounts = await web3.eth.getAccounts()
2019-02-13 14:24:19 +01:00
if (newAccounts.length > 0) {
2019-02-13 14:21:47 +01:00
this.setState({
isLogged: true,
isWeb3: true,
account: newAccounts[0],
web3
})
} else {
// failed to unlock
}
} else {
// no unlock procedure
}
2019-01-30 17:33:56 +01:00
}
} catch (e) {
// something went wrong, show error?
2019-01-30 17:33:56 +01:00
}
} else {
// no metamask/mist, show installation guide!
2019-01-30 17:33:56 +01:00
}
}
private bootstrap = async () => {
if (window.web3) {
this.setState({ isWeb3: true })
const web3 = new Web3(window.web3.currentProvider)
2019-01-30 17:33:56 +01:00
try {
const accounts = await web3.eth.getAccounts()
if (accounts.length > 0) {
2019-02-08 12:04:19 +01:00
this.setState({
2019-01-30 17:33:56 +01:00
isLogged: true,
account: accounts[0],
web3
2019-02-08 12:04:19 +01:00
})
2019-01-30 17:33:56 +01:00
}
} catch (e) {
2019-03-04 11:58:52 +01:00
Logger.log('web3 error', e)
2019-01-30 17:33:56 +01:00
}
}
try {
const { ocean } = await provideOcean()
this.setState({
isLoading: false,
ocean
})
2019-03-25 15:22:45 +01:00
const accounts = await ocean.accounts.list()
2019-03-04 11:58:52 +01:00
const balance = await accounts[0].getBalance()
2019-03-22 15:45:38 +01:00
const network = await ocean.keeper.getNetworkName()
this.setState({ balance, network })
} catch (e) {
2019-03-04 11:58:52 +01:00
Logger.log('ocean/balance error', e)
this.setState({
isLoading: false
})
}
2019-01-30 17:33:56 +01:00
}
public render() {
return (
<div className={styles.app}>
<User.Provider value={this.state}>
<Router>
<>
<Header />
2019-02-08 14:06:55 +01:00
2019-02-13 12:39:04 +01:00
<main className={styles.main}>
{this.state.isLoading ? (
2019-02-13 12:52:27 +01:00
<div className={styles.loader}>
2019-02-13 13:04:11 +01:00
<Spinner message="Connecting to Ocean..." />
2019-02-13 12:52:27 +01:00
</div>
2019-02-13 12:39:04 +01:00
) : (
<Routes />
2019-02-13 12:39:04 +01:00
)}
</main>
2019-02-08 14:06:55 +01:00
<Footer />
</>
</Router>
</User.Provider>
</div>
)
}
}
2019-01-23 11:15:27 +01:00
export default App