1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/reducers.js

77 lines
1.6 KiB
JavaScript
Raw Normal View History

const extend = require('xtend')
const copyToClipboard = require('copy-to-clipboard')
//
// 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')
window.METAMASK_CACHED_LOG_STATE = null
module.exports = rootReducer
2016-06-21 22:18:32 +02:00
function rootReducer (state, action) {
// clone
state = extend(state)
2016-07-01 03:22:16 +02:00
if (action.type === 'GLOBAL_FORCE_UPDATE') {
return action.value
}
//
// Identities
//
state.identities = reduceIdentities(state, action)
//
// MetaMask
//
state.metamask = reduceMetamask(state, action)
//
// AppState
//
state.appState = reduceApp(state, action)
window.METAMASK_CACHED_LOG_STATE = state
return state
}
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()
const browser = window.navigator.userAgent
2017-10-10 17:36:15 +02:00
return global.platform.getPlatformInfo((err, platform) => {
if (err) {
return cb(err)
}
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-03-28 16:26:06 +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
}