1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/components/drop-menu-item.js

54 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-05-18 23:36:35 +02: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 22:18:32 +02:00
function DropMenuItem () {
2016-05-18 23:36:35 +02:00
Component.call(this)
}
2016-06-21 22:18:32 +02:00
DropMenuItem.prototype.render = function () {
2016-05-18 23:36:35 +02:00
return h('li.drop-menu-item', {
2016-06-21 22:18:32 +02:00
onClick: () => {
2016-05-18 23:36:35 +02:00
this.props.closeMenu()
this.props.action()
},
style: {
listStyle: 'none',
padding: '6px 16px 6px 5px',
2016-06-23 00:31:02 +02:00
fontFamily: 'Montserrat Regular',
2016-05-18 23:36:35 +02:00
color: 'rgb(125, 128, 130)',
cursor: 'pointer',
display: 'flex',
justifyContent: 'flex-start',
2016-05-18 23:36:35 +02:00
},
}, [
this.props.icon,
this.props.label,
this.activeNetworkRender(),
2016-05-18 23:36:35 +02:00
])
}
DropMenuItem.prototype.activeNetworkRender = function () {
2016-11-11 19:26:12 +01:00
const activeNetwork = this.props.activeNetworkRender
const { provider } = this.props
const providerType = provider ? provider.type : null
2016-06-30 01:31:27 +02:00
if (activeNetwork === undefined) return
switch (this.props.label) {
case 'Main Ethereum Network':
2016-07-29 21:22:39 +02:00
if (providerType === 'mainnet') return h('.check', '✓')
2016-07-28 19:53:51 +02:00
break
case 'Ropsten Test Network':
2016-10-25 23:16:04 +02:00
if (provider.type === 'testnet') return h('.check', '✓')
break
case 'Localhost 8545':
2016-07-28 19:53:51 +02:00
if (activeNetwork === 'http://localhost:8545') return h('.check', '✓')
break
default:
2016-07-28 19:53:51 +02:00
if (activeNetwork === 'custom') return h('.check', '✓')
}
}