nifty-wallet/app/scripts/popup-core.js

78 lines
2.8 KiB
JavaScript
Raw Normal View History

2016-09-12 23:28:07 -07:00
const EventEmitter = require('events').EventEmitter
const async = require('async')
2016-09-12 23:28:07 -07:00
const Dnode = require('dnode')
const Eth = require('ethjs')
2017-05-08 12:29:08 -07:00
const EthQuery = require('eth-query')
const launchMetamaskUi = require('../../ui')
2016-09-12 23:28:07 -07:00
const StreamProvider = require('web3-stream-provider')
const setupMultiplex = require('./lib/stream-utils.js').setupMultiplex
module.exports = initializePopup
/**
* Asynchronously initializes the MetaMask popup UI
*
2018-07-02 15:49:33 -07:00
* @param {{ container: Element, connectionStream: * }} config Popup configuration object
2018-04-19 12:12:04 -07:00
* @param {Function} cb Called when initialization is complete
*/
function initializePopup ({ container, connectionStream }, cb) {
2016-09-12 23:28:07 -07:00
// setup app
async.waterfall([
(cb) => connectToAccountManager(connectionStream, cb),
(accountManager, cb) => launchMetamaskUi({ container, accountManager }, cb),
], cb)
2016-09-12 23:28:07 -07:00
}
/**
* Establishes streamed connections to background scripts and a Web3 provider
*
2018-04-19 12:12:04 -07:00
* @param {PortDuplexStream} connectionStream PortStream instance establishing a background connection
* @param {Function} cb Called when controller connection is established
*/
2016-09-12 23:28:07 -07:00
function connectToAccountManager (connectionStream, cb) {
// setup communication with background
// setup multiplexing
var mx = setupMultiplex(connectionStream)
// connect features
setupControllerConnection(mx.createStream('controller'), cb)
setupWeb3Connection(mx.createStream('provider'))
}
/**
* Establishes a streamed connection to a Web3 provider
*
2018-04-19 12:12:04 -07:00
* @param {PortDuplexStream} connectionStream PortStream instance establishing a background connection
*/
2016-09-12 23:28:07 -07:00
function setupWeb3Connection (connectionStream) {
var providerStream = new StreamProvider()
providerStream.pipe(connectionStream).pipe(providerStream)
connectionStream.on('error', console.error.bind(console))
providerStream.on('error', console.error.bind(console))
2017-05-08 12:29:08 -07:00
global.ethereumProvider = providerStream
global.ethQuery = new EthQuery(providerStream)
global.eth = new Eth(providerStream)
2016-09-12 23:28:07 -07:00
}
/**
* Establishes a streamed connection to the background account manager
*
2018-04-19 12:12:04 -07:00
* @param {PortDuplexStream} connectionStream PortStream instance establishing a background connection
* @param {Function} cb Called when the remote account manager connection is established
*/
2016-09-12 23:28:07 -07:00
function setupControllerConnection (connectionStream, cb) {
2016-11-11 10:26:12 -08:00
// this is a really sneaky way of adding EventEmitter api
2016-09-12 23:28:07 -07:00
// to a bi-directional dnode instance
var eventEmitter = new EventEmitter()
var accountManagerDnode = Dnode({
sendUpdate: function (state) {
eventEmitter.emit('update', state)
},
})
connectionStream.pipe(accountManagerDnode).pipe(connectionStream)
accountManagerDnode.once('remote', function (accountManager) {
// setup push events
accountManager.on = eventEmitter.on.bind(eventEmitter)
cb(null, accountManager)
})
}