diff options
author | Thomas Huang <thomas.b.huang@gmail.com> | 2017-06-28 01:32:28 +0800 |
---|---|---|
committer | Thomas Huang <thomas.b.huang@gmail.com> | 2017-06-28 01:32:28 +0800 |
commit | 1977417017eec00a546ab816fa635ea575e4835d (patch) | |
tree | 77f942810eda1665b4b8974077985f082bfc24c3 /ui/app/components/token-cell.js | |
parent | 235cb1f2d790a7bda349ab0d33ad1009751a8536 (diff) | |
parent | 48f7cff8c0e765e85532c860c5f3061ca1d6deb7 (diff) | |
download | tangerine-wallet-browser-1977417017eec00a546ab816fa635ea575e4835d.tar tangerine-wallet-browser-1977417017eec00a546ab816fa635ea575e4835d.tar.gz tangerine-wallet-browser-1977417017eec00a546ab816fa635ea575e4835d.tar.bz2 tangerine-wallet-browser-1977417017eec00a546ab816fa635ea575e4835d.tar.lz tangerine-wallet-browser-1977417017eec00a546ab816fa635ea575e4835d.tar.xz tangerine-wallet-browser-1977417017eec00a546ab816fa635ea575e4835d.tar.zst tangerine-wallet-browser-1977417017eec00a546ab816fa635ea575e4835d.zip |
Merge branch 'master' into i1473-dappDefaultGasPrice
Diffstat (limited to 'ui/app/components/token-cell.js')
-rw-r--r-- | ui/app/components/token-cell.js | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/ui/app/components/token-cell.js b/ui/app/components/token-cell.js new file mode 100644 index 000000000..d3a895d36 --- /dev/null +++ b/ui/app/components/token-cell.js @@ -0,0 +1,46 @@ +const Component = require('react').Component +const h = require('react-hyperscript') +const inherits = require('util').inherits +const Identicon = require('./identicon') + +module.exports = TokenCell + +inherits(TokenCell, Component) +function TokenCell () { + Component.call(this) +} + +TokenCell.prototype.render = function () { + const props = this.props + const { address, symbol, string, network, userAddress } = props + + return ( + h('li.token-cell', { + style: { cursor: network === '1' ? 'pointer' : 'default' }, + onClick: (event) => { + const url = urlFor(address, userAddress, network) + if (url) { + navigateTo(url) + } + }, + }, [ + + h(Identicon, { + diameter: 50, + address, + network, + }), + + h('h3', `${string || 0} ${symbol}`), + ]) + ) +} + +function navigateTo (url) { + global.platform.openWindow({ url }) +} + +function urlFor (tokenAddress, address, network) { + return `https://etherscan.io/token/${tokenAddress}?a=${address}` +} + |