blob: 90c307ed62a5c547bc96dfda5573be34b4211409 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
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 == undefined || networkNumber == "error") {
hoverText = 'No Blockchain Connection'
iconName = 'no-connection'
} else if (networkNumber == 'loading') {
return h('img', {
title: 'Contacting network...',
style: {
width: '27px',
},
src: 'images/loading.svg',
})
} 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: {},
title: hoverText,
},[ h('img',{src: imagePath + iconName + ".jpg", width: '25px'}) ])
)
}
|