Skip to content

Commit

Permalink
Merge branch 'develop' into babel-minify
Browse files Browse the repository at this point in the history
  • Loading branch information
dternyak authored Oct 9, 2017
2 parents ccbbcaf + aac0176 commit f719aee
Show file tree
Hide file tree
Showing 21 changed files with 1,621 additions and 76 deletions.
26 changes: 22 additions & 4 deletions common/components/Footer/index.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "common/sass/variables";
@import 'common/sass/variables';

// footer
.Footer {
Expand Down Expand Up @@ -40,6 +40,20 @@
max-width: 28rem;
}

&-modal-button {
color: #4ac8ed;
background-color: rgba(0, 0, 0, 0);
border: none;
text-align: left;
padding: 0;
margin: 0;
font-weight: 300;
transition: 500ms all ease-in-out;
&:hover {
color: #0e97c0;
}
}

p {
margin: $space-xs 0 $space-sm;
}
Expand All @@ -57,7 +71,7 @@
margin: $font-size-small 0 0;

i {
margin-right: .25em;
margin-right: 0.25em;

@media (min-width: $screen-sm-min) {
margin-left: -1.5em;
Expand All @@ -79,8 +93,12 @@

@media screen and (max-width: $grid-float-breakpoint) {
.row {
margin-left: -.5rem;
margin-right: -.5rem;
margin-left: -0.5rem;
margin-right: -0.5rem;
}
}
}

.Modal {
color: #000;
}
111 changes: 100 additions & 11 deletions common/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React, { Component } from 'react';
import translate from 'translations';
import './index.scss';
import PreFooter from './PreFooter';
import Modal, { IButton } from 'components/ui/Modal';

const LINKS_LEFT = [
{
Expand Down Expand Up @@ -91,8 +92,28 @@ const LINKS_SOCIAL = [
}
];

export default class Footer extends Component {
interface ComponentState {
isOpen: boolean;
}

export default class Footer extends React.Component<{}, ComponentState> {
constructor(props) {
super(props);
this.state = { isOpen: false };
}

public openModal = () => {
this.setState({ isOpen: true });
};

public closeModal = () => {
this.setState({ isOpen: false });
};

public render() {
const buttons: IButton[] = [
{ text: 'Okay', type: 'default', onClick: this.closeModal }
];
return (
<div>
<PreFooter />
Expand All @@ -110,12 +131,8 @@ export default class Footer extends Component {
</a>
</p>
<p className="Footer-about-text">
<span>
{translate('FOOTER_1')}
</span>
<span>
{translate('FOOTER_1b')}
</span>
<span>{translate('FOOTER_1')}</span>
<span>{translate('FOOTER_1b')}</span>
</p>

{LINKS_LEFT.map(link => {
Expand All @@ -128,6 +145,78 @@ export default class Footer extends Component {
);
})}

<button className="Footer-modal-button" onClick={this.openModal}>
Disclaimer
</button>
<Modal
isOpen={this.state.isOpen}
title="Disclaimer"
buttons={buttons}
handleClose={this.closeModal}
>
<p>
<b>Be safe & secure: </b>
<a href="https://myetherwallet.groovehq.com/knowledge_base/topics/protecting-yourself-and-your-funds">
We highly recommend that you read our guide on How to Prevent
Loss & Theft for some recommendations on how to be proactive
about your security.
</a>
</p>
<p>
<b>Always backup your keys: </b>
MyEtherWallet.com & MyEtherWallet CX are not "web wallets". You
do not create an account or give us your funds to hold onto. No
data leaves your computer / your browser. We make it easy for
you to create, save, and access your information and interact
with the blockchain.
</p>
<p>
<b>We are not responsible for any loss: </b>
Ethereum, MyEtherWallet.com & MyEtherWallet CX, and some of the
underlying Javascript libraries we use are under active
development. While we have thoroughly tested & tens of thousands
of wallets have been successfully created by people all over the
globe, there is always the possibility something unexpected
happens that causes your funds to be lost. Please do not invest
more than you are willing to lose, and please be careful.
</p>
<p>
<b>Translations of MyEtherWallet: </b>
The community has done an amazing job translating MyEtherWallet
into a variety of languages. However, MyEtherWallet can only
verify the validity and accuracy of the information provided in
English and, because of this, the English version of our website
is the official text.
</p>
<p>
<b>MIT License</b> Copyright © 2015-2017 MyEtherWallet LLC
</p>
<p>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
</p>
<p>
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
</p>
<b>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
</b>
</Modal>

<p>&copy; 2017 MyEtherWallet, LLC</p>
</div>

Expand Down Expand Up @@ -155,12 +244,12 @@ export default class Footer extends Component {
</h5>
<ul>
<li>
{' '}ETH:{' '}
<span className="mono wrap">{donationAddressMap.ETH}</span>
{' '}
ETH: <span className="mono wrap">{donationAddressMap.ETH}</span>
</li>
<li>
{' '}BTC:{' '}
<span className="mono wrap">{donationAddressMap.BTC}</span>
{' '}
BTC: <span className="mono wrap">{donationAddressMap.BTC}</span>
</li>
</ul>
</div>
Expand Down
26 changes: 26 additions & 0 deletions common/components/WalletDecrypt/LedgerNano.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.LedgerDecrypt {
text-align: center;
padding-top: 30px;

&-decrypt {
width: 100%;
}

&-help {
margin-top: 10px;
font-size: 13px;
}

&-error {
opacity: 0;
transition: none;

&.is-showing {
opacity: 1;
}
}

&-buy {
margin-top: 10px;
}
}
151 changes: 136 additions & 15 deletions common/components/WalletDecrypt/LedgerNano.tsx
Original file line number Diff line number Diff line change
@@ -1,29 +1,150 @@
import './LedgerNano.scss';
import React, { Component } from 'react';
import translate from 'translations';
import translate, { translateRaw } from 'translations';
import DeterministicWalletsModal from './DeterministicWalletsModal';
import LedgerWallet from 'libs/wallet/ledger';
import Ledger3 from 'vendor/ledger3';
import LedgerEth from 'vendor/ledger-eth';
import DPATHS from 'config/dpaths';

const DEFAULT_PATH = DPATHS.LEDGER[0].value;

interface Props {
onUnlock(param: any): void;
}

interface State {
publicKey: string;
chainCode: string;
dPath: string;
error: string | null;
isLoading: boolean;
}

export default class LedgerNanoSDecrypt extends Component<Props, State> {
public state: State = {
publicKey: '',
chainCode: '',
dPath: DEFAULT_PATH,
error: null,
isLoading: false
};

export default class LedgerNanoSDecrypt extends Component {
public render() {
return (
<section className="col-md-4 col-sm-6">
<div id="selectedUploadKey">
<h4>
{translate('ADD_Radio_2_alt')}
</h4>
const { dPath, publicKey, chainCode, error, isLoading } = this.state;
const showErr = error ? 'is-showing' : '';

<div className="form-group">
<input type="file" id="fselector" />
return (
<section className="LedgerDecrypt col-md-4 col-sm-6">
<button
className="LedgerDecrypt-decrypt btn btn-primary btn-lg"
onClick={this.handleNullConnect}
disabled={isLoading}
>
{isLoading ? 'Unlocking...' : translate('ADD_Ledger_scan')}
</button>

<div className="LedgerDecrypt-help">
Guides:
<div>
<a
href="http://support.ledgerwallet.com/knowledge_base/topics/how-to-use-myetherwallet-with-ledger"
target="_blank"
rel="noopener"
>
How to use MyEtherWallet with your Nano S
</a>
</div>
<div>
<a
className="btn-file marg-v-sm"
id="aria1"
tabIndex={0}
role="button"
href="https://ledger.groovehq.com/knowledge_base/topics/how-to-secure-your-eth-tokens-augur-rep-dot-dot-dot-with-your-nano-s"
target="_blank"
rel="noopener"
>
{translate('ADD_Radio_2_short')}
How to secure your tokens with your Nano S
</a>
</div>
</div>

<div className={`LedgerDecrypt-error alert alert-danger ${showErr}`}>
{error || '-'}
</div>

<a
className="LedgerDecrypt-buy btn btn-sm btn-default"
href="https://www.ledgerwallet.com/r/fa4b?path=/products/"
target="_blank"
rel="noopener"
>
{translate('Don’t have a Ledger? Order one now!')}
</a>

<DeterministicWalletsModal
isOpen={!!publicKey && !!chainCode}
publicKey={publicKey}
chainCode={chainCode}
dPath={dPath}
dPaths={DPATHS.LEDGER}
onCancel={this.handleCancel}
onConfirmAddress={this.handleUnlock}
onPathChange={this.handlePathChange}
walletType={translateRaw('x_Ledger')}
/>
</section>
);
}

private handlePathChange = (dPath: string) => {
this.handleConnect(dPath);
};

private handleConnect = (dPath: string = this.state.dPath) => {
this.setState({
isLoading: true,
error: null
});

const ledger = new Ledger3('w0w');
const ethApp = new LedgerEth(ledger);

ethApp.getAddress(
dPath,
(res, err) => {
if (err) {
err = ethApp.getError(err);
}

if (res) {
this.setState({
publicKey: res.publicKey,
chainCode: res.chainCode,
isLoading: false
});
} else {
this.setState({
error: err,
isLoading: false
});
}
},
false,
true
);
};

private handleCancel = () => {
this.setState({
publicKey: '',
chainCode: '',
dPath: DEFAULT_PATH
});
};

private handleUnlock = (address: string, index: number) => {
this.props.onUnlock(new LedgerWallet(address, this.state.dPath, index));
};

private handleNullConnect = (): void => {
return this.handleConnect();
};
}
Loading

0 comments on commit f719aee

Please sign in to comment.