From 63a5eca967ef5a305bf1823018445c642cad784b Mon Sep 17 00:00:00 2001 From: Chi Kei Chan Date: Tue, 3 Oct 2017 15:08:21 -0700 Subject: Fix import --- .../src/app/first-time/import-account-screen.js | 52 +++++++++++++--------- 1 file changed, 31 insertions(+), 21 deletions(-) (limited to 'mascara/src/app/first-time/import-account-screen.js') diff --git a/mascara/src/app/first-time/import-account-screen.js b/mascara/src/app/first-time/import-account-screen.js index 944d8d544..bf8e209e4 100644 --- a/mascara/src/app/first-time/import-account-screen.js +++ b/mascara/src/app/first-time/import-account-screen.js @@ -1,5 +1,5 @@ import React, {Component, PropTypes} from 'react' -import {connect} from 'react-redux'; +import {connect} from 'react-redux' import classnames from 'classnames' import LoadingScreen from './loading-screen' import {importNewAccount, hideWarning} from '../../../../ui/app/actions' @@ -11,7 +11,7 @@ const Input = ({ label, placeholder, onChange, errorMessage, type = 'text' }) => type={type} placeholder={placeholder} className={classnames('first-time-flow__input import-account__input', { - 'first-time-flow__input--error': errorMessage + 'first-time-flow__input--error': errorMessage, })} onChange={onChange} /> @@ -19,6 +19,14 @@ const Input = ({ label, placeholder, onChange, errorMessage, type = 'text' }) => ) +Input.prototype.propTypes = { + label: PropTypes.string.isRequired, + placeholder: PropTypes.string.isRequired, + type: PropTypes.string.isRequired, + errorMessage: PropTypes.string.isRequired, + onChange: PropTypes.func.isRequired, +} + class ImportAccountScreen extends Component { static OPTIONS = { PRIVATE_KEY: 'private_key', @@ -31,6 +39,7 @@ class ImportAccountScreen extends Component { next: PropTypes.func.isRequired, importNewAccount: PropTypes.func.isRequired, hideWarning: PropTypes.func.isRequired, + isLoading: PropTypes.bool.isRequired, }; state = { @@ -39,9 +48,9 @@ class ImportAccountScreen extends Component { jsonFile: {}, } - isValid() { - const { OPTIONS } = ImportAccountScreen; - const { privateKey, jsonFile, password } = this.state; + isValid () { + const { OPTIONS } = ImportAccountScreen + const { privateKey, jsonFile, password } = this.state switch (this.state.selectedOption) { case OPTIONS.JSON_FILE: @@ -53,9 +62,9 @@ class ImportAccountScreen extends Component { } onClick = () => { - const { OPTIONS } = ImportAccountScreen; - const { importNewAccount, next } = this.props; - const { privateKey, jsonFile, password } = this.state; + const { OPTIONS } = ImportAccountScreen + const { importNewAccount, next } = this.props + const { privateKey, jsonFile, password } = this.state switch (this.state.selectedOption) { case OPTIONS.JSON_FILE: @@ -68,18 +77,18 @@ class ImportAccountScreen extends Component { } } - renderPrivateKey() { + renderPrivateKey () { return Input({ label: 'Add Private Key String', placeholder: 'Enter private key', onChange: e => this.setState({ privateKey: e.target.value }), - errorMessage: this.props.warning && 'Something went wrong. Please make sure your private key is correct.' + errorMessage: this.props.warning && 'Something went wrong. Please make sure your private key is correct.', }) } - renderJsonFile() { - const { jsonFile: { name } } = this.state; - const { warning } = this.props; + renderJsonFile () { + const { jsonFile: { name } } = this.state + const { warning } = this.props return (
@@ -95,7 +104,7 @@ class ImportAccountScreen extends Component {
) } - renderContent() { - const { OPTIONS } = ImportAccountScreen; + renderContent () { + const { OPTIONS } = ImportAccountScreen switch (this.state.selectedOption) { case OPTIONS.JSON_FILE: @@ -129,11 +138,11 @@ class ImportAccountScreen extends Component { } } - render() { - const { OPTIONS } = ImportAccountScreen; - const { selectedOption } = this.state; + render () { + const { OPTIONS } = ImportAccountScreen + const { selectedOption } = this.state - return isLoading + return this.props.isLoading ? : (
@@ -175,6 +184,7 @@ class ImportAccountScreen extends Component { File import not working? -- cgit