1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00
metamask-extension/app/scripts/lib/auto-reload.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

2016-05-23 00:23:16 +02:00
module.exports = setupDappAutoReload
function setupDappAutoReload (web3, observable) {
2016-05-23 00:23:16 +02:00
// export web3 as a global, checking for usage
global.web3 = new Proxy(web3, {
get: (_web3, name) => {
// get the time of use
if (name !== '_used') _web3._used = Date.now()
return _web3[name]
},
set: (_web3, name, value) => {
_web3[name] = value
},
})
var networkVersion
2016-05-23 00:23:16 +02:00
observable.subscribe(function (state) {
// get the initial network
const curentNetVersion = state.networkVersion
if (!networkVersion) networkVersion = curentNetVersion
if (curentNetVersion !== networkVersion && web3._used) {
2017-05-25 05:36:10 +02:00
const timeSinceUse = Date.now() - web3._used
// 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)
// prevent reentry into if statement if state updates again before
// reload
networkVersion = curentNetVersion
}
})
2016-06-21 22:18:32 +02:00
}
// reload the page
function triggerReset () {
global.location.reload()
2016-11-11 19:26:12 +01:00
}