1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/components/network.js

45 lines
1.1 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)
function Network() {
Component.call(this)
}
Network.prototype.render = function() {
const state = this.props
const networkNumber = state.network
let iconName, hoverText
const imagePath = "/images/"
if (networkNumber == 'loading') {
2016-06-03 22:58:09 +02:00
return h('img', {
title: 'Attempting to connect to blockchain.',
2016-06-03 22:58:09 +02:00
style: {
width: '27px',
marginRight: '-16px'
2016-06-03 22:58:09 +02:00
},
src: 'images/loading.svg',
})
2016-06-03 21:59:56 +02:00
} else if (networkNumber == 1) {
hoverText = 'Main Ethereum Network'
iconName = 'ethereum-network'
}else if (networkNumber == 2) {
hoverText = "Morden Test Network"
iconName = 'morden-test-network'
}else {
hoverText = "Unknown Private Network"
iconName = 'unknown-private-network'
}
return (
h('#network_component.flex-center', {
style: { marginRight: '-16px' },
title: hoverText,
},[ h('img',{src: imagePath + iconName + ".jpg", width: '25px'}) ])
)
}