diff options
author | kumavis <kumavis@users.noreply.github.com> | 2016-08-23 10:22:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-23 10:22:31 +0800 |
commit | 07927b57986ffb0035b6b30ae7e54b843b551d83 (patch) | |
tree | 5e11c75a4b1fdbb6d2d351c4ab9f1f50c8b45cb1 /ui/app/components/account-info-link.js | |
parent | f9c58c07466d181a895cd38b1c3049a11e02cb99 (diff) | |
parent | 5c9ca21ba3224fd54430a3c518b825ff6cd112f3 (diff) | |
download | tangerine-wallet-browser-07927b57986ffb0035b6b30ae7e54b843b551d83.tar tangerine-wallet-browser-07927b57986ffb0035b6b30ae7e54b843b551d83.tar.gz tangerine-wallet-browser-07927b57986ffb0035b6b30ae7e54b843b551d83.tar.bz2 tangerine-wallet-browser-07927b57986ffb0035b6b30ae7e54b843b551d83.tar.lz tangerine-wallet-browser-07927b57986ffb0035b6b30ae7e54b843b551d83.tar.xz tangerine-wallet-browser-07927b57986ffb0035b6b30ae7e54b843b551d83.tar.zst tangerine-wallet-browser-07927b57986ffb0035b6b30ae7e54b843b551d83.zip |
Merge pull request #558 from MetaMask/i390-TransactionLimit
Enforce transaction log limit
Diffstat (limited to 'ui/app/components/account-info-link.js')
-rw-r--r-- | ui/app/components/account-info-link.js | 42 |
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 }) }, + }), + ]), + ]) +} |