1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00

Reduce token list clutter by only showing held tokens

We could change this when we allow hiding/removing tokens, but for now, this is a simple and pleasant solution.
This commit is contained in:
Dan Finlay 2017-06-20 08:58:25 -07:00
parent 41d992cca9
commit 027394b205

View File

@ -20,7 +20,7 @@ module.exports = TokenList
inherits(TokenList, Component)
function TokenList () {
this.state = {
tokens: null,
tokens: [],
isLoading: true,
network: null,
}
@ -150,12 +150,9 @@ TokenList.prototype.componentWillUpdate = function (nextProps) {
}
}
TokenList.prototype.updateBalances = function (tokenData) {
const desired = this.props.tokens.map(token => token.address)
const heldTokens = tokenData.filter(token => {
const held = token.balance !== '0' && token.string !== '0.000'
const preferred = desired.includes(normalizeAddress(token.address))
return held || preferred
TokenList.prototype.updateBalances = function (tokens) {
const heldTokens = tokens.filter(token => {
return token.balance !== '0' && token.string !== '0.000'
})
this.setState({ tokens: heldTokens, isLoading: false })
}