2017-04-27 04:02:38 +00:00
|
|
|
import React, {Component} from "react";
|
|
|
|
import PropTypes from "prop-types";
|
2017-04-14 01:27:28 +00:00
|
|
|
|
2017-04-27 04:02:38 +00:00
|
|
|
import {Field, reduxForm} from "redux-form";
|
|
|
|
import GenerateWalletPasswordInputComponent from "./GenerateWalletPasswordInputComponent";
|
2017-04-18 23:01:25 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
const minLength9 = minLength(9)
|
2017-04-18 23:01:25 +00:00
|
|
|
const required = value => value ? undefined : 'Required'
|
|
|
|
|
|
|
|
|
|
|
|
class GenerateWalletPasswordComponent extends Component {
|
2017-04-14 01:27:28 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props)
|
2017-04-27 03:16:01 +00:00
|
|
|
this.state = {
|
|
|
|
hasDownloaded: false
|
|
|
|
}
|
2017-04-14 01:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static propTypes = {
|
2017-04-14 06:26:25 +00:00
|
|
|
title: PropTypes.string,
|
|
|
|
body: PropTypes.string,
|
|
|
|
userId: PropTypes.number,
|
2017-04-18 23:01:25 +00:00
|
|
|
id: PropTypes.number,
|
|
|
|
generateWalletPassword: PropTypes.object,
|
|
|
|
showPassword: PropTypes.bool,
|
|
|
|
showGenerateWalletPasswordAction: PropTypes.func,
|
|
|
|
generateWalletFileAction: PropTypes.func,
|
|
|
|
generateWalletFile: PropTypes.bool
|
2017-04-14 01:27:28 +00:00
|
|
|
};
|
|
|
|
|
2017-04-27 03:16:01 +00:00
|
|
|
|
|
|
|
continueToPaper() {
|
|
|
|
}
|
|
|
|
|
|
|
|
downloaded() {
|
|
|
|
let nextState = this.state
|
|
|
|
nextState.hasDownloaded = true
|
|
|
|
this.setState(nextState)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-14 01:27:28 +00:00
|
|
|
render() {
|
2017-04-18 23:01:25 +00:00
|
|
|
const {
|
|
|
|
// handleSubmit,
|
|
|
|
// pristine,
|
|
|
|
// reset,
|
|
|
|
// submitting,
|
|
|
|
generateWalletPassword,
|
|
|
|
showPassword,
|
|
|
|
showGenerateWalletPasswordAction,
|
|
|
|
generateWalletFileAction,
|
|
|
|
generateWalletFile
|
|
|
|
|
|
|
|
} = this.props;
|
|
|
|
|
2017-04-14 01:27:28 +00:00
|
|
|
return (
|
|
|
|
<section className="container" style={{minHeight: '50%'}}>
|
|
|
|
<div className="tab-content">
|
|
|
|
<main className="tab-pane active text-center" role="main">
|
2017-04-27 03:16:01 +00:00
|
|
|
<br/>
|
|
|
|
{
|
|
|
|
!generateWalletFile && (<section className="row">
|
2017-04-27 04:02:38 +00:00
|
|
|
<h1 aria-live="polite">Generate Wallet</h1>
|
|
|
|
<div className="col-sm-8 col-sm-offset-2">
|
|
|
|
<h4>Enter a strong password (at least 9 characters)</h4>
|
|
|
|
<Field
|
|
|
|
validate={[required, minLength9]}
|
|
|
|
component={GenerateWalletPasswordInputComponent}
|
|
|
|
showPassword={showPassword}
|
|
|
|
showGenerateWalletPasswordAction={showGenerateWalletPasswordAction}
|
|
|
|
name="password"
|
|
|
|
type="text"/>
|
|
|
|
<br/>
|
|
|
|
<button onClick={() => generateWalletFileAction()}
|
|
|
|
disabled={generateWalletPassword ? generateWalletPassword.syncErrors : true}
|
|
|
|
className="btn btn-primary btn-block">
|
|
|
|
Generate Wallet
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
)
|
2017-04-27 03:16:01 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
generateWalletFile && (
|
|
|
|
<section role="main" className="row">
|
|
|
|
<h1>Save your Wallet File. Don't forget your password.</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">This Keystore file matches the
|
|
|
|
format used by Mist so you can easily import it in the future. It is the
|
|
|
|
recommended file to download and back up.</p>
|
|
|
|
<h4>Keystore File (UTC / JSON)</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={() => this.downloaded()}>Download</a>
|
|
|
|
<p className="sr-only" id="x_KeystoreDesc">This Keystore file matches
|
|
|
|
the format used by Mist so you can easily import it in the future. It is the
|
|
|
|
recommended file to download and back up.</p>
|
|
|
|
<br/><br/><br/><br/>
|
|
|
|
</div>
|
|
|
|
<div className="col-xs-12 alert alert-danger">
|
|
|
|
<span>
|
|
|
|
MyEtherWallet.com is not a web wallet & 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 & 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 ${this.state.hasDownloaded ? '' : 'disabled'}`}
|
2017-04-27 03:16:01 +00:00
|
|
|
onClick={() => this.continueToPaper()}> I understand. Continue. </a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
)
|
|
|
|
}
|
2017-04-14 01:27:28 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2017-04-18 23:01:25 +00:00
|
|
|
|
|
|
|
export default reduxForm({
|
|
|
|
form: 'generateWalletPassword' // a unique name for this form
|
2017-04-27 03:16:01 +00:00
|
|
|
})(GenerateWalletPasswordComponent);
|