aboutsummaryrefslogblamecommitdiffstats
path: root/ui/app/components/network.js
blob: e73ecb3f453b2231cf5eed2c874554f8711c557b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                            



                                     
 
                                    
                     
                                                    

                      
                            


                                
                                   







                                         


                                         
                                      
                       

                                                                  

   
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') {
    return h('img', {
      title: 'Attempting to connect to blockchain.',
      style: {
        width: '27px',
        marginRight: '-16px'
      },
      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: { marginRight: '-16px' },
      title: hoverText,
      onClick:(event) => this.props.onClick(event),
    },[ h('img.menu-icon',{src: imagePath + iconName + ".jpg"}) ])
  )
}