aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/account-info-link.js
blob: 4fe3b8b5d9bd475391a25b18d99de51a8a985e0b (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
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const Tooltip = require('./tooltip')
const genAccountLink = require('../../lib/account-link')
const extension = require('../../../app/scripts/lib/extension')

module.exports = AccountInfoLink

inherits(AccountInfoLink, Component)
function AccountInfoLink () {
  Component.call(this)
}

AccountInfoLink.prototype.render = function () {
  const { selected, network } = this.props
  const title = 'View account on etherscan'
  const url = genAccountLink(selected, network)

  if (!url) {
    return null
  }

  return h('.account-info-link', {
    style: {
      display: 'flex',
      alignItems: 'center',
    },
  }, [

    h(Tooltip, {
      title,
    }, [
      h('i.fa.fa-info-circle.cursor-pointer.color-orange', {
        style: {
          margin: '5px',
        },
        onClick () { extension.tabs.create({ url }) },
      }),
    ]),
  ])
}