William O'Beirne de7d4fbaa2 v3 Style Import (#151)
* Convert bootstrap to sass instead of checked in and less

* Darken body, adjust header.

* First pass at tab styles, each tab will need a lot of individual love tho.

* Update footer to main site content, improve responsiveness.

* Missing key added.

* Fix dropdowns.

* Convert GenerateWallet HTML over, still needs styling.

* Send form.

* Current rates styled.

* CurrencySwap form styles.

* SwapInfoHeader styled.

* Finish up swap restyling, minor usability improvements for mobile.

* Fix up notifications / alert customizations

* Import v3 variables.

* Fix notification spacing.

* Align input height base with buttons.

* Revert height base, add additional bootstrap overrides.

* Grid overrides.

* Move overrides to their own folder. Adjust naming.

* Fix inconsistencies.

* Style generate wallet pt 1.

* Style generate wallet pt 2

* Style generate wallet pt 3

* Fix swap

* Added some missing overries, fixed the fallout.

* Remove header text, indicate alpha version.

* Fix radio / checkbox weights.

* Bind => arrow

* Convert simpledropdown to proper form select, instead of weirdly implemented nonfuncitoning dropdown.

* Fix token balances buttons, footr icons.
2017-09-05 14:52:01 -05:00

178 lines
4.4 KiB
JavaScript

// @flow
import './DownloadWallet.scss';
import React, { Component } from 'react';
import translate from 'translations';
import type PrivKeyWallet from 'libs/wallet/privkey';
import { makeBlob } from 'utils/blob';
import { getV3Filename } from 'libs/keystore';
import type { UtcKeystore } from 'libs/keystore';
import Template from './Template';
type Props = {
wallet: PrivKeyWallet,
password: string,
continueToPaper: Function
};
type State = {
hasDownloadedWallet: boolean,
address: string,
keystore: UtcKeystore | null
};
export default class DownloadWallet extends Component {
props: Props;
state: State = {
hasDownloadedWallet: false,
address: '',
keystore: null
};
componentDidMount() {
this.props.wallet.getAddress().then(addr => {
this.setState({ address: addr });
});
}
componentWillMount() {
this.props.wallet.toKeystore(this.props.password).then(utcKeystore => {
this.setState({ keystore: utcKeystore });
});
}
componentWillUpdate(nextProps: Props) {
if (this.props.wallet !== nextProps.wallet) {
nextProps.wallet.toKeystore(nextProps.password).then(utcKeystore => {
this.setState({ keystore: utcKeystore });
});
}
}
_markDownloaded = () => {
if (this.state.keystore) {
this.setState({ hasDownloadedWallet: true });
}
};
_handleContinue = () => {
if (this.state.hasDownloadedWallet) {
this.props.continueToPaper();
}
};
render() {
const { hasDownloadedWallet } = this.state;
const filename = this.getFilename();
const content = (
<div className="DlWallet">
<h1 className="DlWallet-title">
{translate('GEN_Label_2')}
</h1>
<a
role="button"
className="DlWallet-download btn btn-primary btn-lg"
aria-label="Download Keystore File (UTC / JSON · Recommended · Encrypted)"
aria-describedby="x_KeystoreDesc"
disabled={!this.state.keystore}
download={filename}
href={this.getBlob()}
onClick={this._markDownloaded}
>
{translate('x_Download')} {translate('x_Keystore2')}
</a>
<div className="DlWallet-warning">
<p>
<strong>Do not lose it!</strong> It cannot be recovered if you lose
it.
</p>
<p>
<strong>Do not share it!</strong> Your funds will be stolen if you
use this file on a malicious/phishing site.
</p>
<p>
<strong>Make a backup!</strong> Secure it like the millions of
dollars it may one day be worth.
</p>
</div>
<button
className="DlWallet-continue btn btn-danger"
role="button"
onClick={this._handleContinue}
disabled={!hasDownloadedWallet}
>
I understand. Continue.
</button>
</div>
);
const help = (
<div>
<h4>
{translate('GEN_Help_8')}
</h4>
<ul>
<li>
{translate('GEN_Help_9')}
</li>
<li>
{' '}{translate('GEN_Help_10')}
</li>
<input value={filename} className="form-control input-sm" disabled />
</ul>
<h4>
{translate('GEN_Help_11')}
</h4>
<ul>
<li>
{translate('GEN_Help_12')}
</li>
</ul>
<h4>
{translate('GEN_Help_4')}
</h4>
<ul>
<li>
<a
href="https://myetherwallet.groovehq.com/knowledge_base/topics/how-do-i-save-slash-backup-my-wallet"
target="_blank"
rel="noopener"
>
<strong>
{translate('GEN_Help_13')}
</strong>
</a>
</li>
<li>
<a
href="https://myetherwallet.groovehq.com/knowledge_base/topics/what-are-the-different-formats-of-a-private-key"
target="_blank"
rel="noopener"
>
<strong>
{translate('GEN_Help_14')}
</strong>
</a>
</li>
</ul>
</div>
);
return <Template content={content} help={help} />;
}
getBlob() {
if (this.state.keystore) {
return makeBlob('text/json;charset=UTF-8', this.state.keystore);
}
}
getFilename() {
return getV3Filename(this.state.address);
}
}