nifty-wallet/ui/app/components/drop-menu-item.js

57 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-05-18 14:36:35 -07:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
module.exports = DropMenuItem
inherits(DropMenuItem, Component)
2016-06-21 13:18:32 -07:00
function DropMenuItem () {
2016-05-18 14:36:35 -07:00
Component.call(this)
}
2016-06-21 13:18:32 -07:00
DropMenuItem.prototype.render = function () {
2016-05-18 14:36:35 -07:00
return h('li.drop-menu-item', {
2016-06-21 13:18:32 -07:00
onClick: () => {
2016-05-18 14:36:35 -07:00
this.props.closeMenu()
this.props.action()
},
style: {
listStyle: 'none',
padding: '6px 16px 6px 5px',
2016-06-22 15:31:02 -07:00
fontFamily: 'Montserrat Regular',
2016-05-18 14:36:35 -07:00
color: 'rgb(125, 128, 130)',
cursor: 'pointer',
display: 'flex',
justifyContent: 'flex-start',
2016-05-18 14:36:35 -07:00
},
}, [
this.props.icon,
this.props.label,
this.activeNetworkRender(),
2016-05-18 14:36:35 -07:00
])
}
DropMenuItem.prototype.activeNetworkRender = function () {
2016-11-11 10:26:12 -08:00
const activeNetwork = this.props.activeNetworkRender
const { provider } = this.props
const providerType = provider ? provider.type : null
2016-06-29 16:31:27 -07:00
if (activeNetwork === undefined) return
switch (this.props.label) {
case 'Main Ethereum Network':
2016-07-29 12:22:39 -07:00
if (providerType === 'mainnet') return h('.check', '✓')
2016-07-28 10:53:51 -07:00
break
case 'Ropsten Test Network':
2017-03-22 13:04:28 -07:00
if (providerType === 'testnet') return h('.check', '✓')
break
case 'Kovan Test Network':
if (providerType === 'kovan') return h('.check', '✓')
break
case 'Localhost 8545':
2016-07-28 10:53:51 -07:00
if (activeNetwork === 'http://localhost:8545') return h('.check', '✓')
break
default:
2016-07-28 10:53:51 -07:00
if (activeNetwork === 'custom') return h('.check', '✓')
}
}