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

108 lines
2.8 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 () {
2016-07-28 19:53:51 +02:00
const props = this.props
const networkNumber = props.network
let providerName
try {
providerName = props.provider.type
} catch (e) {
providerName = null
}
let iconName, hoverText
2016-06-21 22:56:04 +02:00
if (networkNumber === 'loading') {
2016-07-28 19:53:51 +02:00
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-07-28 19:53:51 +02:00
} else if (providerName === 'mainnet') {
hoverText = 'Main Ethereum Network'
iconName = 'ethereum-network'
2016-07-28 19:53:51 +02:00
} else if (providerName === 'classic') {
hoverText = 'Ethereum Classic Network'
iconName = 'classic-network'
2016-06-21 22:56:04 +02:00
} else if (parseInt(networkNumber) === 2) {
2016-06-21 22:18:32 +02:00
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),
}, [
2016-06-21 22:56:04 +02:00
(function () {
2016-06-21 22:18:32 +02:00
switch (iconName) {
case 'ethereum-network':
2016-06-30 01:31:27 +02:00
return h('.network-indicator', [
h('.menu-icon.diamond'),
h('.network-name', {
style: {
color: '#039396',
}},
'Etherum Main Net'),
])
2016-07-28 19:53:51 +02:00
case 'classic-network':
return h('.network-indicator', [
h('.menu-icon.hollow-diamond'),
h('.network-name', {
style: {
color: '#039396',
}},
'Etherum Classic'),
])
2016-06-21 22:18:32 +02:00
case 'morden-test-network':
2016-06-30 01:31:27 +02:00
return h('.network-indicator', [
h('.menu-icon.red-dot'),
h('.network-name', {
style: {
color: '#ff6666',
}},
'Morden Test Net'),
])
2016-06-21 22:18:32 +02:00
default:
2016-06-30 01:31:27 +02:00
return h('.network-indicator', [
h('i.fa.fa-question-circle.fa-lg', {
ariaHidden: true,
style: {
margin: '10px',
color: 'rgb(125, 128, 130)',
},
}),
2016-06-30 01:31:27 +02:00
h('.network-name', {
style: {
color: '#AEAEAE',
}},
'Private Network'),
])
2016-06-21 22:18:32 +02:00
}
2016-06-21 22:56:04 +02:00
})(),
])
)
}