You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
4.7 KiB
188 lines
4.7 KiB
const Component = require('react').Component
|
|
const PropTypes = require('prop-types')
|
|
const h = require('react-hyperscript')
|
|
const inherits = require('util').inherits
|
|
const TokenTracker = require('eth-token-tracker')
|
|
const TokenCell = require('./token-cell.js')
|
|
const connect = require('react-redux').connect
|
|
const selectors = require('../selectors')
|
|
const log = require('loglevel')
|
|
|
|
function mapStateToProps (state) {
|
|
return {
|
|
network: state.metamask.network,
|
|
tokens: state.metamask.tokens,
|
|
userAddress: selectors.getSelectedAddress(state),
|
|
assetImages: state.metamask.assetImages,
|
|
}
|
|
}
|
|
|
|
const defaultTokens = []
|
|
const contracts = require('eth-contract-metadata')
|
|
for (const address in contracts) {
|
|
const contract = contracts[address]
|
|
if (contract.erc20) {
|
|
contract.address = address
|
|
defaultTokens.push(contract)
|
|
}
|
|
}
|
|
|
|
TokenList.contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
module.exports = connect(mapStateToProps)(TokenList)
|
|
|
|
|
|
inherits(TokenList, Component)
|
|
function TokenList () {
|
|
this.state = {
|
|
tokens: [],
|
|
isLoading: true,
|
|
network: null,
|
|
}
|
|
Component.call(this)
|
|
}
|
|
|
|
TokenList.prototype.render = function () {
|
|
const { userAddress, assetImages } = this.props
|
|
const state = this.state
|
|
const { tokens, isLoading, error } = state
|
|
if (isLoading) {
|
|
return this.message(this.context.t('loadingTokens'))
|
|
}
|
|
|
|
if (error) {
|
|
log.error(error)
|
|
return h('.hotFix', {
|
|
style: {
|
|
padding: '80px',
|
|
},
|
|
}, [
|
|
this.context.t('troubleTokenBalances'),
|
|
h('span.hotFix', {
|
|
style: {
|
|
color: 'rgba(247, 134, 28, 1)',
|
|
cursor: 'pointer',
|
|
},
|
|
onClick: () => {
|
|
global.platform.openWindow({
|
|
url: `https://ethplorer.io/address/${userAddress}`,
|
|
})
|
|
},
|
|
}, this.context.t('here')),
|
|
])
|
|
}
|
|
|
|
return h('div', tokens.map((tokenData) => {
|
|
tokenData.image = assetImages[tokenData.address]
|
|
return h(TokenCell, tokenData)
|
|
}))
|
|
|
|
}
|
|
|
|
TokenList.prototype.message = function (body) {
|
|
return h('div', {
|
|
style: {
|
|
display: 'flex',
|
|
height: '250px',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
padding: '30px',
|
|
},
|
|
}, body)
|
|
}
|
|
|
|
TokenList.prototype.componentDidMount = function () {
|
|
this.createFreshTokenTracker()
|
|
}
|
|
|
|
TokenList.prototype.createFreshTokenTracker = function () {
|
|
if (this.tracker) {
|
|
// Clean up old trackers when refreshing:
|
|
this.tracker.stop()
|
|
this.tracker.removeListener('update', this.balanceUpdater)
|
|
this.tracker.removeListener('error', this.showError)
|
|
}
|
|
|
|
if (!global.ethereumProvider) return
|
|
const { userAddress } = this.props
|
|
|
|
this.tracker = new TokenTracker({
|
|
userAddress,
|
|
provider: global.ethereumProvider,
|
|
tokens: this.props.tokens,
|
|
pollingInterval: 8000,
|
|
})
|
|
|
|
|
|
// Set up listener instances for cleaning up
|
|
this.balanceUpdater = this.updateBalances.bind(this)
|
|
this.showError = (error) => {
|
|
this.setState({ error, isLoading: false })
|
|
}
|
|
this.tracker.on('update', this.balanceUpdater)
|
|
this.tracker.on('error', this.showError)
|
|
|
|
this.tracker.updateBalances()
|
|
.then(() => {
|
|
this.updateBalances(this.tracker.serialize())
|
|
})
|
|
.catch((reason) => {
|
|
log.error(`Problem updating balances`, reason)
|
|
this.setState({ isLoading: false })
|
|
})
|
|
}
|
|
|
|
TokenList.prototype.componentDidUpdate = function (nextProps) {
|
|
const {
|
|
network: oldNet,
|
|
userAddress: oldAddress,
|
|
tokens,
|
|
} = this.props
|
|
const {
|
|
network: newNet,
|
|
userAddress: newAddress,
|
|
tokens: newTokens,
|
|
} = nextProps
|
|
|
|
const isLoading = newNet === 'loading'
|
|
const missingInfo = !oldNet || !newNet || !oldAddress || !newAddress
|
|
const sameUserAndNetwork = oldAddress === newAddress && oldNet === newNet
|
|
const shouldUpdateTokens = isLoading || missingInfo || sameUserAndNetwork
|
|
|
|
const oldTokensLength = tokens ? tokens.length : 0
|
|
const tokensLengthUnchanged = oldTokensLength === newTokens.length
|
|
|
|
if (tokensLengthUnchanged && shouldUpdateTokens) return
|
|
|
|
this.setState({ isLoading: true })
|
|
this.createFreshTokenTracker()
|
|
}
|
|
|
|
TokenList.prototype.updateBalances = function (tokens) {
|
|
if (!this.tracker.running) {
|
|
return
|
|
}
|
|
this.setState({ tokens, isLoading: false })
|
|
}
|
|
|
|
TokenList.prototype.componentWillUnmount = function () {
|
|
if (!this.tracker) return
|
|
this.tracker.stop()
|
|
this.tracker.removeListener('update', this.balanceUpdater)
|
|
this.tracker.removeListener('error', this.showError)
|
|
}
|
|
|
|
// function uniqueMergeTokens (tokensA, tokensB = []) {
|
|
// const uniqueAddresses = []
|
|
// const result = []
|
|
// tokensA.concat(tokensB).forEach((token) => {
|
|
// const normal = normalizeAddress(token.address)
|
|
// if (!uniqueAddresses.includes(normal)) {
|
|
// uniqueAddresses.push(normal)
|
|
// result.push(token)
|
|
// }
|
|
// })
|
|
// return result
|
|
// }
|
|
|