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/network.js

67 lines
1.7 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
module.exports = Network
inherits(Network, Component)
2016-06-21 22:18:32 +02:00
function Network () {
Component.call(this)
}
2016-06-21 22:18:32 +02:00
Network.prototype.render = function () {
const state = this.props
const networkNumber = state.network
let iconName, hoverText
2016-06-21 22:18:32 +02:00
const imagePath = '/images/'
2016-06-21 22:18:32 +02:00
if (networkNumber == 'loading') {
2016-06-03 22:58:09 +02:00
return h('img', {
title: 'Attempting to connect to blockchain.',
2016-06-21 22:18:32 +02:00
onClick: (event) => this.props.onClick(event),
2016-06-03 22:58:09 +02:00
style: {
width: '27px',
2016-06-21 22:18:32 +02:00
marginRight: '-27px',
2016-06-03 22:58:09 +02:00
},
src: 'images/loading.svg',
})
2016-06-21 22:18:32 +02:00
} else if (parseInt(networkNumber) == 1) {
hoverText = 'Main Ethereum Network'
iconName = 'ethereum-network'
2016-06-21 22:18:32 +02:00
} else if (parseInt(networkNumber) == 2) {
hoverText = 'Morden Test Network'
iconName = 'morden-test-network'
2016-06-21 22:18:32 +02:00
} else {
hoverText = 'Unknown Private Network'
iconName = 'unknown-private-network'
}
return (
h('#network_component.flex-center.pointer', {
style: {
marginRight: '-27px',
marginLeft: '-3px',
},
title: hoverText,
2016-06-21 22:18:32 +02:00
onClick: (event) => this.props.onClick(event),
}, [
function () {
switch (iconName) {
case 'ethereum-network':
return h('.menu-icon.ether-icon')
case 'morden-test-network':
return h('.menu-icon.morden-icon')
default:
return h('i.fa.fa-question-circle.fa-lg', {
ariaHidden: true,
style: {
margin: '10px',
color: 'rgb(125, 128, 130)',
},
})
}
}(),
])
)
}