Adjust private key confirmation style and logic.

This commit is contained in:
Kevin Serrano 2017-03-21 08:53:34 -07:00
parent a7b7be8309
commit 0e43606b16
3 changed files with 75 additions and 46 deletions

View File

@ -698,7 +698,7 @@ function setRpcTarget (newRpc) {
} }
} }
// Calls the addressBookController to add a new address. // Calls the addressBookController to add a new address.
function addToAddressBook (recipient, nickname) { function addToAddressBook (recipient, nickname) {
log.debug(`background.addToAddressBook`) log.debug(`background.addToAddressBook`)
return (dispatch) => { return (dispatch) => {
@ -772,22 +772,30 @@ function requestExportAccount () {
} }
} }
function exportAccount (address) { function exportAccount (password, address) {
var self = this var self = this
return function (dispatch) { return function (dispatch) {
dispatch(self.showLoadingIndication()) dispatch(self.showLoadingIndication())
log.debug(`background.exportAccount`) log.debug(`background.submitPassword`)
background.exportAccount(address, function (err, result) { background.submitPassword(password, function (err) {
dispatch(self.hideLoadingIndication())
if (err) { if (err) {
log.error(err) log.error('Error in submiting password.')
return dispatch(self.displayWarning('Had a problem exporting the account.')) dispatch(self.hideLoadingIndication())
return dispatch(self.displayWarning('Incorrect Password.'))
} }
log.debug(`background.exportAccount`)
background.exportAccount(address, function (err, result) {
dispatch(self.hideLoadingIndication())
dispatch(self.showPrivateKey(result)) if (err) {
log.error(err)
return dispatch(self.displayWarning('Had a problem exporting the account.'))
}
dispatch(self.showPrivateKey(result))
})
}) })
} }
} }

View File

@ -4,14 +4,21 @@ const inherits = require('util').inherits
const copyToClipboard = require('copy-to-clipboard') const copyToClipboard = require('copy-to-clipboard')
const actions = require('../actions') const actions = require('../actions')
const ethUtil = require('ethereumjs-util') const ethUtil = require('ethereumjs-util')
const connect = require('react-redux').connect
module.exports = ExportAccountView module.exports = connect(mapStateToProps)(ExportAccountView)
inherits(ExportAccountView, Component) inherits(ExportAccountView, Component)
function ExportAccountView () { function ExportAccountView () {
Component.call(this) Component.call(this)
} }
function mapStateToProps (state) {
return {
warning: state.appState.warning,
}
}
ExportAccountView.prototype.render = function () { ExportAccountView.prototype.render = function () {
console.log('EXPORT VIEW') console.log('EXPORT VIEW')
console.dir(this.props) console.dir(this.props)
@ -28,35 +35,57 @@ ExportAccountView.prototype.render = function () {
if (notExporting) return h('div') if (notExporting) return h('div')
if (exportRequested) { if (exportRequested) {
var warning = `Exporting your private key is very dangerous, var warning = `Export private keys at your own risk.`
and you should only do it if you know what you're doing.`
var confirmation = `If you're absolutely sure, type "I understand" below and
submit.`
return ( return (
h('div', { h('div', {
key: 'exporting',
style: { style: {
margin: '0 20px', display: 'inline-block',
textAlign: 'center',
}, },
}, [ },
h('p.error', warning), [
h('p', confirmation), h('div', {
h('input#exportAccount.sizing-input', { key: 'exporting',
onKeyPress: this.onExportKeyPress.bind(this), style: {
style: { margin: '0 20px',
position: 'relative', },
top: '1.5px', }, [
h('p.error', warning),
h('input#exportAccount.sizing-input', {
placeholder: 'confirm password',
onKeyPress: this.onExportKeyPress.bind(this),
style: {
position: 'relative',
top: '1.5px',
marginBottom: '7px',
},
}),
]),
h('div', {
key: 'buttons',
style: {
margin: '0 20px',
},
}, },
}), [
h('button', { h('button', {
onClick: () => this.onExportKeyPress({ key: 'Enter', preventDefault: () => {} }), onClick: () => this.onExportKeyPress({ key: 'Enter', preventDefault: () => {} }),
}, 'Submit'), style: {
h('button', { marginRight: '10px',
onClick: () => this.props.dispatch(actions.backToAccountDetail(this.props.address)), },
}, 'Cancel'), }, 'Submit'),
]) h('button', {
onClick: () => this.props.dispatch(actions.backToAccountDetail(this.props.address)),
}, 'Cancel'),
]),
(this.props.warning) && (
h('span.error', {
style: {
margin: '20px',
},
}, this.props.warning.split('-'))
),
])
) )
} }
@ -89,15 +118,6 @@ ExportAccountView.prototype.onExportKeyPress = function (event) {
if (event.key !== 'Enter') return if (event.key !== 'Enter') return
event.preventDefault() event.preventDefault()
var input = document.getElementById('exportAccount') var input = document.getElementById('exportAccount').value
if (input.value === 'I understand') { this.props.dispatch(actions.exportAccount(input, this.props.address))
this.props.dispatch(actions.exportAccount(this.props.address))
} else {
input.value = ''
input.placeholder = 'Please retype "I understand" exactly.'
}
}
ExportAccountView.prototype.exportAccount = function (address) {
this.props.dispatch(actions.exportAccount(address))
} }

View File

@ -266,8 +266,9 @@ app sections
} }
.sizing-input{ .sizing-input{
font-size: 1em; font-size: 14px;
height: 30px; height: 30px;
padding-left: 5px;
} }
.editable-label{ .editable-label{
display: flex; display: flex;