1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Assure that seed words are placed into state tree upon request.

This commit is contained in:
Kevin Serrano 2017-03-28 11:23:25 -04:00
parent 903d3aeb7a
commit a95d96d507
No known key found for this signature in database
GPG Key ID: BF999DEFC7371BA1
4 changed files with 6 additions and 33 deletions

View File

@ -386,7 +386,7 @@ module.exports = class MetamaskController extends EventEmitter {
.then((serialized) => {
const seedWords = serialized.mnemonic
this.configManager.setSeedWords(seedWords)
cb()
cb(null, seedWords)
})
}

View File

@ -273,8 +273,10 @@ function requestRevealSeed (password) {
return dispatch(actions.displayWarning(err.message))
}
log.debug(`background.placeSeedWords`)
background.placeSeedWords((err) => {
background.placeSeedWords((err, result) => {
if (err) return dispatch(actions.displayWarning(err.message))
dispatch(actions.hideLoadingIndication())
dispatch(actions.showNewVaultSeed(result))
})
})
}

View File

@ -18,11 +18,8 @@ function mapStateToProps (state) {
}
}
RevealSeedConfirmation.prototype.confirmationPhrase = 'I understand'
RevealSeedConfirmation.prototype.render = function () {
const props = this.props
const state = this.state
return (
@ -64,31 +61,13 @@ RevealSeedConfirmation.prototype.render = function () {
},
}),
h(`h4${state && state.confirmationWrong ? '.error' : ''}`, {
style: {
marginTop: '12px',
},
}, `Enter the phrase "${this.confirmationPhrase}" to proceed.`),
// confirm confirmation
h('input.large-input.letter-spacey', {
type: 'text',
id: 'confirm-box',
placeholder: this.confirmationPhrase,
onKeyPress: this.checkConfirmation.bind(this),
style: {
width: 260,
marginTop: 16,
},
}),
h('.flex-row.flex-space-between', {
style: {
marginTop: 30,
width: '50%',
},
}, [
// cancel
// cancel
h('button.primary', {
onClick: this.goHome.bind(this),
}, 'CANCEL'),
@ -134,15 +113,6 @@ RevealSeedConfirmation.prototype.checkConfirmation = function (event) {
}
RevealSeedConfirmation.prototype.revealSeedWords = function () {
this.setState({ confirmationWrong: false })
const confirmBox = document.getElementById('confirm-box')
const confirmation = confirmBox.value
if (confirmation !== this.confirmationPhrase) {
confirmBox.value = ''
return this.setState({ confirmationWrong: true })
}
var password = document.getElementById('password-box').value
this.props.dispatch(actions.requestRevealSeed(password))
}

View File

@ -94,6 +94,7 @@ function reduceMetamask (state, action) {
return extend(metamaskState, {
isUnlocked: true,
isInitialized: false,
seedWords: action.value,
})
case actions.CLEAR_SEED_WORD_CACHE: