Use `async/await` in action creators that force update state (#8421)

The action creators that use `forceUpdateMetamaskState` without
awaiting that task's completion have been updated to use `async/await`.
This was done in preparation for `await`-ing the completion of
`forceUpdateMetamaskState`, which will be done in a subsequent PR.
feature/default_network_editable
Mark Stacey 5 years ago committed by GitHub
parent eb06394dd9
commit b4c6c11267
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 101
      ui/app/store/actions.js

@ -304,86 +304,79 @@ export function importNewAccount (strategy, args) {
export function addNewAccount () { export function addNewAccount () {
log.debug(`background.addNewAccount`) log.debug(`background.addNewAccount`)
return (dispatch, getState) => { return async (dispatch, getState) => {
const oldIdentities = getState().metamask.identities const oldIdentities = getState().metamask.identities
dispatch(showLoadingIndication()) dispatch(showLoadingIndication())
return new Promise((resolve, reject) => {
background.addNewAccount((err, { identities: newIdentities }) => {
if (err) {
dispatch(displayWarning(err.message))
return reject(err)
}
const newAccountAddress = Object.keys(newIdentities).find((address) => !oldIdentities[address])
dispatch(hideLoadingIndication())
forceUpdateMetamaskState(dispatch) let newIdentities
return resolve(newAccountAddress) try {
}) const { identities } = await promisifiedBackground.addNewAccount()
}) newIdentities = identities
} catch (error) {
dispatch(displayWarning(error.message))
throw error
}
const newAccountAddress = Object.keys(newIdentities).find((address) => !oldIdentities[address])
dispatch(hideLoadingIndication())
forceUpdateMetamaskState(dispatch)
return newAccountAddress
} }
} }
export function checkHardwareStatus (deviceName, hdPath) { export function checkHardwareStatus (deviceName, hdPath) {
log.debug(`background.checkHardwareStatus`, deviceName, hdPath) log.debug(`background.checkHardwareStatus`, deviceName, hdPath)
return (dispatch) => { return async (dispatch) => {
dispatch(showLoadingIndication()) dispatch(showLoadingIndication())
return new Promise((resolve, reject) => {
background.checkHardwareStatus(deviceName, hdPath, (err, unlocked) => {
if (err) {
log.error(err)
dispatch(displayWarning(err.message))
return reject(err)
}
dispatch(hideLoadingIndication()) let unlocked
try {
unlocked = await promisifiedBackground.checkHardwareStatus(deviceName, hdPath)
} catch (error) {
log.error(error)
dispatch(displayWarning(error.message))
throw error
}
forceUpdateMetamaskState(dispatch) dispatch(hideLoadingIndication())
return resolve(unlocked) forceUpdateMetamaskState(dispatch)
}) return unlocked
})
} }
} }
export function forgetDevice (deviceName) { export function forgetDevice (deviceName) {
log.debug(`background.forgetDevice`, deviceName) log.debug(`background.forgetDevice`, deviceName)
return (dispatch) => { return async (dispatch) => {
dispatch(showLoadingIndication()) dispatch(showLoadingIndication())
return new Promise((resolve, reject) => { try {
background.forgetDevice(deviceName, (err) => { await promisifiedBackground.forgetDevice(deviceName)
if (err) { } catch (error) {
log.error(err) log.error(error)
dispatch(displayWarning(err.message)) dispatch(displayWarning(error.message))
return reject(err) throw error
} }
dispatch(hideLoadingIndication())
forceUpdateMetamaskState(dispatch) dispatch(hideLoadingIndication())
return resolve() forceUpdateMetamaskState(dispatch)
})
})
} }
} }
export function connectHardware (deviceName, page, hdPath) { export function connectHardware (deviceName, page, hdPath) {
log.debug(`background.connectHardware`, deviceName, page, hdPath) log.debug(`background.connectHardware`, deviceName, page, hdPath)
return (dispatch) => { return async (dispatch) => {
dispatch(showLoadingIndication()) dispatch(showLoadingIndication())
return new Promise((resolve, reject) => {
background.connectHardware(deviceName, page, hdPath, (err, accounts) => {
if (err) {
log.error(err)
dispatch(displayWarning(err.message))
return reject(err)
}
dispatch(hideLoadingIndication()) let accounts
try {
accounts = await promisifiedBackground.connectHardware(deviceName, page, hdPath)
} catch (error) {
log.error(error)
dispatch(displayWarning(error.message))
throw error
}
dispatch(hideLoadingIndication())
forceUpdateMetamaskState(dispatch)
forceUpdateMetamaskState(dispatch) return accounts
return resolve(accounts)
})
})
} }
} }

Loading…
Cancel
Save