nifty-wallet/ui/app/components/token-cell.js

84 lines
1.9 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
2017-04-21 09:01:51 -07:00
const Identicon = require('./identicon')
2017-06-27 14:49:41 -07:00
const prefixForNetwork = require('../../lib/etherscan-prefix-for-network')
module.exports = TokenCell
inherits(TokenCell, Component)
function TokenCell () {
Component.call(this)
}
TokenCell.prototype.render = function () {
const props = this.props
2017-09-05 01:48:52 -07:00
const {
address,
symbol,
string,
network,
// userAddress,
} = props
return (
2017-09-05 01:48:52 -07:00
h('div.token-list-item', {
style: { cursor: network === '1' ? 'pointer' : 'default' },
2017-09-05 01:48:52 -07:00
// onClick: this.view.bind(this, address, userAddress, network),
}, [
2017-04-21 09:01:51 -07:00
h(Identicon, {
2017-09-05 01:48:52 -07:00
className: 'token-list-item__identicon',
diameter: 45,
2017-04-21 09:01:51 -07:00
address,
2017-04-24 13:55:19 -07:00
network,
2017-04-21 09:01:51 -07:00
}),
2017-09-05 01:48:52 -07:00
h('h.token-list-item__balance-wrapper', null, [
h('h3.token-list-item__token-balance', `${string || 0} ${symbol}`),
2017-09-05 01:48:52 -07:00
h('div.token-list-item__fiat-amount', {
style: {},
}, '210 FPO'),
]),
/*
h('button', {
onClick: this.send.bind(this, address),
}, 'SEND'),
*/
])
)
}
2017-04-24 13:55:19 -07:00
TokenCell.prototype.send = function (address, event) {
event.preventDefault()
2017-06-20 08:01:00 -07:00
event.stopPropagation()
const url = tokenFactoryFor(address)
if (url) {
navigateTo(url)
}
}
TokenCell.prototype.view = function (address, userAddress, network, event) {
const url = etherscanLinkFor(address, userAddress, network)
if (url) {
navigateTo(url)
}
}
function navigateTo (url) {
global.platform.openWindow({ url })
}
function etherscanLinkFor (tokenAddress, address, network) {
2017-06-27 14:49:41 -07:00
const prefix = prefixForNetwork(network)
return `https://${prefix}etherscan.io/token/${tokenAddress}?a=${address}`
}
function tokenFactoryFor (tokenAddress) {
return `https://tokenfactory.surge.sh/#/token/${tokenAddress}`
}