2016-04-14 00:28:44 +02:00
|
|
|
const render = require('react-dom').render
|
|
|
|
const h = require('react-hyperscript')
|
2019-03-22 00:03:30 +01:00
|
|
|
const Root = require('./app/pages')
|
|
|
|
const actions = require('./app/store/actions')
|
|
|
|
const configureStore = require('./app/store/store')
|
2016-09-08 21:56:04 +02:00
|
|
|
const txHelper = require('./lib/tx-helper')
|
2019-03-22 00:03:30 +01:00
|
|
|
const { fetchLocale } = require('./app/helpers/utils/i18n-helper')
|
2018-04-12 23:06:59 +02:00
|
|
|
const 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) {
|
2019-07-10 21:01:48 +02:00
|
|
|
var {backgroundConnection} = opts
|
|
|
|
actions._setBackgroundConnection(backgroundConnection)
|
2016-04-14 00:28:44 +02:00
|
|
|
// check if we are unlocked first
|
2019-07-10 21:01:48 +02:00
|
|
|
backgroundConnection.getState(function (err, metamaskState) {
|
2017-03-31 22:20:16 +02:00
|
|
|
if (err) return cb(err)
|
2019-07-10 21:01:48 +02:00
|
|
|
startApp(metamaskState, backgroundConnection, opts)
|
2018-03-16 01:29:45 +01:00
|
|
|
.then((store) => {
|
|
|
|
cb(null, store)
|
|
|
|
})
|
2016-04-14 00:28:44 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-07-10 21:01:48 +02:00
|
|
|
async function startApp (metamaskState, backgroundConnection, opts) {
|
2016-04-14 00:28:44 +02:00
|
|
|
// parse opts
|
2018-02-26 19:55:30 +01:00
|
|
|
if (!metamaskState.featureFlags) metamaskState.featureFlags = {}
|
2018-03-16 01:29:45 +01:00
|
|
|
|
2018-03-28 02:05:12 +02:00
|
|
|
const currentLocaleMessages = metamaskState.currentLocale
|
|
|
|
? await fetchLocale(metamaskState.currentLocale)
|
|
|
|
: {}
|
2018-03-22 01:41:47 +01:00
|
|
|
const enLocaleMessages = await fetchLocale('en')
|
2018-03-19 17:06:16 +01:00
|
|
|
|
2017-03-31 22:20:16 +02:00
|
|
|
const store = configureStore({
|
2019-08-01 15:24:33 +02:00
|
|
|
activeTab: opts.activeTab,
|
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
|
|
|
|
2018-03-22 01:41:47 +01:00
|
|
|
localeMessages: {
|
|
|
|
current: currentLocaleMessages,
|
|
|
|
en: enLocaleMessages,
|
|
|
|
},
|
2018-03-16 01:29:45 +01:00
|
|
|
|
2016-04-20 03:21:28 +02:00
|
|
|
// Which blockchain we are using:
|
|
|
|
networkVersion: opts.networkVersion,
|
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
|
|
|
}
|
|
|
|
|
2019-07-10 21:01:48 +02:00
|
|
|
backgroundConnection.on('update', function (metamaskState) {
|
2016-04-14 00:28:44 +02:00
|
|
|
store.dispatch(actions.updateMetamaskState(metamaskState))
|
|
|
|
})
|
|
|
|
|
2018-03-30 20:16:08 +02:00
|
|
|
// global metamask api - used by tooling
|
|
|
|
global.metamask = {
|
|
|
|
updateCurrentLocale: (code) => {
|
|
|
|
store.dispatch(actions.updateCurrentLocale(code))
|
|
|
|
},
|
|
|
|
setProviderType: (type) => {
|
|
|
|
store.dispatch(actions.setProviderType(type))
|
|
|
|
},
|
2018-03-30 09:48:37 +02:00
|
|
|
}
|
|
|
|
|
2016-04-14 00:28:44 +02:00
|
|
|
// start app
|
|
|
|
render(
|
|
|
|
h(Root, {
|
|
|
|
// inject initial state
|
|
|
|
store: store,
|
|
|
|
}
|
2019-07-31 22:17:11 +02:00
|
|
|
), opts.container)
|
2017-03-31 22:20:16 +02:00
|
|
|
|
|
|
|
return store
|
2016-04-14 00:28:44 +02:00
|
|
|
}
|