2017-04-21 04:07:09 +02:00
|
|
|
const Component = require('react').Component
|
|
|
|
const h = require('react-hyperscript')
|
|
|
|
const inherits = require('util').inherits
|
2017-04-21 18:01:51 +02:00
|
|
|
const Identicon = require('./identicon')
|
2017-04-21 04:07:09 +02:00
|
|
|
|
|
|
|
module.exports = TokenCell
|
|
|
|
|
|
|
|
inherits(TokenCell, Component)
|
|
|
|
function TokenCell () {
|
|
|
|
Component.call(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
TokenCell.prototype.render = function () {
|
|
|
|
const props = this.props
|
2017-06-14 02:47:56 +02:00
|
|
|
const { address, symbol, string, network, userAddress } = props
|
2017-04-21 04:07:09 +02:00
|
|
|
|
|
|
|
return (
|
2017-06-14 02:47:56 +02:00
|
|
|
h('li.token-cell', {
|
|
|
|
style: { cursor: network === '1' ? 'pointer' : 'default' },
|
|
|
|
onClick: (event) => {
|
|
|
|
const url = urlFor(address, userAddress, network)
|
|
|
|
if (url) {
|
|
|
|
navigateTo(url)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}, [
|
2017-04-21 18:01:51 +02:00
|
|
|
|
|
|
|
h(Identicon, {
|
|
|
|
diameter: 50,
|
|
|
|
address,
|
2017-04-24 22:55:19 +02:00
|
|
|
network,
|
2017-04-21 18:01:51 +02:00
|
|
|
}),
|
|
|
|
|
|
|
|
h('h3', `${string || 0} ${symbol}`),
|
2017-04-21 04:07:09 +02:00
|
|
|
])
|
|
|
|
)
|
|
|
|
}
|
2017-04-24 22:55:19 +02:00
|
|
|
|
2017-06-14 02:47:56 +02:00
|
|
|
function navigateTo (url) {
|
|
|
|
global.platform.openWindow({ url })
|
|
|
|
}
|
|
|
|
|
|
|
|
function urlFor (tokenAddress, address, network) {
|
|
|
|
return `https://etherscan.io/token/${tokenAddress}?a=${address}`
|
|
|
|
}
|
|
|
|
|