aboutsummaryrefslogtreecommitdiffstats
path: root/development/mocker.js
blob: 31b8c46a52cbf8cc755f8944225b84daaa94925a (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
60
61
62
63
64
65
66
67
const render = require('react-dom').render
const h = require('react-hyperscript')
const Root = require('../ui/app/root')
const configureStore = require('./mockStore')
const qs = require('qs')
const queryString = qs.parse(window.location.href)
let selectedView = queryString.view || 'account detail'

const MetaMaskUiCss = require('../ui/css')
const injectCss = require('inject-css')

const states = require('./states')

const firstState = states[selectedView]
updateQueryParams()

function updateQueryParams() {
  const newParamsObj = {
    view: selectedView,
  }
  const newQs = qs.stringify(newParamsObj)
  //window.location.href = window.location.href.split('?')[0] + `?${newQs}`

}

const actions = {
  _setAccountManager(){},
  update: function(stateName) {
    selectedView = stateName
    updateQueryParams()
    const newState = states[selectedView]
    return {
      type: 'GLOBAL_FORCE_UPDATE',
      value: newState,
    }
  },
}

var css = MetaMaskUiCss()
injectCss(css)

const container = document.querySelector('#app-content')

// parse opts
var store = configureStore(states[selectedView])

// start app
render(
  h('.super-dev-container', [

    h('select', {
      value: 'account-detail',
      onChange:(event) => {
        const selectedKey = event.target.value
        store.dispatch(actions.update(selectedKey))
      },
    }, Object.keys(states).map((stateName) => {
      return h('option', { value: stateName }, stateName)
    })),

    h(Root, {
      store: store,
    }),

  ]
), container)