2017-04-21 04:07:09 +02:00
|
|
|
const Component = require('react').Component
|
|
|
|
const h = require('react-hyperscript')
|
|
|
|
const inherits = require('util').inherits
|
2017-09-06 12:17:49 +02:00
|
|
|
const connect = require('react-redux').connect
|
2017-04-21 18:01:51 +02:00
|
|
|
const Identicon = require('./identicon')
|
2017-06-27 23:49:41 +02:00
|
|
|
const prefixForNetwork = require('../../lib/etherscan-prefix-for-network')
|
2017-09-06 12:17:49 +02:00
|
|
|
const selectors = require('../selectors')
|
|
|
|
const actions = require('../actions')
|
2017-04-21 04:07:09 +02:00
|
|
|
|
2017-09-06 12:17:49 +02:00
|
|
|
function mapStateToProps (state) {
|
|
|
|
return {
|
|
|
|
network: state.metamask.network,
|
|
|
|
selectedTokenAddress: state.metamask.selectedTokenAddress,
|
|
|
|
userAddress: selectors.getSelectedAddress(state),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
|
|
return {
|
|
|
|
setSelectedToken: address => dispatch(actions.setSelectedToken(address)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(TokenCell)
|
2017-04-21 04:07:09 +02:00
|
|
|
|
|
|
|
inherits(TokenCell, Component)
|
|
|
|
function TokenCell () {
|
|
|
|
Component.call(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
TokenCell.prototype.render = function () {
|
|
|
|
const props = this.props
|
2017-09-05 10:48:52 +02:00
|
|
|
const {
|
|
|
|
address,
|
|
|
|
symbol,
|
|
|
|
string,
|
|
|
|
network,
|
2017-09-06 12:17:49 +02:00
|
|
|
setSelectedToken,
|
|
|
|
selectedTokenAddress,
|
2017-09-05 10:48:52 +02:00
|
|
|
// userAddress,
|
|
|
|
} = props
|
2017-04-21 04:07:09 +02:00
|
|
|
|
|
|
|
return (
|
2017-09-05 10:48:52 +02:00
|
|
|
h('div.token-list-item', {
|
2017-09-07 12:14:53 +02:00
|
|
|
className: `token-list-item ${selectedTokenAddress === address ? 'token-list-item--active' : ''}`,
|
2017-09-06 12:17:49 +02:00
|
|
|
// style: { cursor: network === '1' ? 'pointer' : 'default' },
|
2017-09-05 10:48:52 +02:00
|
|
|
// onClick: this.view.bind(this, address, userAddress, network),
|
2017-09-06 12:17:49 +02:00
|
|
|
onClick: () => setSelectedToken(address),
|
2017-06-14 02:47:56 +02:00
|
|
|
}, [
|
2017-04-21 18:01:51 +02:00
|
|
|
|
|
|
|
h(Identicon, {
|
2017-09-05 10:48:52 +02:00
|
|
|
className: 'token-list-item__identicon',
|
|
|
|
diameter: 45,
|
2017-04-21 18:01:51 +02:00
|
|
|
address,
|
2017-04-24 22:55:19 +02:00
|
|
|
network,
|
2017-04-21 18:01:51 +02:00
|
|
|
}),
|
|
|
|
|
2017-09-05 10:48:52 +02:00
|
|
|
h('h.token-list-item__balance-wrapper', null, [
|
|
|
|
h('h3.token-list-item__token-balance', `${string || 0} ${symbol}`),
|
2017-06-20 01:12:34 +02:00
|
|
|
|
2017-09-07 08:03:23 +02:00
|
|
|
// h('div.token-list-item__fiat-amount', {
|
|
|
|
// style: {},
|
|
|
|
// }, '210 FPO'),
|
2017-09-05 10:48:52 +02:00
|
|
|
]),
|
2017-06-20 01:12:34 +02:00
|
|
|
|
2017-06-30 19:28:27 +02:00
|
|
|
/*
|
2017-06-20 01:12:34 +02:00
|
|
|
h('button', {
|
|
|
|
onClick: this.send.bind(this, address),
|
|
|
|
}, 'SEND'),
|
2017-06-30 19:28:27 +02:00
|
|
|
*/
|
2017-06-20 01:12:34 +02:00
|
|
|
|
2017-04-21 04:07:09 +02:00
|
|
|
])
|
|
|
|
)
|
|
|
|
}
|
2017-04-24 22:55:19 +02:00
|
|
|
|
2017-06-20 01:12:34 +02:00
|
|
|
TokenCell.prototype.send = function (address, event) {
|
|
|
|
event.preventDefault()
|
2017-06-20 17:01:00 +02:00
|
|
|
event.stopPropagation()
|
2017-06-20 01:12:34 +02:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-14 02:47:56 +02:00
|
|
|
function navigateTo (url) {
|
|
|
|
global.platform.openWindow({ url })
|
|
|
|
}
|
|
|
|
|
2017-06-20 01:12:34 +02:00
|
|
|
function etherscanLinkFor (tokenAddress, address, network) {
|
2017-06-27 23:49:41 +02:00
|
|
|
const prefix = prefixForNetwork(network)
|
|
|
|
return `https://${prefix}etherscan.io/token/${tokenAddress}?a=${address}`
|
2017-06-14 02:47:56 +02:00
|
|
|
}
|
|
|
|
|
2017-06-20 01:12:34 +02:00
|
|
|
function tokenFactoryFor (tokenAddress) {
|
|
|
|
return `https://tokenfactory.surge.sh/#/token/${tokenAddress}`
|
|
|
|
}
|
|
|
|
|