Revert "Refactored menu rendering"

This reverts commit 909c657454.
pull/3/head
Vladimir Volek 6 years ago
parent 7c1f928ac6
commit 8cc345aa05

@ -47,7 +47,7 @@ const A = styled.a`
} }
`; `;
const Header = () => ( const Header = (): React$Element<string> => (
<Wrapper> <Wrapper>
<LayoutWrapper> <LayoutWrapper>
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 163.7 41.9" width="100%" height="100%" preserveAspectRatio="xMinYMin meet"> <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 163.7 41.9" width="100%" height="100%" preserveAspectRatio="xMinYMin meet">

@ -1,54 +1,61 @@
import React, { Component } from 'react'; /* @flow */
import PropTypes from 'prop-types';
import { NavLink } from 'react-router-dom';
import navigationConstants from '~/js/constants/navigation'; import React from 'react';
import { Link, NavLink } from 'react-router-dom';
class CoinSelection extends Component {
getBaseUrl() { import type { Props } from './index';
const { selectedDevice } = this.props.wallet; import type { TrezorDevice } from '~/flowtype';
let baseUrl = '';
if (selectedDevice && selectedDevice.features) { const CoinSelection = (props: Props): React$Element<string> => {
baseUrl = `/device/${selectedDevice.features.device_id}`; const { location } = props.router;
if (selectedDevice.instance) { const { config } = props.localStorage;
baseUrl += `:${selectedDevice.instance}`; const { selectedDevice } = props.wallet;
}
let baseUrl: string = '';
if (selectedDevice && selectedDevice.features) {
baseUrl = `/device/${selectedDevice.features.device_id}`;
if (selectedDevice.instance) {
baseUrl += `:${selectedDevice.instance}`;
} }
return baseUrl;
} }
render() { const walletCoins = config.coins.map((item) => {
const { config } = this.props.localStorage; const url = `${baseUrl}/network/${item.network}/account/0`;
const className = `coin ${item.network}`;
return ( return (
<section> <NavLink key={item.network} to={url} className={className}>
{config.coins.map(item => ( { item.name }
<NavLink </NavLink>
key={item.network}
to={`${this.getBaseUrl()}/network/${item.network}/account/0`}
>{ item.name }
</NavLink>
))}
<div className="coin-divider">
Other coins <span>(You will be redirected)</span>
</div>
{navigationConstants.map(item => (
<a
key={item.coinName}
rel="noopener noreferrer"
target="_blank"
href={item.url}
>{item.coinName}
</a>
))}
</section>
); );
} });
}
CoinSelection.propTypes = { return (
config: PropTypes.object, <section>
wallet: PropTypes.object, { walletCoins }
selectedDevice: PropTypes.object, <div className="coin-divider">
localStorage: PropTypes.object, Other coins <span>(You will be redirected)</span>
</div>
<a href="https://wallet.trezor.io/#/coin/btc" className="coin btc external">
Bitcoin
</a>
<a href="https://wallet.trezor.io/#/coin/ltc" className="coin ltc external">
Litecoin
</a>
<a href="https://wallet.trezor.io/#/coin/bch" className="coin bch external">
Bitcoin Cash
</a>
<a href="https://wallet.trezor.io/#/coin/btg" className="coin btg external">
Bitcoin Gold
</a>
<a href="https://wallet.trezor.io/#/coin/dash" className="coin dash external">
Dash
</a>
<a href="https://wallet.trezor.io/#/coin/zec" className="coin zec external">
Zcash
</a>
</section>
);
}; };
export default CoinSelection; export default CoinSelection;

@ -6,7 +6,8 @@ import colors from '~/js/config/colors';
import ICONS from '~/js/constants/icons'; import ICONS from '~/js/constants/icons';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
const Section = styled.section``; const Section = styled.section`
`;
const P = styled.p` const P = styled.p`
padding: 12px 0px 24px 0px; padding: 12px 0px 24px 0px;
@ -27,7 +28,7 @@ const Row = styled.div`
padding-bottom: 98px; padding-bottom: 98px;
`; `;
const DeviceSettings = () => ( export const DeviceSettings = () => (
<Section> <Section>
<Row> <Row>
<Icon <Icon

@ -1,26 +0,0 @@
export default [
{
coinName: 'Bitcoin',
url: 'https://wallet.trezor.io/#/coin/btc',
},
{
coinName: 'Litecoin',
url: 'https://wallet.trezor.io/#/coin/ltc',
},
{
coinName: 'Bitcoin Cash',
url: 'https://wallet.trezor.io/#/coin/bch',
},
{
coinName: 'Bitcoin Gold',
url: 'https://wallet.trezor.io/#/coin/btg',
},
{
coinName: 'Dash',
url: 'https://wallet.trezor.io/#/coin/dash',
},
{
coinName: 'Zcash',
url: 'https://wallet.trezor.io/#/coin/zec',
},
];

@ -8,6 +8,8 @@
.history-transaction { .history-transaction {
.amount, .time, .address { .amount, .time, .address {
margin-left: 10px; margin-left: 10px;
} }

Loading…
Cancel
Save