2016-04-14 00:28:44 +02:00
|
|
|
const extend = require('xtend')
|
2017-10-27 01:40:13 +02:00
|
|
|
const copyToClipboard = require('copy-to-clipboard')
|
2016-04-14 00:28:44 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Sub-Reducers take in the complete state and return their sub-state
|
|
|
|
//
|
|
|
|
const reduceIdentities = require('./reducers/identities')
|
|
|
|
const reduceMetamask = require('./reducers/metamask')
|
|
|
|
const reduceApp = require('./reducers/app')
|
2018-03-16 01:29:45 +01:00
|
|
|
const reduceLocale = require('./reducers/locale')
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2016-07-16 02:51:37 +02:00
|
|
|
window.METAMASK_CACHED_LOG_STATE = null
|
|
|
|
|
2016-04-14 00:28:44 +02:00
|
|
|
module.exports = rootReducer
|
|
|
|
|
2016-06-21 22:18:32 +02:00
|
|
|
function rootReducer (state, action) {
|
2016-04-14 00:28:44 +02:00
|
|
|
// clone
|
|
|
|
state = extend(state)
|
|
|
|
|
2016-07-01 03:22:16 +02:00
|
|
|
if (action.type === 'GLOBAL_FORCE_UPDATE') {
|
|
|
|
return action.value
|
|
|
|
}
|
|
|
|
|
2016-04-14 00:28:44 +02:00
|
|
|
//
|
|
|
|
// Identities
|
|
|
|
//
|
|
|
|
|
|
|
|
state.identities = reduceIdentities(state, action)
|
|
|
|
|
|
|
|
//
|
|
|
|
// MetaMask
|
|
|
|
//
|
|
|
|
|
|
|
|
state.metamask = reduceMetamask(state, action)
|
|
|
|
|
|
|
|
//
|
|
|
|
// AppState
|
|
|
|
//
|
|
|
|
|
|
|
|
state.appState = reduceApp(state, action)
|
|
|
|
|
2018-03-16 01:29:45 +01:00
|
|
|
//
|
|
|
|
// LocaleMessages
|
|
|
|
//
|
|
|
|
|
|
|
|
state.localeMessages = reduceLocale(state, action)
|
|
|
|
|
2016-07-16 02:51:37 +02:00
|
|
|
window.METAMASK_CACHED_LOG_STATE = state
|
2016-04-14 00:28:44 +02:00
|
|
|
return state
|
|
|
|
}
|
2016-07-16 02:51:37 +02:00
|
|
|
|
2017-10-04 20:00:52 +02:00
|
|
|
window.logStateString = function (cb) {
|
2017-10-30 20:08:10 +01:00
|
|
|
const state = window.METAMASK_CACHED_LOG_STATE
|
2017-08-29 20:42:44 +02:00
|
|
|
const version = global.platform.getVersion()
|
2017-10-04 19:55:10 +02:00
|
|
|
const browser = window.navigator.userAgent
|
2017-10-10 17:36:15 +02:00
|
|
|
return global.platform.getPlatformInfo((err, platform) => {
|
|
|
|
if (err) {
|
|
|
|
return cb(err)
|
|
|
|
}
|
2017-10-04 19:55:10 +02:00
|
|
|
state.version = version
|
|
|
|
state.platform = platform
|
2017-10-04 20:14:30 +02:00
|
|
|
state.browser = browser
|
2017-10-30 20:08:10 +01:00
|
|
|
const stateString = JSON.stringify(state, removeSeedWords, 2)
|
2017-10-10 17:36:15 +02:00
|
|
|
return cb(null, stateString)
|
2017-10-04 19:55:10 +02:00
|
|
|
})
|
2016-07-16 02:51:37 +02:00
|
|
|
}
|
2017-03-28 16:26:06 +02:00
|
|
|
|
2017-10-27 01:40:13 +02:00
|
|
|
window.logState = function (toClipboard) {
|
|
|
|
return window.logStateString((err, result) => {
|
|
|
|
if (err) {
|
|
|
|
console.error(err.message)
|
|
|
|
} else if (toClipboard) {
|
|
|
|
copyToClipboard(result)
|
|
|
|
console.log('State log copied')
|
|
|
|
} else {
|
|
|
|
console.log(result)
|
|
|
|
}
|
2017-10-04 20:00:52 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-03-28 16:26:06 +02:00
|
|
|
function removeSeedWords (key, value) {
|
|
|
|
return key === 'seedWords' ? undefined : value
|
|
|
|
}
|