2016-05-23 00:23:16 +02:00
module . exports = setupDappAutoReload
2017-05-25 04:13:35 +02:00
function setupDappAutoReload ( web3 , observable ) {
2016-05-23 00:23:16 +02:00
// export web3 as a global, checking for usage
2017-05-25 04:13:35 +02:00
global . web3 = new Proxy ( web3 , {
get : ( _web3 , name ) => {
// get the time of use
2017-08-12 00:52:03 +02:00
if ( name !== '_used' ) {
2017-08-12 00:54:52 +02:00
console . warn ( 'MetaMask: web3 will be deprecated in the near future in favor of the ethereumProvider \nhttps://github.com/ethereum/mist/releases/tag/v0.9.0' )
2017-08-12 00:52:03 +02:00
_web3 . _used = Date . now ( )
}
2017-05-25 04:13:35 +02:00
return _web3 [ name ]
} ,
set : ( _web3 , name , value ) => {
_web3 [ name ] = value
} ,
} )
var networkVersion
2016-05-23 00:23:16 +02:00
2017-05-25 04:13:35 +02:00
observable . subscribe ( function ( state ) {
// get the initial network
const curentNetVersion = state . networkVersion
if ( ! networkVersion ) networkVersion = curentNetVersion
2016-10-12 21:35:55 +02:00
2017-05-25 04:13:35 +02:00
if ( curentNetVersion !== networkVersion && web3 . _used ) {
2017-05-25 05:36:10 +02:00
const timeSinceUse = Date . now ( ) - web3 . _used
2017-05-25 04:13:35 +02:00
// if web3 was recently used then delay the reloading of the page
2017-05-25 05:36:10 +02:00
timeSinceUse > 500 ? triggerReset ( ) : setTimeout ( triggerReset , 500 )
2017-05-25 04:13:35 +02:00
// prevent reentry into if statement if state updates again before
// reload
networkVersion = curentNetVersion
}
} )
2016-06-21 22:18:32 +02:00
}
2016-10-12 21:35:55 +02:00
// reload the page
function triggerReset ( ) {
global . location . reload ( )
2016-11-11 19:26:12 +01:00
}