mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-27 18:58:08 +00:00
add reserve to Account Summary
This commit is contained in:
parent
e24574d70b
commit
11efd69a21
@ -0,0 +1,161 @@
|
|||||||
|
/* @flow */
|
||||||
|
import React, { PureComponent } from 'react';
|
||||||
|
import BigNumber from 'bignumber.js';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
import Icon from 'components/Icon';
|
||||||
|
import colors from 'config/colors';
|
||||||
|
import ICONS from 'config/icons';
|
||||||
|
import { FONT_SIZE, FONT_WEIGHT } from 'config/variables';
|
||||||
|
|
||||||
|
import type { Network, State as ReducersState } from 'flowtype';
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
network: Network,
|
||||||
|
balance: string,
|
||||||
|
reserve: string,
|
||||||
|
fiat: $ElementType<ReducersState, 'fiat'>,
|
||||||
|
}
|
||||||
|
|
||||||
|
type State = {
|
||||||
|
isHidden: boolean,
|
||||||
|
canAnimateHideBalanceIcon: boolean,
|
||||||
|
};
|
||||||
|
|
||||||
|
const Wrapper = styled.div`
|
||||||
|
padding-bottom: 28px;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
border-bottom: 1px solid ${colors.DIVIDER};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const HideBalanceIconWrapper = styled.div`
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
position: absolute;
|
||||||
|
margin-left: -20px;
|
||||||
|
left: 50%;
|
||||||
|
bottom: -20px;
|
||||||
|
|
||||||
|
cursor: pointer;
|
||||||
|
background: ${colors.WHITE};
|
||||||
|
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
|
||||||
|
border-radius: 50%;
|
||||||
|
transition: all 0.3s;
|
||||||
|
&:hover {
|
||||||
|
background: ${colors.DIVIDER};
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
|
||||||
|
const FiatValue = styled.div`
|
||||||
|
font-weight: ${FONT_WEIGHT.SEMIBOLD};
|
||||||
|
font-size: ${FONT_SIZE.BIGGER};
|
||||||
|
margin: 7px 0;
|
||||||
|
min-height: 25px;
|
||||||
|
color: ${colors.TEXT_PRIMARY};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const FiatValueRate = styled.div`
|
||||||
|
font-weight: ${FONT_WEIGHT.SEMIBOLD};
|
||||||
|
font-size: ${FONT_SIZE.BIG};
|
||||||
|
min-height: 25px;
|
||||||
|
margin: 7px 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: ${colors.TEXT_PRIMARY};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const BalanceWrapper = styled.div`
|
||||||
|
margin-right: 48px;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const BalanceRateWrapper = styled(BalanceWrapper)`
|
||||||
|
padding-left: 50px;
|
||||||
|
`;
|
||||||
|
|
||||||
|
const CoinBalance = styled.div`
|
||||||
|
font-size: ${FONT_SIZE.SMALL};
|
||||||
|
color: ${colors.TEXT_SECONDARY};
|
||||||
|
`;
|
||||||
|
|
||||||
|
const Label = styled.div`
|
||||||
|
font-size: ${FONT_SIZE.SMALL};
|
||||||
|
color: ${colors.TEXT_SECONDARY};
|
||||||
|
`;
|
||||||
|
|
||||||
|
|
||||||
|
class AccountBalance extends PureComponent<Props, State> {
|
||||||
|
constructor(props: Props) {
|
||||||
|
super(props);
|
||||||
|
this.state = {
|
||||||
|
isHidden: false,
|
||||||
|
canAnimateHideBalanceIcon: false,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
handleHideBalanceIconClick() {
|
||||||
|
this.setState(previousState => ({
|
||||||
|
isHidden: !previousState.isHidden,
|
||||||
|
canAnimateHideBalanceIcon: true,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const { network } = this.props;
|
||||||
|
const fiatRate = this.props.fiat.find(f => f.network === network.shortcut);
|
||||||
|
let accountBalance = '';
|
||||||
|
let fiatRateValue = '';
|
||||||
|
let fiat = '';
|
||||||
|
if (fiatRate) {
|
||||||
|
accountBalance = new BigNumber(this.props.balance);
|
||||||
|
fiatRateValue = new BigNumber(fiatRate.value).toFixed(2);
|
||||||
|
fiat = accountBalance.times(fiatRateValue).toFixed(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Wrapper>
|
||||||
|
<HideBalanceIconWrapper
|
||||||
|
onClick={() => this.handleHideBalanceIconClick()}
|
||||||
|
>
|
||||||
|
<Icon
|
||||||
|
canAnimate={this.state.canAnimateHideBalanceIcon}
|
||||||
|
isActive={this.state.isHidden}
|
||||||
|
icon={ICONS.ARROW_UP}
|
||||||
|
color={colors.TEXT_SECONDARY}
|
||||||
|
size={26}
|
||||||
|
/>
|
||||||
|
</HideBalanceIconWrapper>
|
||||||
|
{!this.state.isHidden && (
|
||||||
|
<React.Fragment>
|
||||||
|
<BalanceWrapper>
|
||||||
|
<Label>Balance</Label>
|
||||||
|
{fiatRate && (
|
||||||
|
<FiatValue>${fiat}</FiatValue>
|
||||||
|
)}
|
||||||
|
<CoinBalance>{this.props.balance} {network.symbol}</CoinBalance>
|
||||||
|
</BalanceWrapper>
|
||||||
|
{this.props.reserve !== '0' && (
|
||||||
|
<BalanceWrapper>
|
||||||
|
<Label>Reserve</Label>
|
||||||
|
<CoinBalance>{this.props.reserve} {network.symbol}</CoinBalance>
|
||||||
|
</BalanceWrapper>
|
||||||
|
)}
|
||||||
|
{fiatRate && (
|
||||||
|
<BalanceRateWrapper>
|
||||||
|
<Label>Rate</Label>
|
||||||
|
<FiatValueRate>${fiatRateValue}</FiatValueRate>
|
||||||
|
<CoinBalance>1.00 {network.symbol}</CoinBalance>
|
||||||
|
</BalanceRateWrapper>
|
||||||
|
)}
|
||||||
|
</React.Fragment>
|
||||||
|
)}
|
||||||
|
</Wrapper>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default AccountBalance;
|
@ -13,7 +13,7 @@ import CoinLogo from 'components/images/CoinLogo';
|
|||||||
import * as stateUtils from 'reducers/utils';
|
import * as stateUtils from 'reducers/utils';
|
||||||
import Link from 'components/Link';
|
import Link from 'components/Link';
|
||||||
import { FONT_WEIGHT, FONT_SIZE } from 'config/variables';
|
import { FONT_WEIGHT, FONT_SIZE } from 'config/variables';
|
||||||
import AccountBalance from '../components/Balance';
|
import AccountBalance from './components/Balance';
|
||||||
|
|
||||||
import type { Props } from './Container';
|
import type { Props } from './Container';
|
||||||
|
|
||||||
@ -77,6 +77,7 @@ const AccountSummary = (props: Props) => {
|
|||||||
const explorerLink: string = `${network.explorer.address}${account.descriptor}`;
|
const explorerLink: string = `${network.explorer.address}${account.descriptor}`;
|
||||||
const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, network.symbol);
|
const pendingAmount: BigNumber = stateUtils.getPendingAmount(pending, network.symbol);
|
||||||
const balance: string = new BigNumber(account.balance).minus(pendingAmount).toString(10);
|
const balance: string = new BigNumber(account.balance).minus(pendingAmount).toString(10);
|
||||||
|
const reserve: string = account.networkType === 'ripple' && !account.empty ? account.reserve : '0';
|
||||||
|
|
||||||
const TMP_SHOW_HISTORY = false;
|
const TMP_SHOW_HISTORY = false;
|
||||||
|
|
||||||
@ -93,6 +94,7 @@ const AccountSummary = (props: Props) => {
|
|||||||
<AccountBalance
|
<AccountBalance
|
||||||
network={network}
|
network={network}
|
||||||
balance={balance}
|
balance={balance}
|
||||||
|
reserve={reserve}
|
||||||
fiat={props.fiat}
|
fiat={props.fiat}
|
||||||
/>
|
/>
|
||||||
{ TMP_SHOW_HISTORY && (
|
{ TMP_SHOW_HISTORY && (
|
||||||
|
Loading…
Reference in New Issue
Block a user