diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-11-16 09:12:13 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-11-16 09:12:13 +0800 |
commit | 5bfb700fa833a415a541a959736d6184d3c07753 (patch) | |
tree | 7839d889016500fc4915c55090faad44e3a2d9ca | |
parent | e18109f1eac855a828dc5c6011bbc8a4dbc69f4c (diff) | |
download | tangerine-wallet-browser-5bfb700fa833a415a541a959736d6184d3c07753.tar tangerine-wallet-browser-5bfb700fa833a415a541a959736d6184d3c07753.tar.gz tangerine-wallet-browser-5bfb700fa833a415a541a959736d6184d3c07753.tar.bz2 tangerine-wallet-browser-5bfb700fa833a415a541a959736d6184d3c07753.tar.lz tangerine-wallet-browser-5bfb700fa833a415a541a959736d6184d3c07753.tar.xz tangerine-wallet-browser-5bfb700fa833a415a541a959736d6184d3c07753.tar.zst tangerine-wallet-browser-5bfb700fa833a415a541a959736d6184d3c07753.zip |
Minimize dispatches by using emitters and relying on state updates.
-rw-r--r-- | app/scripts/keyring-controller.js | 13 | ||||
-rw-r--r-- | ui/app/actions.js | 25 |
2 files changed, 12 insertions, 26 deletions
diff --git a/app/scripts/keyring-controller.js b/app/scripts/keyring-controller.js index e635ad285..280b332a0 100644 --- a/app/scripts/keyring-controller.js +++ b/app/scripts/keyring-controller.js @@ -108,7 +108,7 @@ module.exports = class KeyringController extends EventEmitter { this.setupAccounts(accounts) this.emit('update') - cb(null, this.getState()) + cb() }) }) } @@ -163,7 +163,7 @@ module.exports = class KeyringController extends EventEmitter { this.setupAccounts(accounts) this.persistAllKeyrings() .then(() => { - cb(err, this.getState()) + cb(err) }) .catch((reason) => { cb(reason) @@ -173,9 +173,7 @@ module.exports = class KeyringController extends EventEmitter { placeSeedWords () { const firstKeyring = this.keyrings[0] - console.log(firstKeyring) const seedWords = firstKeyring.serialize().mnemonic - console.log(seedWords) this.configManager.setSeedWords(seedWords) } @@ -188,7 +186,7 @@ module.exports = class KeyringController extends EventEmitter { this.keyrings = keyrings this.setupAccounts() this.emit('update') - cb(null, this.getState()) + cb() }) .catch((err) => { console.error(err) @@ -215,7 +213,7 @@ module.exports = class KeyringController extends EventEmitter { this.setupAccounts(accounts) this.persistAllKeyrings() .then(() => { - cb(null, this.getState()) + cb() }) .catch((reason) => { cb(reason) @@ -228,7 +226,7 @@ module.exports = class KeyringController extends EventEmitter { this.setupAccounts(accounts) this.persistAllKeyrings() .then(() => { - cb(null, this.getState()) + cb() }) .catch((reason) => { cb(reason) @@ -521,6 +519,7 @@ module.exports = class KeyringController extends EventEmitter { setLocked (cb) { this.key = null this.keyrings = [] + this.emit('update') cb() } diff --git a/ui/app/actions.js b/ui/app/actions.js index 7021c69db..12ba8fffa 100644 --- a/ui/app/actions.js +++ b/ui/app/actions.js @@ -161,12 +161,11 @@ function tryUnlockMetamask (password) { return (dispatch) => { dispatch(actions.showLoadingIndication()) dispatch(actions.unlockInProgress()) - background.submitPassword(password, (err, newState) => { + background.submitPassword(password, (err) => { dispatch(actions.hideLoadingIndication()) if (err) { dispatch(actions.unlockFailed(err.message)) } else { - dispatch(this.updateMetamaskState(newState)) let selectedAccount try { selectedAccount = newState.metamask.selectedAccount @@ -195,23 +194,19 @@ function confirmSeedWords () { function createNewVaultAndRestore (password, seed) { return (dispatch) => { dispatch(actions.showLoadingIndication()) - background.createNewVaultAndRestore(password, seed, (err, newState) => { + background.createNewVaultAndRestore(password, seed, (err) => { dispatch(actions.hideLoadingIndication()) if (err) return dispatch(actions.displayWarning(err.message)) - dispatch(this.updateMetamaskState(newState)) }) } } function createNewVaultAndKeychain (password, entropy) { return (dispatch) => { - background.createNewVaultAndKeychain(password, entropy, (err, newState) => { + background.createNewVaultAndKeychain(password, entropy, (err) => { if (err) { return dispatch(actions.showWarning(err.message)) } - - dispatch(this.updateMetamaskState(newState)) - dispatch(this.showNewVaultSeed()) }) } } @@ -225,11 +220,10 @@ function revealSeedConfirmation () { function requestRevealSeed (password) { return (dispatch) => { dispatch(actions.showLoadingIndication()) - background.submitPassword(password, (err, newState) => { + background.submitPassword(password, (err) => { dispatch(actions.hideLoadingIndication()) if (err) return dispatch(actions.displayWarning(err.message)) background.placeSeedWords() - dispatch(actions.showNewVaultSeed()) }) } } @@ -238,13 +232,11 @@ function requestRevealSeed (password) { function addNewKeyring (type, opts) { return (dispatch) => { dispatch(actions.showLoadingIndication()) - background.addNewKeyring(type, opts, (err, newState) => { + background.addNewKeyring(type, opts, (err) => { dispatch(this.hideLoadingIndication()) if (err) { return dispatch(actions.showWarning(err)) } - dispatch(this.updateMetamaskState(newState)) - dispatch(this.showAccountsPage()) }) } } @@ -252,12 +244,11 @@ function addNewKeyring (type, opts) { function addNewAccount (ringNumber = 0) { return (dispatch) => { dispatch(actions.showLoadingIndication()) - background.addNewAccount(ringNumber, (err, newState) => { + background.addNewAccount(ringNumber, (err) => { dispatch(this.hideLoadingIndication()) if (err) { return dispatch(actions.showWarning(err)) } - dispatch(this.updateMetamaskState(newState)) }) } } @@ -457,10 +448,6 @@ function lockMetamask () { if (err) { return dispatch(actions.displayWarning(err.message)) } - - dispatch({ - type: actions.LOCK_METAMASK, - }) }) } } |