aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/scripts/controllers/preferences.js27
-rw-r--r--ui/app/components/balance-component.js6
-rw-r--r--ui/app/components/modals/hide-token-confirmation-modal.js6
-rw-r--r--ui/app/components/token-list.js6
4 files changed, 23 insertions, 22 deletions
diff --git a/app/scripts/controllers/preferences.js b/app/scripts/controllers/preferences.js
index 1438d6f7f..611d2d067 100644
--- a/app/scripts/controllers/preferences.js
+++ b/app/scripts/controllers/preferences.js
@@ -15,7 +15,7 @@ class PreferencesController {
* @property {string} store.currentAccountTab Indicates the selected tab in the ui
* @property {array} store.tokens The tokens the user wants display in their token lists
* @property {object} store.accountTokens The tokens stored per account and then per network type
- * @property {object} store.objects Contains assets objects related to assets added
+ * @property {object} store.imageObjects Contains assets objects related to assets added
* @property {boolean} store.useBlockie The users preference for blockie identicons within the UI
* @property {object} store.featureFlags A key-boolean map, where keys refer to features and booleans to whether the
* user wishes to see that feature
@@ -28,8 +28,8 @@ class PreferencesController {
frequentRpcList: [],
currentAccountTab: 'history',
accountTokens: {},
+ imageObjects: {},
tokens: [],
- objects: {},
suggestedTokens: {},
useBlockie: false,
featureFlags: {},
@@ -60,8 +60,8 @@ class PreferencesController {
return this.store.getState().suggestedTokens
}
- getObjects () {
- return this.store.getState().objects
+ getImageObjects () {
+ return this.store.getState().imageObjects
}
addSuggestedToken (tokenOpts) {
@@ -89,11 +89,12 @@ class PreferencesController {
case 'ERC20':
this._handleWatchAssetERC20(options, res)
res.result = options.address
+ end()
break
default:
// TODO return promise for not handled assets
+ end(new Error(`Asset of type ${type} not supported`))
}
- end()
} else {
next()
}
@@ -291,7 +292,7 @@ class PreferencesController {
const address = normalizeAddress(rawAddress)
const newEntry = { address, symbol, decimals }
const tokens = this.store.getState().tokens
- const objects = this.getObjects()
+ const imageObjects = this.getImageObjects()
const previousEntry = tokens.find((token, index) => {
return token.address === address
})
@@ -302,8 +303,8 @@ class PreferencesController {
} else {
tokens.push(newEntry)
}
- objects[address] = imageUrl
- this._updateAccountTokens(tokens, objects)
+ imageObjects[address] = imageUrl
+ this._updateAccountTokens(tokens, imageObjects)
return Promise.resolve(tokens)
}
@@ -316,10 +317,10 @@ class PreferencesController {
*/
removeToken (rawAddress) {
const tokens = this.store.getState().tokens
- const objects = this.getObjects()
+ const imageObjects = this.getImageObjects()
const updatedTokens = tokens.filter(token => token.address !== rawAddress)
- const updatedObjects = Object.keys(objects).filter(key => key !== rawAddress)
- this._updateAccountTokens(updatedTokens, updatedObjects)
+ delete imageObjects[rawAddress]
+ this._updateAccountTokens(updatedTokens, imageObjects)
return Promise.resolve(updatedTokens)
}
@@ -483,10 +484,10 @@ class PreferencesController {
* @param {array} tokens Array of tokens to be updated.
*
*/
- _updateAccountTokens (tokens, objects) {
+ _updateAccountTokens (tokens, imageObjects) {
const { accountTokens, providerType, selectedAddress } = this._getTokenRelatedStates()
accountTokens[selectedAddress][providerType] = tokens
- this.store.updateState({ accountTokens, tokens, objects })
+ this.store.updateState({ accountTokens, tokens, imageObjects })
}
/**
diff --git a/ui/app/components/balance-component.js b/ui/app/components/balance-component.js
index 1a55a1f5b..042420789 100644
--- a/ui/app/components/balance-component.js
+++ b/ui/app/components/balance-component.js
@@ -22,7 +22,7 @@ function mapStateToProps (state) {
network,
conversionRate: state.metamask.conversionRate,
currentCurrency: state.metamask.currentCurrency,
- objects: state.metamask.objects,
+ imageObjects: state.metamask.imageObjects,
}
}
@@ -33,9 +33,9 @@ function BalanceComponent () {
BalanceComponent.prototype.render = function () {
const props = this.props
- const { token, network, objects } = props
+ const { token, network, imageObjects } = props
let imageUrl
- if (token) imageUrl = objects[token.address]
+ if (token) imageUrl = imageObjects[token.address]
return h('div.balance-container', {}, [
diff --git a/ui/app/components/modals/hide-token-confirmation-modal.js b/ui/app/components/modals/hide-token-confirmation-modal.js
index b5f396e6f..4ed09d2ee 100644
--- a/ui/app/components/modals/hide-token-confirmation-modal.js
+++ b/ui/app/components/modals/hide-token-confirmation-modal.js
@@ -10,7 +10,7 @@ function mapStateToProps (state) {
return {
network: state.metamask.network,
token: state.appState.modal.modalState.props.token,
- tokenImagesHashes: state.metamask.objects,
+ imageObjects: state.metamask.imageObjects,
}
}
@@ -41,9 +41,9 @@ module.exports = connect(mapStateToProps, mapDispatchToProps)(HideTokenConfirmat
HideTokenConfirmationModal.prototype.render = function () {
- const { token, network, hideToken, hideModal, tokenImagesHashes } = this.props
+ const { token, network, hideToken, hideModal, imageObjects } = this.props
const { symbol, address } = token
- const imageUrl = tokenImagesHashes[address]
+ const imageUrl = imageObjects[address]
return h('div.hide-token-confirmation', {}, [
h('div.hide-token-confirmation__container', {
diff --git a/ui/app/components/token-list.js b/ui/app/components/token-list.js
index 0f88a7703..7ee8b5faa 100644
--- a/ui/app/components/token-list.js
+++ b/ui/app/components/token-list.js
@@ -15,7 +15,7 @@ function mapStateToProps (state) {
network: state.metamask.network,
tokens: state.metamask.tokens,
userAddress: selectors.getSelectedAddress(state),
- tokenImagesHashes: state.metamask.objects,
+ imageObjects: state.metamask.imageObjects,
}
}
@@ -47,7 +47,7 @@ function TokenList () {
}
TokenList.prototype.render = function () {
- const { userAddress, tokenImagesHashes } = this.props
+ const { userAddress, imageObjects } = this.props
const state = this.state
const { tokens, isLoading, error } = state
if (isLoading) {
@@ -77,7 +77,7 @@ TokenList.prototype.render = function () {
}
return h('div', tokens.map((tokenData) => {
- tokenData.imageUrl = tokenImagesHashes[tokenData.address]
+ tokenData.imageUrl = imageObjects[tokenData.address]
return h(TokenCell, tokenData)
}))