Add no tokens message

feature/default_network_editable
Dan Finlay 8 years ago
parent 0b18a69679
commit 1814721e80
  1. 22
      ui/app/components/token-list.js

@ -29,14 +29,7 @@ TokenList.prototype.render = function () {
const { userAddress } = this.props
if (isLoading) {
return h('div', {
style: {
display: 'flex',
height: '250px',
alignItems: 'center',
justifyContent: 'center',
},
}, 'Loading')
return this.message('Loading')
}
const network = this.props.network
@ -71,10 +64,21 @@ TokenList.prototype.render = function () {
cursor: pointer;
}
`)].concat(tokenViews))
`)].concat(tokenViews.length ? tokenViews : this.message('No Tokens Found.')))
)
}
TokenList.prototype.message = function (body) {
return h('div', {
style: {
display: 'flex',
height: '250px',
alignItems: 'center',
justifyContent: 'center',
},
}, body)
}
TokenList.prototype.componentDidMount = function () {
this.createFreshTokenTracker()
}

Loading…
Cancel
Save