nifty-wallet/ui/app/config.js

126 lines
3.1 KiB
JavaScript
Raw Normal View History

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)
2016-06-21 13:18:32 -07:00
function mapStateToProps (state) {
return {
metamask: state.metamask,
}
}
inherits(ConfigScreen, Component)
2016-06-21 13:18:32 -07:00
function ConfigScreen () {
Component.call(this)
}
2016-06-21 13:18:32 -07:00
ConfigScreen.prototype.render = function () {
var state = this.props
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.goHome())
2016-06-21 13:18:32 -07:00
},
}),
h('h2.page-subtitle', 'Configuration'),
]),
// conf view
h('.flex-column.flex-justify-center.flex-grow.select-none', [
h('.flex-space-around', {
style: {
padding: '20px',
2016-06-21 13:18:32 -07:00
},
}, [
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',
},
2016-06-21 13:18:32 -07:00
onKeyPress (event) {
if (event.key === 'Enter') {
var element = event.target
var newRpc = element.value
state.dispatch(actions.setRpcTarget(newRpc))
}
2016-06-21 13:18:32 -07:00
},
}),
h('button', {
style: {
alignSelf: 'center',
},
2016-06-21 13:18:32 -07:00
onClick (event) {
event.preventDefault()
var element = document.querySelector('input#new_rpc')
var newRpc = element.value
state.dispatch(actions.setRpcTarget(newRpc))
2016-06-21 13:18:32 -07:00
},
}, 'Save'),
]),
h('hr.horizontal-line'),
h('div', {
style: {
marginTop: '20px',
2016-06-21 13:18:32 -07:00
},
}, [
h('button', {
style: {
alignSelf: 'center',
},
2016-06-21 13:18:32 -07:00
onClick (event) {
event.preventDefault()
state.dispatch(actions.revealSeedConfirmation())
2016-06-21 13:18:32 -07:00
},
}, 'Reveal Seed Words'),
]),
]),
]),
])
)
}
2016-06-21 13:18:32 -07:00
function currentProviderDisplay (metamaskState) {
var provider = metamaskState.provider
var title, value
switch (provider.type) {
case 'mainnet':
title = 'Current Network'
value = 'Main Ethereum Network'
break
case 'testnet':
title = 'Current Network'
value = 'Morden Test Network'
break
default:
title = 'Current RPC'
value = metamaskState.provider.rpcTarget
2016-06-21 13:18:32 -07:00
}
return h('div', [
h('span', {style: { fontWeight: 'bold', paddingRight: '10px'}}, title),
2016-06-21 13:18:32 -07:00
h('span', value),
])
}