aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-08-17 06:39:40 +0800
committerDan Finlay <dan@danfinlay.com>2016-08-17 06:39:40 +0800
commit5479509618e601391586d0851acee4e408523c4f (patch)
tree68a26e9fe5589f7d5ad8b9b649a88f87d7e26585 /ui
parentf1986d7a3757aea50fba798b295397e69739b891 (diff)
downloadtangerine-wallet-browser-5479509618e601391586d0851acee4e408523c4f.tar.gz
tangerine-wallet-browser-5479509618e601391586d0851acee4e408523c4f.tar.zst
tangerine-wallet-browser-5479509618e601391586d0851acee4e408523c4f.zip
Set up MVP for popup-based notifications.
Diffstat (limited to 'ui')
-rw-r--r--ui/notification.js52
1 files changed, 52 insertions, 0 deletions
diff --git a/ui/notification.js b/ui/notification.js
new file mode 100644
index 000000000..8cf74f6ee
--- /dev/null
+++ b/ui/notification.js
@@ -0,0 +1,52 @@
+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')
+
+module.exports = launchApp
+
+function launchApp (opts) {
+ var accountManager = opts.accountManager
+ actions._setAccountManager(accountManager)
+
+ // check if we are unlocked first
+ accountManager.getState(function (err, metamaskState) {
+ if (err) throw err
+ startApp(metamaskState, accountManager, opts)
+ })
+}
+
+function startApp (metamaskState, accountManager, opts) {
+ // parse opts
+ var store = configureStore({
+
+ // metamaskState represents the cross-tab state
+ metamask: metamaskState,
+
+ // appState represents the current tab's popup state
+ appState: {
+ currentDomain: opts.currentDomain,
+ },
+
+ // Which blockchain we are using:
+ networkVersion: opts.networkVersion,
+ })
+
+ // if unconfirmed txs, start on txConf page
+ if (Object.keys(metamaskState.unconfTxs || {}).length) {
+ 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)
+}