MyCrypto/common/containers/Tabs/GenerateWallet/components/GenerateWalletPasswordCompo...

139 lines
6.7 KiB
React
Raw Normal View History

2017-05-30 20:36:52 +00:00
import React, {Component} from 'react';
import PropTypes from 'prop-types';
import {Field, reduxForm} from 'redux-form';
import GenerateWalletPasswordInputComponent from './GenerateWalletPasswordInputComponent';
import LedgerTrezorWarning from './LedgerTrezorWarning';
2017-05-31 03:34:57 +00:00
import translate from 'translations';
2017-04-25 00:00:58 +00:00
// VALIDATORS
const minLength = min => value => {
return value && value.length < min ? `Must be ${min} characters or more` : undefined
2017-05-31 03:34:57 +00:00
};
const minLength9 = minLength(9);
const required = value => value ? undefined : 'Required';
class GenerateWalletPasswordComponent extends Component {
constructor(props) {
super(props)
}
static propTypes = {
// state
title: PropTypes.string,
body: PropTypes.string,
userId: PropTypes.number,
id: PropTypes.number,
generateWalletPassword: PropTypes.object,
showPassword: PropTypes.bool,
generateWalletFile: PropTypes.bool,
hasDownloadedWalletFile: PropTypes.bool,
canProceedToPaper: PropTypes.bool,
// actions
SHOW_GENERATE_WALLET_PASSWORD_ACTION: PropTypes.func,
GENERATE_WALLET_FILE_ACTION: PropTypes.func,
GENERATE_WALLET_HAS_DOWNLOADED_FILE_ACTION: PropTypes.func,
GENERATE_WALLET_CONTINUE_TO_PAPER_ACTION: PropTypes.func
};
continueToPaper() {
}
downloaded() {
2017-05-31 03:34:57 +00:00
let nextState = this.state;
nextState.hasDownloadedWalletFile = true;
this.setState(nextState)
}
render() {
const {
generateWalletPassword,
showPassword,
generateWalletFile,
hasDownloadedWalletFile,
SHOW_GENERATE_WALLET_PASSWORD_ACTION,
GENERATE_WALLET_FILE_ACTION,
GENERATE_WALLET_HAS_DOWNLOADED_FILE_ACTION,
GENERATE_WALLET_CONTINUE_TO_PAPER_ACTION
} = this.props;
return (
<section className="container" style={{minHeight: '50%'}}>
<div className="tab-content">
<main className="tab-pane active text-center" role="main">
<br/>
{
!generateWalletFile && (
<div>
<section className="row">
<h1 aria-live="polite">{translate('NAV_GenerateWallet')}</h1>
<div className="col-sm-8 col-sm-offset-2">
<h4>{translate('HELP_1_Desc_3')}</h4>
<Field
validate={[required, minLength9]}
component={GenerateWalletPasswordInputComponent}
showPassword={showPassword}
SHOW_GENERATE_WALLET_PASSWORD_ACTION={SHOW_GENERATE_WALLET_PASSWORD_ACTION}
name="password"
type="text"/>
<br/>
<button onClick={() => GENERATE_WALLET_FILE_ACTION()}
disabled={generateWalletPassword ? generateWalletPassword.syncErrors : true}
className="btn btn-primary btn-block">
{translate('NAV_GenerateWallet')}
</button>
</div>
</section>
<LedgerTrezorWarning/>
</div>
2017-04-27 04:02:38 +00:00
)
}
{
generateWalletFile && (
<section role="main" className="row">
<h1>{translate('GEN_Label_2')}</h1>
<br/>
<div className="col-sm-8 col-sm-offset-2">
<div aria-hidden="true" className="account-help-icon"><img
src="https://myetherwallet.com/images/icon-help.svg" className="help-icon"/>
<p className="account-help-text">{translate('x_KeystoreDesc')}</p>
<h4>{translate('x_Keystore2')}</h4>
</div>
<a role="button" className="btn btn-primary btn-block"
href="blob:https://myetherwallet.com/2455ae32-916f-4224-a806-414bbe680168"
download="UTC--2017-04-26T23-07-03.538Z--c5b7fff4e1669e38e8d6bc8fffe7e562b2b70f43"
aria-label="Download Keystore File (UTC / JSON · Recommended · Encrypted)"
aria-describedby="x_KeystoreDesc"
onClick={() => GENERATE_WALLET_HAS_DOWNLOADED_FILE_ACTION()}>{translate('x_Download')}</a>
<p className="sr-only" id="x_KeystoreDesc">{translate('x_KeystoreDesc')}</p>
<br/><br/><br/><br/>
</div>
<div className="col-xs-12 alert alert-danger">
<span>
MyEtherWallet.com is not a web wallet &amp; does not store or transmit this secret information at any time. <br/>
<strong>If you do not save your wallet file and password, we cannot recover them.</strong><br/>
Save your wallet file now &amp; back it up in a second location (not on your computer).
<br/><br/>
2017-04-27 04:02:38 +00:00
<a role="button"
className={`btn btn-info ${hasDownloadedWalletFile ? '' : 'disabled'}`}
onClick={() => GENERATE_WALLET_CONTINUE_TO_PAPER_ACTION()}> I understand. Continue. </a>
</span>
</div>
</section>
)
}
</main>
</div>
</section>
)
}
}
export default reduxForm({
form: 'generateWalletPassword' // a unique name for this form
})(GenerateWalletPasswordComponent);