mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
Refactored menu rendering
This commit is contained in:
parent
e226847ccc
commit
909c657454
@ -47,7 +47,7 @@ const A = styled.a`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Header = (): React$Element<string> => (
|
const Header = () => (
|
||||||
<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,61 +1,54 @@
|
|||||||
/* @flow */
|
import React, { Component } from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import { NavLink } from 'react-router-dom';
|
||||||
|
import navigationConstants from '~/js/constants/navigation';
|
||||||
|
|
||||||
|
class CoinSelection extends Component {
|
||||||
import React from 'react';
|
getBaseUrl() {
|
||||||
import { Link, NavLink } from 'react-router-dom';
|
const { selectedDevice } = this.props.wallet;
|
||||||
|
let baseUrl = '';
|
||||||
import type { Props } from './index';
|
|
||||||
import type { TrezorDevice } from '~/flowtype';
|
|
||||||
|
|
||||||
const CoinSelection = (props: Props): React$Element<string> => {
|
|
||||||
const { location } = props.router;
|
|
||||||
const { config } = props.localStorage;
|
|
||||||
const { selectedDevice } = props.wallet;
|
|
||||||
|
|
||||||
let baseUrl: string = '';
|
|
||||||
if (selectedDevice && selectedDevice.features) {
|
if (selectedDevice && selectedDevice.features) {
|
||||||
baseUrl = `/device/${selectedDevice.features.device_id}`;
|
baseUrl = `/device/${selectedDevice.features.device_id}`;
|
||||||
if (selectedDevice.instance) {
|
if (selectedDevice.instance) {
|
||||||
baseUrl += `:${selectedDevice.instance}`;
|
baseUrl += `:${selectedDevice.instance}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return baseUrl;
|
||||||
|
}
|
||||||
|
|
||||||
const walletCoins = config.coins.map((item) => {
|
render() {
|
||||||
const url = `${baseUrl}/network/${item.network}/account/0`;
|
const { config } = this.props.localStorage;
|
||||||
const className = `coin ${item.network}`;
|
|
||||||
return (
|
|
||||||
<NavLink key={item.network} to={url} className={className}>
|
|
||||||
{ item.name }
|
|
||||||
</NavLink>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section>
|
<section>
|
||||||
{ walletCoins }
|
{config.coins.map(item => (
|
||||||
|
<NavLink
|
||||||
|
key={item.network}
|
||||||
|
to={`${this.getBaseUrl()}/network/${item.network}/account/0`}
|
||||||
|
>{ item.name }
|
||||||
|
</NavLink>
|
||||||
|
))}
|
||||||
<div className="coin-divider">
|
<div className="coin-divider">
|
||||||
Other coins <span>(You will be redirected)</span>
|
Other coins <span>(You will be redirected)</span>
|
||||||
</div>
|
</div>
|
||||||
<a href="https://wallet.trezor.io/#/coin/btc" className="coin btc external">
|
{navigationConstants.map(item => (
|
||||||
Bitcoin
|
<a
|
||||||
</a>
|
key={item.coinName}
|
||||||
<a href="https://wallet.trezor.io/#/coin/ltc" className="coin ltc external">
|
rel="noopener noreferrer"
|
||||||
Litecoin
|
target="_blank"
|
||||||
</a>
|
href={item.url}
|
||||||
<a href="https://wallet.trezor.io/#/coin/bch" className="coin bch external">
|
>{item.coinName}
|
||||||
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>
|
</a>
|
||||||
|
))}
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CoinSelection.propTypes = {
|
||||||
|
config: PropTypes.object,
|
||||||
|
wallet: PropTypes.object,
|
||||||
|
selectedDevice: PropTypes.object,
|
||||||
|
localStorage: PropTypes.object,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default CoinSelection;
|
export default CoinSelection;
|
@ -6,8 +6,7 @@ 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;
|
||||||
@ -28,7 +27,7 @@ const Row = styled.div`
|
|||||||
padding-bottom: 98px;
|
padding-bottom: 98px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const DeviceSettings = () => (
|
const DeviceSettings = () => (
|
||||||
<Section>
|
<Section>
|
||||||
<Row>
|
<Row>
|
||||||
<Icon
|
<Icon
|
||||||
|
26
src/js/constants/navigation.js
Normal file
26
src/js/constants/navigation.js
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
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,8 +8,6 @@
|
|||||||
|
|
||||||
.history-transaction {
|
.history-transaction {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.amount, .time, .address {
|
.amount, .time, .address {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user