aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/config.js
blob: f4eecf7f8a3055d9e89edefdc4f19cef9a9b1723 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const actions = require('./actions')

module.exports = connect(mapStateToProps)(ConfigScreen)

function mapStateToProps(state) {
  return {
    rpc: state.metamask.rpcTarget,
    metamask: state.metamask,
  }
}

inherits(ConfigScreen, Component)
function ConfigScreen() {
  Component.call(this)
}


ConfigScreen.prototype.render = function() {
  var state = this.props
  var rpc = state.rpc
  var metamaskState = state.metamask

  return (
    h('.flex-column.flex-grow', [

      // subtitle and nav
      h('.section-title.flex-row.flex-center', [
        h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
          onClick: (event) => {
            state.dispatch(actions.showAccountsPage())
          }
        }),
        h('h2.page-subtitle', 'Configuration'),
      ]),

      // conf view
      h('.flex-column.flex-justify-center.flex-grow.select-none', [
        h('.flex-space-around', {
          style: {
            padding: '20px',
          }
        }, [

          currentProviderDisplay(metamaskState),

          h('div', { style: {display: 'flex'} }, [
            h('input#new_rpc', {
              placeholder: 'New RPC URL',
              style: {
                width: 'inherit',
                flex: '1 0 auto',
                height: '30px',
                margin: '8px',
              },
              onKeyPress(event) {
                if (event.key === 'Enter') {
                  var element = event.target
                  var newRpc = element.value
                  state.dispatch(actions.setRpcTarget(newRpc))
                }
              }
            }),
            h('button', {
              style: {
                alignSelf: 'center',
              },
              onClick(event) {
                event.preventDefault()
                var element = document.querySelector('input#new_rpc')
                var newRpc = element.value
                state.dispatch(actions.setRpcTarget(newRpc))
              }
            }, 'Save')
          ]),

          h('div', [
            h('button', {
              style: {
                alignSelf: 'center',
              },
              onClick(event) {
                event.preventDefault()
                state.dispatch(actions.setRpcTarget('https://rpc.metamask.io/'))
              }
            }, 'Use Main Network')
          ]),

          h('div', [
            h('button', {
              style: {
                alignSelf: 'center',
              },
              onClick(event) {
                event.preventDefault()
                state.dispatch(actions.setRpcTarget('https://testrpc.metamask.io/'))
              }
            }, 'Use Morden Test Network')
          ]),

          h('div', [
            h('button', {
              style: {
                alignSelf: 'center',
              },
              onClick(event) {
                event.preventDefault()
                state.dispatch(actions.setRpcTarget('http://localhost:8545/'))
              }
            }, 'Use http://localhost:8545')
          ]),

        ]),
      ]),
    ])
  )
}

function currentProviderDisplay(metamaskState) {
  var rpc = metamaskState.provider.rpcTarget
  return h('div', [
    h('span', {style: { fontWeight: 'bold', paddingRight: '10px'}}, 'Current RPC'),
    h('span', rpc)
  ])
}