You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.1 KiB
81 lines
2.1 KiB
const inherits = require('util').inherits
|
|
const Component = require('react').Component
|
|
const h = require('react-hyperscript')
|
|
const connect = require('react-redux').connect
|
|
const actions = require('../../actions')
|
|
|
|
module.exports = connect(mapStateToProps, mapDispatchToProps)(PrivateKeyImportView)
|
|
|
|
function mapStateToProps (state) {
|
|
return {
|
|
error: state.appState.warning,
|
|
}
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
goHome: () => dispatch(actions.goHome()),
|
|
importNewAccount: (strategy, [ privateKey ]) => {
|
|
dispatch(actions.importNewAccount(strategy, [ privateKey ]))
|
|
},
|
|
displayWarning: () => dispatch(actions.displayWarning(null)),
|
|
}
|
|
}
|
|
|
|
inherits(PrivateKeyImportView, Component)
|
|
function PrivateKeyImportView () {
|
|
Component.call(this)
|
|
}
|
|
|
|
PrivateKeyImportView.prototype.render = function () {
|
|
const { error, goHome } = this.props
|
|
|
|
return (
|
|
h('div.new-account-import-form__private-key', [
|
|
|
|
h('div.new-account-import-form__private-key-password-container', [
|
|
|
|
h('span.new-account-import-form__instruction', 'Paste your private key string here:'),
|
|
|
|
h('input.new-account-import-form__input-password', {
|
|
type: 'password',
|
|
id: 'private-key-box',
|
|
onKeyPress: () => this.createKeyringOnEnter(),
|
|
}),
|
|
|
|
]),
|
|
|
|
h('div.new-account-import-form__buttons', {}, [
|
|
|
|
h('button.new-account-create-form__button-cancel', {
|
|
onClick: () => goHome(),
|
|
}, [
|
|
'CANCEL',
|
|
]),
|
|
|
|
h('button.new-account-create-form__button-create', {
|
|
onClick: () => this.createNewKeychain(),
|
|
}, [
|
|
'IMPORT',
|
|
]),
|
|
|
|
]),
|
|
|
|
error ? h('span.error', error) : null,
|
|
])
|
|
)
|
|
}
|
|
|
|
PrivateKeyImportView.prototype.createKeyringOnEnter = function (event) {
|
|
if (event.key === 'Enter') {
|
|
event.preventDefault()
|
|
this.createNewKeychain()
|
|
}
|
|
}
|
|
|
|
PrivateKeyImportView.prototype.createNewKeychain = function () {
|
|
const input = document.getElementById('private-key-box')
|
|
const privateKey = input.value
|
|
|
|
this.props.importNewAccount('Private Key', [ privateKey ])
|
|
}
|
|
|