mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Disable token list
This commit is contained in:
parent
68c6b2d666
commit
176dd6d214
@ -12,7 +12,7 @@ const ExportAccountView = require('./components/account-export')
|
|||||||
const ethUtil = require('ethereumjs-util')
|
const ethUtil = require('ethereumjs-util')
|
||||||
const EditableLabel = require('./components/editable-label')
|
const EditableLabel = require('./components/editable-label')
|
||||||
const TabBar = require('./components/tab-bar')
|
const TabBar = require('./components/tab-bar')
|
||||||
const TokenList = require('./components/token-list')
|
// const TokenList = require('./components/token-list')
|
||||||
const AccountDropdowns = require('./components/account-dropdowns').AccountDropdowns
|
const AccountDropdowns = require('./components/account-dropdowns').AccountDropdowns
|
||||||
|
|
||||||
module.exports = connect(mapStateToProps)(AccountDetailScreen)
|
module.exports = connect(mapStateToProps)(AccountDetailScreen)
|
||||||
@ -255,17 +255,34 @@ AccountDetailScreen.prototype.tabSections = function () {
|
|||||||
|
|
||||||
AccountDetailScreen.prototype.tabSwitchView = function () {
|
AccountDetailScreen.prototype.tabSwitchView = function () {
|
||||||
const props = this.props
|
const props = this.props
|
||||||
const { address, network } = props
|
const { address/*, network */} = props
|
||||||
const { currentAccountTab, tokens } = this.props
|
const { currentAccountTab/*, tokens*/ } = this.props
|
||||||
|
|
||||||
switch (currentAccountTab) {
|
switch (currentAccountTab) {
|
||||||
case 'tokens':
|
case 'tokens':
|
||||||
return h(TokenList, {
|
// return h(TokenList, {
|
||||||
userAddress: address,
|
// userAddress: address,
|
||||||
network,
|
// network,
|
||||||
tokens,
|
// tokens,
|
||||||
addToken: () => this.props.dispatch(actions.showAddTokenPage()),
|
// addToken: () => this.props.dispatch(actions.showAddTokenPage()),
|
||||||
})
|
// })
|
||||||
|
return h('.hotFix', {
|
||||||
|
style: {
|
||||||
|
padding: '80px',
|
||||||
|
},
|
||||||
|
}, [`
|
||||||
|
Token List is temporally
|
||||||
|
you can check your token balnce
|
||||||
|
`, h('span.hotFix', {
|
||||||
|
style: {
|
||||||
|
color: 'rgba(247, 134, 28, 1)',
|
||||||
|
},
|
||||||
|
onClick: () => {
|
||||||
|
global.platform.openWindow({
|
||||||
|
url: `https://ethplorer.io/address/${address}`,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
}, 'here')])
|
||||||
default:
|
default:
|
||||||
return this.transactionList()
|
return this.transactionList()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user