aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/reducers.js
blob: e1a890535751d32fc6c922d8a15b452e10be1940 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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')

window.METAMASK_CACHED_LOG_STATE = null

module.exports = rootReducer

function rootReducer (state, action) {
  // clone
  state = extend(state)

  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
}

window.logState = function () {
  const state = window.METAMASK_CACHED_LOG_STATE
  let version
  try {
    version = global.platform.getVersion()
  } catch (e) {
    version = 'unable to load version.'
  }
  state.version = version
  const stateString = JSON.stringify(state, removeSeedWords, 2)
  return stateString
}

function removeSeedWords (key, value) {
  return key === 'seedWords' ? undefined : value
}