2016-04-14 00:28:44 +02:00
|
|
|
const render = require('react-dom').render
|
|
|
|
const h = require('react-hyperscript')
|
|
|
|
const Root = require('./app/root')
|
|
|
|
const actions = require('./app/actions')
|
|
|
|
const configureStore = require('./app/store')
|
2016-09-08 21:56:04 +02:00
|
|
|
const txHelper = require('./lib/tx-helper')
|
2017-12-22 19:43:02 +01:00
|
|
|
const { OLD_UI_NETWORK_TYPE, BETA_UI_NETWORK_TYPE } = require('../app/scripts/config').enums
|
|
|
|
|
2017-03-31 22:20:16 +02:00
|
|
|
global.log = require('loglevel')
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2017-03-31 22:20:16 +02:00
|
|
|
module.exports = launchMetamaskUi
|
2017-02-20 21:59:44 +01:00
|
|
|
|
2017-03-31 22:20:16 +02:00
|
|
|
log.setLevel(global.METAMASK_DEBUG ? 'debug' : 'warn')
|
|
|
|
|
|
|
|
function launchMetamaskUi (opts, cb) {
|
2016-04-14 00:28:44 +02:00
|
|
|
var accountManager = opts.accountManager
|
2016-10-20 18:58:33 +02:00
|
|
|
actions._setBackgroundConnection(accountManager)
|
2016-04-14 00:28:44 +02:00
|
|
|
// check if we are unlocked first
|
2016-06-21 22:18:32 +02:00
|
|
|
accountManager.getState(function (err, metamaskState) {
|
2017-03-31 22:20:16 +02:00
|
|
|
if (err) return cb(err)
|
|
|
|
const store = startApp(metamaskState, accountManager, opts)
|
|
|
|
cb(null, store)
|
2016-04-14 00:28:44 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-06-21 22:18:32 +02:00
|
|
|
function startApp (metamaskState, accountManager, opts) {
|
2016-04-14 00:28:44 +02:00
|
|
|
// parse opts
|
2017-03-31 22:20:16 +02:00
|
|
|
const store = configureStore({
|
2016-04-14 00:28:44 +02:00
|
|
|
|
|
|
|
// metamaskState represents the cross-tab state
|
|
|
|
metamask: metamaskState,
|
|
|
|
|
|
|
|
// appState represents the current tab's popup state
|
2016-09-13 06:30:04 +02:00
|
|
|
appState: {},
|
2016-04-20 03:21:28 +02:00
|
|
|
|
|
|
|
// Which blockchain we are using:
|
|
|
|
networkVersion: opts.networkVersion,
|
2016-04-14 00:28:44 +02:00
|
|
|
})
|
|
|
|
|
2017-12-22 19:43:02 +01:00
|
|
|
const useBetaUi = metamaskState.featureFlags.betaUI
|
|
|
|
const networkEndpointType = useBetaUi ? BETA_UI_NETWORK_TYPE : OLD_UI_NETWORK_TYPE
|
|
|
|
store.dispatch(actions.setNetworkEndpoints(networkEndpointType))
|
|
|
|
|
2016-04-14 00:28:44 +02:00
|
|
|
// if unconfirmed txs, start on txConf page
|
2017-09-29 18:24:08 +02:00
|
|
|
const unapprovedTxsAll = txHelper(metamaskState.unapprovedTxs, metamaskState.unapprovedMsgs, metamaskState.unapprovedPersonalMsgs, metamaskState.unapprovedTypedMessages, metamaskState.network)
|
2017-09-27 02:03:36 +02:00
|
|
|
const numberOfUnapprivedTx = unapprovedTxsAll.length
|
|
|
|
if (numberOfUnapprivedTx > 0) {
|
|
|
|
store.dispatch(actions.showConfTxPage({
|
|
|
|
id: unapprovedTxsAll[numberOfUnapprivedTx - 1].id,
|
|
|
|
}))
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|
|
|
|
|
2016-06-21 22:18:32 +02:00
|
|
|
accountManager.on('update', function (metamaskState) {
|
2016-04-14 00:28:44 +02:00
|
|
|
store.dispatch(actions.updateMetamaskState(metamaskState))
|
|
|
|
})
|
|
|
|
|
|
|
|
// start app
|
|
|
|
render(
|
|
|
|
h(Root, {
|
|
|
|
// inject initial state
|
|
|
|
store: store,
|
|
|
|
}
|
|
|
|
), opts.container)
|
2017-03-31 22:20:16 +02:00
|
|
|
|
|
|
|
return store
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|