You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/js/components/wallet/aside/CoinSelection.js

107 lines
3.0 KiB

/* @flow */
import styled from 'styled-components';
import React from 'react';
import { NavLink } from 'react-router-dom';
import type { TrezorDevice } from 'flowtype';
import AsideDivider from './AsideDivider';
import AsideRowCoinWallet from './AsideRowCoinWallet';
import AsideRowCoinExternal from './AsideRowCoinExternal';
import AsideSection from './AsideSection';
import type { Props } from './index';
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) {
baseUrl = `/device/${selectedDevice.features.device_id}`;
if (selectedDevice.instance) {
baseUrl += `:${selectedDevice.instance}`;
}
}
const walletCoins = config.coins.map((item) => {
const url = `${baseUrl}/network/${item.network}/account/0`;
const className = `coin ${item.network}`;
let coinImg = item.network;
if (item.network === 'ethereum') {
coinImg = 'eth';
} else if (item.network === 'ethereum-classic') {
coinImg = 'etc';
}
return (
<AsideRowCoinWallet
key={item.network}
coin={{
img: coinImg,
name: item.name,
}}
url={url}
/>
);
});
return (
<AsideSection>
{ walletCoins }
<AsideDivider
textLeft="Other coins"
textRight="(You will be redirected)"
/>
<AsideRowCoinExternal
coin={{
img: 'btc',
name: 'Bitcoin',
}}
url="https://wallet.trezor.io/#/coin/ltc"
/>
<AsideRowCoinExternal
coin={{
img: 'ltc',
name: 'Litecoin',
}}
url="https://wallet.trezor.io/#/coin/ltc"
/>
<AsideRowCoinExternal
coin={{
img: 'bch',
name: 'Bitcoin Cash',
}}
url="https://wallet.trezor.io/#/coin/bch"
/>
<AsideRowCoinExternal
coin={{
img: 'btg',
name: 'Bitcoin Gold',
}}
url="https://wallet.trezor.io/#/coin/btg"
/>
<AsideRowCoinExternal
coin={{
img: 'Dash',
name: 'Dash',
}}
url="https://wallet.trezor.io/#/coin/dash"
/>
<AsideRowCoinExternal
coin={{
img: 'zec',
name: 'Zcash',
}}
url="https://wallet.trezor.io/#/coin/zec"
/>
</AsideSection>
);
};
export default CoinSelection;