You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.7 KiB
69 lines
1.7 KiB
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import classnames from 'classnames'
|
|
import {
|
|
MAINNET_CODE,
|
|
ROPSTEN_CODE,
|
|
RINKEYBY_CODE,
|
|
KOVAN_CODE,
|
|
} from '../../../../app/scripts/controllers/network/enums'
|
|
|
|
const networkToClassHash = {
|
|
[MAINNET_CODE]: 'mainnet',
|
|
[ROPSTEN_CODE]: 'ropsten',
|
|
[RINKEYBY_CODE]: 'rinkeby',
|
|
[KOVAN_CODE]: 'kovan',
|
|
}
|
|
|
|
export default class NetworkDisplay extends Component {
|
|
static propTypes = {
|
|
network: PropTypes.string,
|
|
provider: PropTypes.object,
|
|
}
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
renderNetworkIcon () {
|
|
const { network } = this.props
|
|
const networkClass = networkToClassHash[network]
|
|
|
|
return networkClass
|
|
? <div className={`network-display__icon network-display__icon--${networkClass}`} />
|
|
: <div
|
|
className="i fa fa-question-circle fa-med"
|
|
style={{
|
|
margin: '0 4px',
|
|
color: 'rgb(125, 128, 130)',
|
|
}}
|
|
/>
|
|
}
|
|
|
|
render () {
|
|
const { network, provider: { type } } = this.props
|
|
const networkClass = networkToClassHash[network]
|
|
|
|
return (
|
|
<div className={classnames(
|
|
'network-display__container',
|
|
networkClass && ('network-display__container--' + networkClass)
|
|
)}>
|
|
{
|
|
networkClass
|
|
? <div className={`network-display__icon network-display__icon--${networkClass}`} />
|
|
: <div
|
|
className="i fa fa-question-circle fa-med"
|
|
style={{
|
|
margin: '0 4px',
|
|
color: 'rgb(125, 128, 130)',
|
|
}}
|
|
/>
|
|
}
|
|
<div className="network-display__name">
|
|
{ this.context.t(type) }
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|