2016-04-14 00:28:44 +02:00
|
|
|
const extend = require('xtend')
|
|
|
|
|
|
|
|
//
|
|
|
|
// 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')
|
|
|
|
|
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)
|
|
|
|
|
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
|
|
|
|
2016-11-11 19:26:12 +01:00
|
|
|
window.logState = function () {
|
2017-03-28 16:26:06 +02:00
|
|
|
var stateString = JSON.stringify(window.METAMASK_CACHED_LOG_STATE, removeSeedWords, 2)
|
2016-07-16 02:51:37 +02:00
|
|
|
console.log(stateString)
|
2017-05-08 00:20:56 +02:00
|
|
|
return stateString
|
2016-07-16 02:51:37 +02:00
|
|
|
}
|
2017-03-28 16:26:06 +02:00
|
|
|
|
|
|
|
function removeSeedWords (key, value) {
|
|
|
|
return key === 'seedWords' ? undefined : value
|
|
|
|
}
|