1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/components/pages/create-account/import-account/json.js

138 lines
3.4 KiB
JavaScript
Raw Normal View History

2016-11-04 23:08:50 +01:00
const Component = require('react').Component
const PropTypes = require('prop-types')
2016-11-04 23:08:50 +01:00
const h = require('react-hyperscript')
const { withRouter } = require('react-router-dom')
const { compose } = require('recompose')
const { connect } = require('react-redux')
const actions = require('../../../../actions')
const FileInput = require('react-simple-file-input').default
const t = require('../../../i18n')
const { DEFAULT_ROUTE } = require('../../../../routes')
2017-10-25 09:38:20 +02:00
const HELP_LINK = 'https://support.metamask.io/kb/article/7-importing-accounts'
2017-06-14 19:13:07 +02:00
class JsonImportSubview extends Component {
constructor (props) {
super(props)
2016-11-04 23:08:50 +01:00
this.state = {
file: null,
fileContents: '',
}
}
2016-11-04 23:08:50 +01:00
render () {
const { error } = this.props
return (
h('div.new-account-import-form__json', [
2018-03-12 16:07:12 +01:00
h('p', t('usedByClients')),
h('a.warning', {
href: HELP_LINK,
target: '_blank',
2018-03-12 16:07:12 +01:00
}, t('fileImportFail')),
h(FileInput, {
readAs: 'text',
onLoad: this.onLoad.bind(this),
style: {
margin: '20px 0px 12px 34%',
fontSize: '15px',
display: 'flex',
justifyContent: 'center',
},
}),
h('input.new-account-import-form__input-password', {
type: 'password',
2018-03-12 16:07:12 +01:00
placeholder: t('enterPassword'),
id: 'json-password-box',
onKeyPress: this.createKeyringOnEnter.bind(this),
}),
h('div.new-account-create-form__buttons', {}, [
2018-03-26 07:19:42 +02:00
h('button.btn-secondary.new-account-create-form__button', {
2018-03-27 09:20:35 +02:00
onClick: () => this.props.history.push(DEFAULT_ROUTE),
}, [
2018-03-12 16:07:12 +01:00
t('cancel'),
]),
2018-03-26 07:19:42 +02:00
h('button.btn-primary.new-account-create-form__button', {
onClick: () => this.createNewKeychain(),
}, [
2018-03-12 16:07:12 +01:00
t('import'),
]),
2016-11-04 23:08:50 +01:00
]),
error ? h('span.error', error) : null,
])
)
}
onLoad (event, file) {
this.setState({file: file, fileContents: event.target.result})
}
createKeyringOnEnter (event) {
if (event.key === 'Enter') {
event.preventDefault()
this.createNewKeychain()
}
}
2016-11-04 23:08:50 +01:00
createNewKeychain () {
const state = this.state
if (!state) {
2018-03-20 17:49:12 +01:00
const message = t('validFileImport')
return this.props.displayWarning(message)
}
const { fileContents } = state
if (!fileContents) {
2018-03-12 16:07:12 +01:00
const message = t('needImportFile')
return this.props.displayWarning(message)
}
const passwordInput = document.getElementById('json-password-box')
const password = passwordInput.value
if (!password) {
2018-03-12 16:07:12 +01:00
const message = t('needImportPassword')
return this.props.displayWarning(message)
}
2018-03-20 17:49:12 +01:00
this.props.importNewJsonAccount([ fileContents, password ])
}
}
JsonImportSubview.propTypes = {
error: PropTypes.string,
goHome: PropTypes.func,
displayWarning: PropTypes.func,
importNewJsonAccount: PropTypes.func,
2018-03-27 09:20:35 +02:00
history: PropTypes.object,
}
const mapStateToProps = state => {
return {
error: state.appState.warning,
}
}
const mapDispatchToProps = dispatch => {
return {
goHome: () => dispatch(actions.goHome()),
displayWarning: warning => dispatch(actions.displayWarning(warning)),
importNewJsonAccount: options => dispatch(actions.importNewAccount('JSON File', options)),
}
}
2018-03-27 09:20:35 +02:00
module.exports = compose(
withRouter,
connect(mapStateToProps, mapDispatchToProps)
)(JsonImportSubview)