import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { withRouter } from 'react-router-dom';
import { compose } from 'redux';
import { connect } from 'react-redux';
import FileInput from 'react-simple-file-input';
import * as actions from '../../../store/actions';
import { getMetaMaskAccounts } from '../../../selectors';
import Button from '../../../components/ui/button';
import { getMostRecentOverviewPage } from '../../../ducks/history/history';
const HELP_LINK =
'https://metamask.zendesk.com/hc/en-us/articles/360015489331-Importing-an-Account';
class JsonImportSubview extends Component {
state = {
fileContents: '',
isEmpty: true,
};
inputRef = React.createRef();
render() {
const { error, history, mostRecentOverviewPage } = this.props;
const enabled = !this.state.isEmpty && this.state.fileContents !== '';
return (
{this.context.t('usedByClients')}
{this.context.t('fileImportFail')}
this.checkInputEmpty()}
ref={this.inputRef}
/>
{error ?
{error} : null}
);
}
onLoad(event) {
this.setState({
fileContents: event.target.result,
});
}
createKeyringOnEnter(event) {
if (event.key === 'Enter') {
event.preventDefault();
this.createNewKeychain();
}
}
createNewKeychain() {
const {
firstAddress,
displayWarning,
history,
importNewJsonAccount,
mostRecentOverviewPage,
setSelectedAddress,
} = this.props;
const { fileContents } = this.state;
const { t } = this.context;
if (!fileContents) {
const message = t('needImportFile');
displayWarning(message);
return;
}
const password = this.inputRef.current.value;
importNewJsonAccount([fileContents, password])
.then(({ selectedAddress }) => {
if (selectedAddress) {
history.push(mostRecentOverviewPage);
this.context.metricsEvent({
eventOpts: {
category: 'Accounts',
action: 'Import Account',
name: 'Imported Account with JSON',
},
});
displayWarning(null);
} else {
displayWarning(t('importAccountError'));
this.context.metricsEvent({
eventOpts: {
category: 'Accounts',
action: 'Import Account',
name: 'Error importing JSON',
},
});
setSelectedAddress(firstAddress);
}
})
.catch((err) => err && displayWarning(err.message || err));
}
checkInputEmpty() {
const password = this.inputRef.current.value;
let isEmpty = true;
if (password !== '') {
isEmpty = false;
}
this.setState({ isEmpty });
}
}
JsonImportSubview.propTypes = {
error: PropTypes.string,
displayWarning: PropTypes.func,
firstAddress: PropTypes.string,
importNewJsonAccount: PropTypes.func,
history: PropTypes.object,
setSelectedAddress: PropTypes.func,
mostRecentOverviewPage: PropTypes.string.isRequired,
};
const mapStateToProps = (state) => {
return {
error: state.appState.warning,
firstAddress: Object.keys(getMetaMaskAccounts(state))[0],
mostRecentOverviewPage: getMostRecentOverviewPage(state),
};
};
const mapDispatchToProps = (dispatch) => {
return {
displayWarning: (warning) => dispatch(actions.displayWarning(warning)),
importNewJsonAccount: (options) =>
dispatch(actions.importNewAccount('JSON File', options)),
setSelectedAddress: (address) =>
dispatch(actions.setSelectedAddress(address)),
};
};
JsonImportSubview.contextTypes = {
t: PropTypes.func,
metricsEvent: PropTypes.func,
};
export default compose(
withRouter,
connect(mapStateToProps, mapDispatchToProps),
)(JsonImportSubview);