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

139 lines
3.5 KiB
JavaScript
Raw Normal View History

const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
2017-09-06 03:17:49 -07:00
const connect = require('react-redux').connect
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')
2017-09-06 03:17:49 -07:00
const selectors = require('../selectors')
const actions = require('../actions')
2017-09-15 05:31:25 -07:00
const { conversionUtil } = require('../conversion-util')
2017-09-06 03:17:49 -07:00
function mapStateToProps (state) {
return {
network: state.metamask.network,
selectedTokenAddress: state.metamask.selectedTokenAddress,
userAddress: selectors.getSelectedAddress(state),
2017-09-15 05:31:25 -07:00
tokenExchangeRates: state.metamask.tokenExchangeRates,
ethToUSDRate: state.metamask.conversionRate,
2017-09-06 03:17:49 -07:00
}
}
function mapDispatchToProps (dispatch) {
return {
setSelectedToken: address => dispatch(actions.setSelectedToken(address)),
2017-09-15 05:31:25 -07:00
updateTokenExchangeRate: token => dispatch(actions.updateTokenExchangeRate(token)),
2017-09-06 03:17:49 -07:00
}
}
module.exports = connect(mapStateToProps, mapDispatchToProps)(TokenCell)
inherits(TokenCell, Component)
function TokenCell () {
Component.call(this)
}
2017-09-15 05:31:25 -07:00
TokenCell.prototype.componentWillMount = function () {
const {
updateTokenExchangeRate,
symbol,
} = this.props
updateTokenExchangeRate(symbol)
}
TokenCell.prototype.render = function () {
const props = this.props
2017-09-05 01:48:52 -07:00
const {
address,
symbol,
string,
network,
2017-09-06 03:17:49 -07:00
setSelectedToken,
selectedTokenAddress,
2017-09-15 05:31:25 -07:00
tokenExchangeRates,
ethToUSDRate,
2017-09-05 01:48:52 -07:00
// userAddress,
} = props
2017-09-15 05:31:25 -07:00
const pair = `${symbol.toLowerCase()}_eth`;
let currentTokenToEthRate;
let currentTokenInUSD;
let formattedUSD = ''
if (tokenExchangeRates[pair]) {
currentTokenToEthRate = tokenExchangeRates[pair].rate;
currentTokenInUSD = conversionUtil(string, {
fromNumericBase: 'dec',
fromCurrency: symbol,
toCurrency: 'USD',
numberOfDecimals: 2,
conversionRate: currentTokenToEthRate,
ethToUSDRate,
})
formattedUSD = `$${currentTokenInUSD} USD`;
}
return (
2017-09-05 01:48:52 -07:00
h('div.token-list-item', {
className: `token-list-item ${selectedTokenAddress === address ? 'token-list-item--active' : ''}`,
2017-09-06 03:17:49 -07:00
// style: { cursor: network === '1' ? 'pointer' : 'default' },
2017-09-05 01:48:52 -07:00
// onClick: this.view.bind(this, address, userAddress, network),
2017-09-06 03:17:49 -07:00
onClick: () => setSelectedToken(address),
}, [
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-15 05:31:25 -07:00
h('div.token-list-item__fiat-amount', {
style: {},
}, formattedUSD),
2017-09-05 01:48:52 -07:00
]),
/*
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}`
}