2019-04-25 19:12:47 +03:00
|
|
|
import React from 'react'
|
2019-04-15 19:56:40 +03:00
|
|
|
import ReactDOM from 'react-dom'
|
|
|
|
import ReactGA from 'react-ga'
|
2019-11-26 01:56:31 +03:00
|
|
|
import { Web3ReactProvider, createWeb3ReactRoot } from '@web3-react/core'
|
2020-05-08 02:53:08 +03:00
|
|
|
import { Web3Provider } from '@ethersproject/providers'
|
2019-05-14 17:19:09 +03:00
|
|
|
|
2019-11-26 01:56:31 +03:00
|
|
|
import { NetworkContextName } from './constants'
|
2019-12-31 23:27:51 +03:00
|
|
|
import { isMobile } from 'react-device-detect'
|
2020-05-05 00:56:10 +03:00
|
|
|
import LocalStorageContextProvider from './contexts/LocalStorage'
|
2019-05-03 23:37:59 +03:00
|
|
|
import ApplicationContextProvider, { Updater as ApplicationContextUpdater } from './contexts/Application'
|
2019-05-14 17:19:09 +03:00
|
|
|
import TransactionContextProvider, { Updater as TransactionContextUpdater } from './contexts/Transactions'
|
2019-12-10 18:33:35 +03:00
|
|
|
import BalancesContextProvider, { Updater as BalancesContextUpdater } from './contexts/Balances'
|
2020-03-26 19:42:06 +03:00
|
|
|
import ExchangesContextProvider from './contexts/Pairs'
|
2019-05-14 17:19:09 +03:00
|
|
|
import AllowancesContextProvider from './contexts/Allowances'
|
2019-04-15 19:56:40 +03:00
|
|
|
import App from './pages/App'
|
2019-11-26 01:56:31 +03:00
|
|
|
import ThemeProvider, { GlobalStyle } from './theme'
|
2019-05-03 23:37:59 +03:00
|
|
|
import './i18n'
|
2018-03-11 08:50:54 +03:00
|
|
|
|
2019-11-26 01:56:31 +03:00
|
|
|
const Web3ProviderNetwork = createWeb3ReactRoot(NetworkContextName)
|
|
|
|
|
2020-05-07 21:36:26 +03:00
|
|
|
function getLibrary(provider): Web3Provider {
|
2020-05-08 02:53:08 +03:00
|
|
|
const library = new Web3Provider(provider)
|
2019-11-26 01:56:31 +03:00
|
|
|
library.pollingInterval = 10000
|
|
|
|
return library
|
|
|
|
}
|
|
|
|
|
2019-04-16 03:06:39 +03:00
|
|
|
if (process.env.NODE_ENV === 'production') {
|
2020-05-07 21:36:26 +03:00
|
|
|
ReactGA.initialize(process.env.REACT_APP_GOOGLE_ANALYTICS_ID)
|
2019-12-31 23:27:51 +03:00
|
|
|
ReactGA.set({
|
2020-05-07 21:36:26 +03:00
|
|
|
customBrowserType: !isMobile ? 'desktop' : 'web3' in window || 'ethereum' in window ? 'mobileWeb3' : 'mobileRegular'
|
2019-12-31 23:27:51 +03:00
|
|
|
})
|
2019-04-16 03:06:39 +03:00
|
|
|
} else {
|
2020-05-07 21:36:26 +03:00
|
|
|
ReactGA.initialize('test', { testMode: true, debug: true })
|
2018-10-28 14:12:59 +03:00
|
|
|
}
|
2019-12-31 23:27:51 +03:00
|
|
|
|
2019-04-15 19:56:40 +03:00
|
|
|
ReactGA.pageview(window.location.pathname + window.location.search)
|
2018-10-28 14:05:08 +03:00
|
|
|
|
2020-05-09 01:32:36 +03:00
|
|
|
function ContextProviders({ children }: { children: React.ReactNode }) {
|
2019-05-03 23:37:59 +03:00
|
|
|
return (
|
2019-07-27 01:02:48 +03:00
|
|
|
<LocalStorageContextProvider>
|
|
|
|
<ApplicationContextProvider>
|
|
|
|
<TransactionContextProvider>
|
2020-02-26 20:00:59 +03:00
|
|
|
<ExchangesContextProvider>
|
2020-05-08 18:13:16 +03:00
|
|
|
<BalancesContextProvider>
|
|
|
|
<AllowancesContextProvider>{children}</AllowancesContextProvider>
|
|
|
|
</BalancesContextProvider>
|
2020-02-26 20:00:59 +03:00
|
|
|
</ExchangesContextProvider>
|
2019-07-27 01:02:48 +03:00
|
|
|
</TransactionContextProvider>
|
|
|
|
</ApplicationContextProvider>
|
|
|
|
</LocalStorageContextProvider>
|
2019-05-03 23:37:59 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function Updaters() {
|
|
|
|
return (
|
|
|
|
<>
|
2020-05-08 02:53:08 +03:00
|
|
|
<ApplicationContextUpdater />
|
|
|
|
<TransactionContextUpdater />
|
|
|
|
<BalancesContextUpdater />
|
2019-05-03 23:37:59 +03:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-04-16 03:06:39 +03:00
|
|
|
ReactDOM.render(
|
2019-11-26 01:56:31 +03:00
|
|
|
<Web3ReactProvider getLibrary={getLibrary}>
|
|
|
|
<Web3ProviderNetwork getLibrary={getLibrary}>
|
|
|
|
<ContextProviders>
|
2020-05-08 02:53:08 +03:00
|
|
|
<Updaters />
|
2019-11-26 01:56:31 +03:00
|
|
|
<ThemeProvider>
|
|
|
|
<>
|
2020-05-08 02:53:08 +03:00
|
|
|
<GlobalStyle />
|
|
|
|
<App />
|
2019-11-26 01:56:31 +03:00
|
|
|
</>
|
|
|
|
</ThemeProvider>
|
|
|
|
</ContextProviders>
|
|
|
|
</Web3ProviderNetwork>
|
|
|
|
</Web3ReactProvider>,
|
2019-04-16 03:06:39 +03:00
|
|
|
document.getElementById('root')
|
|
|
|
)
|