aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/settings.js
blob: 8df37c55532311b98fce7aa328df3cc5bc285c66 (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 inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
const actions = require('../../ui/app/actions')

module.exports = connect(mapStateToProps)(AppSettingsPage)

function mapStateToProps (state) {
  return {}
}

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

AppSettingsPage.prototype.render = function () {
  return (

    h('.account-detail-section.flex-column.flex-grow', [

      // subtitle and nav
      h('.flex-row.flex-center', [
        h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
          onClick: this.navigateToAccounts.bind(this),
        }),
        h('h2.page-subtitle', 'Settings'),
      ]),

      h('label', {
        htmlFor: 'settings-rpc-endpoint',
      }, 'RPC Endpoint:'),
      h('input', {
        type: 'url',
        id: 'settings-rpc-endpoint',
        onKeyPress: this.onKeyPress.bind(this),
      }),

    ])

  )
}

AppSettingsPage.prototype.componentDidMount = function () {
  document.querySelector('input').focus()
}

AppSettingsPage.prototype.onKeyPress = function (event) {
  // get submit event
  if (event.key === 'Enter') {
    // this.submitPassword(event)
  }
}

AppSettingsPage.prototype.navigateToAccounts = function (event) {
  event.stopPropagation()
  this.props.dispatch(actions.showAccountsPage())
}