diff options
author | Dan <danjm.com@gmail.com> | 2017-12-09 07:28:33 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-12-13 04:13:03 +0800 |
commit | 800eb2b96913684efa29ae049802b9567a825fd3 (patch) | |
tree | 4303a8af38daec86308f9b1cfd0891d2166f2cd0 /old-ui/index.js | |
parent | 8defb365b47eb62ed86f65f42bace03bc204313b (diff) | |
download | tangerine-wallet-browser-800eb2b96913684efa29ae049802b9567a825fd3.tar.gz tangerine-wallet-browser-800eb2b96913684efa29ae049802b9567a825fd3.tar.zst tangerine-wallet-browser-800eb2b96913684efa29ae049802b9567a825fd3.zip |
Delete uneeded files from old-ui.
Diffstat (limited to 'old-ui/index.js')
-rw-r--r-- | old-ui/index.js | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/old-ui/index.js b/old-ui/index.js deleted file mode 100644 index ae05cbe67..000000000 --- a/old-ui/index.js +++ /dev/null @@ -1,58 +0,0 @@ -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') -const txHelper = require('./lib/tx-helper') -global.log = require('loglevel') - -module.exports = launchMetamaskUi - - -log.setLevel(global.METAMASK_DEBUG ? 'debug' : 'warn') - -function launchMetamaskUi (opts, cb) { - var accountManager = opts.accountManager - actions._setBackgroundConnection(accountManager) - // check if we are unlocked first - accountManager.getState(function (err, metamaskState) { - if (err) return cb(err) - const store = startApp(metamaskState, accountManager, opts) - cb(null, store) - }) -} - -function startApp (metamaskState, accountManager, opts) { - // parse opts - const store = configureStore({ - - // metamaskState represents the cross-tab state - metamask: metamaskState, - - // appState represents the current tab's popup state - appState: {}, - - // Which blockchain we are using: - networkVersion: opts.networkVersion, - }) - - // if unconfirmed txs, start on txConf page - const unapprovedTxsAll = txHelper(metamaskState.unapprovedTxs, metamaskState.unapprovedMsgs, metamaskState.unapprovedPersonalMsgs, metamaskState.unapprovedTypedMessages, metamaskState.network) - if (unapprovedTxsAll.length > 0) { - store.dispatch(actions.showConfTxPage()) - } - - accountManager.on('update', function (metamaskState) { - store.dispatch(actions.updateMetamaskState(metamaskState)) - }) - - // start app - render( - h(Root, { - // inject initial state - store: store, - } - ), opts.container) - - return store -} |