1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 04:13:27 +02:00
metamask-extension/ui/app/pages/create-account/import-account/private-key.js

157 lines
4.5 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react'
import { withRouter } from 'react-router-dom'
2020-02-24 23:58:26 +01:00
import { compose } from 'redux'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import * as actions from '../../../store/actions'
2020-05-02 21:41:17 +02:00
import { getMetaMaskAccounts } from '../../../selectors'
import Button from '../../../components/ui/button'
import { getMostRecentOverviewPage } from '../../../ducks/history/history'
class PrivateKeyImportView extends Component {
static contextTypes = {
t: PropTypes.func,
metricsEvent: PropTypes.func,
}
static propTypes = {
importNewAccount: PropTypes.func.isRequired,
history: PropTypes.object.isRequired,
displayWarning: PropTypes.func.isRequired,
setSelectedAddress: PropTypes.func.isRequired,
firstAddress: PropTypes.string.isRequired,
error: PropTypes.node,
mostRecentOverviewPage: PropTypes.string.isRequired,
}
inputRef = React.createRef()
state = { isEmpty: true }
2020-11-03 00:41:28 +01:00
createNewKeychain() {
const privateKey = this.inputRef.current.value
2020-11-03 00:41:28 +01:00
const {
importNewAccount,
history,
displayWarning,
mostRecentOverviewPage,
setSelectedAddress,
firstAddress,
} = this.props
importNewAccount('Private Key', [privateKey])
.then(({ selectedAddress }) => {
if (selectedAddress) {
this.context.metricsEvent({
eventOpts: {
category: 'Accounts',
action: 'Import Account',
name: 'Imported Account with Private Key',
},
})
history.push(mostRecentOverviewPage)
displayWarning(null)
} else {
displayWarning('Error importing account.')
this.context.metricsEvent({
eventOpts: {
category: 'Accounts',
action: 'Import Account',
name: 'Error importing with Private Key',
},
})
setSelectedAddress(firstAddress)
}
})
2020-02-15 21:34:12 +01:00
.catch((err) => err && displayWarning(err.message || err))
}
createKeyringOnEnter = (event) => {
if (event.key === 'Enter') {
event.preventDefault()
this.createNewKeychain()
}
}
2020-11-03 00:41:28 +01:00
checkInputEmpty() {
const privateKey = this.inputRef.current.value
let isEmpty = true
if (privateKey !== '') {
isEmpty = false
}
this.setState({ isEmpty })
}
2020-11-03 00:41:28 +01:00
render() {
const { error, displayWarning } = this.props
return (
<div className="new-account-import-form__private-key">
<span className="new-account-create-form__instruction">
{this.context.t('pastePrivateKey')}
</span>
<div className="new-account-import-form__private-key-password-container">
<input
className="new-account-import-form__input-password"
type="password"
id="private-key-box"
2020-02-15 21:34:12 +01:00
onKeyPress={(e) => this.createKeyringOnEnter(e)}
onChange={() => this.checkInputEmpty()}
ref={this.inputRef}
autoFocus
/>
</div>
<div className="new-account-import-form__buttons">
<Button
type="default"
large
className="new-account-create-form__button"
onClick={() => {
const { history, mostRecentOverviewPage } = this.props
displayWarning(null)
history.push(mostRecentOverviewPage)
}}
>
{this.context.t('cancel')}
</Button>
<Button
type="secondary"
large
className="new-account-create-form__button"
onClick={() => this.createNewKeychain()}
disabled={this.state.isEmpty}
>
{this.context.t('import')}
</Button>
</div>
2020-11-03 00:41:28 +01:00
{error ? <span className="error">{error}</span> : null}
</div>
)
}
}
export default compose(
withRouter,
connect(mapStateToProps, mapDispatchToProps),
)(PrivateKeyImportView)
2020-11-03 00:41:28 +01:00
function mapStateToProps(state) {
return {
error: state.appState.warning,
firstAddress: Object.keys(getMetaMaskAccounts(state))[0],
mostRecentOverviewPage: getMostRecentOverviewPage(state),
}
}
2020-11-03 00:41:28 +01:00
function mapDispatchToProps(dispatch) {
return {
importNewAccount: (strategy, [privateKey]) => {
return dispatch(actions.importNewAccount(strategy, [privateKey]))
},
2020-11-03 00:41:28 +01:00
displayWarning: (message) =>
dispatch(actions.displayWarning(message || null)),
setSelectedAddress: (address) =>
dispatch(actions.setSelectedAddress(address)),
}
}