aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/account-info-link.js
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-08-23 10:23:01 +0800
committerGitHub <noreply@github.com>2016-08-23 10:23:01 +0800
commitc97866e367a3e28b5b91a0e5e3a1d1befa652f13 (patch)
treeac10b0350dbcb5cfcd2f708503d478eb18a2b739 /ui/app/components/account-info-link.js
parent8b9999b71eab07187e2723aadcc8163140985301 (diff)
parent07927b57986ffb0035b6b30ae7e54b843b551d83 (diff)
downloadtangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar.gz
tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.tar.zst
tangerine-wallet-browser-c97866e367a3e28b5b91a0e5e3a1d1befa652f13.zip
Merge branch 'master' into kumavis-patch-1
Diffstat (limited to 'ui/app/components/account-info-link.js')
-rw-r--r--ui/app/components/account-info-link.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/ui/app/components/account-info-link.js b/ui/app/components/account-info-link.js
new file mode 100644
index 000000000..4fe3b8b5d
--- /dev/null
+++ b/ui/app/components/account-info-link.js
@@ -0,0 +1,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 }) },
+ }),
+ ]),
+ ])
+}