mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
Refactorize AccountSummary
This commit is contained in:
parent
203a66a904
commit
8b31b63e1e
@ -4,7 +4,10 @@ import React from 'react';
|
|||||||
import { H2 } from 'components/Heading';
|
import { H2 } from 'components/Heading';
|
||||||
import TooltipContent from 'components/TooltipContent';
|
import TooltipContent from 'components/TooltipContent';
|
||||||
import BigNumber from 'bignumber.js';
|
import BigNumber from 'bignumber.js';
|
||||||
import { Async as AsyncSelect } from 'react-select';
|
import Icon from 'components/Icon';
|
||||||
|
import { AsyncSelect } from 'components/Select';
|
||||||
|
import ICONS from 'config/icons';
|
||||||
|
import colors from 'config/colors';
|
||||||
import Tooltip from 'rc-tooltip';
|
import Tooltip from 'rc-tooltip';
|
||||||
|
|
||||||
import CoinLogo from 'components/CoinLogo';
|
import CoinLogo from 'components/CoinLogo';
|
||||||
@ -44,6 +47,10 @@ const StyledIcon = styled(Icon)`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
const AsyncSelectWrapper = styled.div`
|
||||||
|
padding: 0px 48px 32px 48px;
|
||||||
|
`;
|
||||||
|
|
||||||
const Summary = (props: Props) => {
|
const Summary = (props: Props) => {
|
||||||
const device = props.wallet.selectedDevice;
|
const device = props.wallet.selectedDevice;
|
||||||
const {
|
const {
|
||||||
@ -56,15 +63,10 @@ const Summary = (props: Props) => {
|
|||||||
// flow
|
// flow
|
||||||
if (!device || !account || !network) return null;
|
if (!device || !account || !network) return null;
|
||||||
|
|
||||||
const tokensTooltip = (
|
|
||||||
<TooltipContent>
|
|
||||||
Insert token name, symbol or address to be able to send it.
|
|
||||||
</TooltipContent>
|
|
||||||
);
|
|
||||||
const explorerLink: string = `${network.explorer.address}${account.address}`;
|
const explorerLink: string = `${network.explorer.address}${account.address}`;
|
||||||
|
|
||||||
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);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SelectedAccount {...props}>
|
<SelectedAccount {...props}>
|
||||||
<AccountHeading network={account.networks}>
|
<AccountHeading network={account.networks}>
|
||||||
@ -95,7 +97,11 @@ const Summary = (props: Props) => {
|
|||||||
Tokens
|
Tokens
|
||||||
<Tooltip
|
<Tooltip
|
||||||
arrowContent={<div className="rc-tooltip-arrow-inner" />}
|
arrowContent={<div className="rc-tooltip-arrow-inner" />}
|
||||||
overlay={tokensTooltip}
|
overlay={(
|
||||||
|
<TooltipContent>
|
||||||
|
Insert token name, symbol or address to be able to send it.
|
||||||
|
</TooltipContent>
|
||||||
|
)}
|
||||||
placement="top"
|
placement="top"
|
||||||
>
|
>
|
||||||
<StyledIcon
|
<StyledIcon
|
||||||
@ -107,37 +113,31 @@ const Summary = (props: Props) => {
|
|||||||
</StyledH2>
|
</StyledH2>
|
||||||
{/* 0x58cda554935e4a1f2acbe15f8757400af275e084 Lahod */}
|
{/* 0x58cda554935e4a1f2acbe15f8757400af275e084 Lahod */}
|
||||||
{/* 0x58cda554935e4a1f2acbe15f8757400af275e084 T01 */}
|
{/* 0x58cda554935e4a1f2acbe15f8757400af275e084 T01 */}
|
||||||
<div className="filter">
|
|
||||||
|
{/* TOOO: AsyncSelect is lagging when dropdown menu must show more than 200 items */}
|
||||||
|
{/* TODO: Input's box-shadow */}
|
||||||
|
<AsyncSelectWrapper>
|
||||||
<AsyncSelect
|
<AsyncSelect
|
||||||
className="token-select"
|
isSearchable
|
||||||
multi={false}
|
defaultOptions
|
||||||
autoload
|
|
||||||
ignoreCase
|
|
||||||
backspaceRemoves
|
|
||||||
value={null}
|
value={null}
|
||||||
|
isMulti={false}
|
||||||
|
placeholder="Search for the token"
|
||||||
|
loadingMessage={() => 'Loading...'}
|
||||||
|
noOptionsMessage={() => 'Token not found'}
|
||||||
onChange={token => props.addToken(token, account)}
|
onChange={token => props.addToken(token, account)}
|
||||||
loadOptions={input => props.loadTokens(input, account.network)}
|
loadOptions={input => props.loadTokens(input, account.network)}
|
||||||
filterOptions={
|
formatOptionLabel={(option) => {
|
||||||
(options: Array<NetworkToken>, search: string, values: Array<NetworkToken>) => options.map((o) => {
|
const isAdded = tokens.find(t => t.symbol === option.symbol);
|
||||||
const added = tokens.find(t => t.symbol === o.symbol);
|
if (isAdded) {
|
||||||
if (added) {
|
return `${option.name} (Already added)`;
|
||||||
return {
|
}
|
||||||
...o,
|
return option.name;
|
||||||
name: `${o.name} (Already added)`,
|
}}
|
||||||
disabled: true,
|
getOptionLabel={option => option.name}
|
||||||
};
|
getOptionValue={option => option.symbol}
|
||||||
}
|
|
||||||
return o;
|
|
||||||
})
|
|
||||||
}
|
|
||||||
valueKey="symbol"
|
|
||||||
labelKey="name"
|
|
||||||
placeholder="Search for token"
|
|
||||||
searchPromptText="Type token name or address"
|
|
||||||
noResultsText="Token not found"
|
|
||||||
/>
|
/>
|
||||||
|
</AsyncSelectWrapper>
|
||||||
</div>
|
|
||||||
|
|
||||||
<SummaryTokens
|
<SummaryTokens
|
||||||
pending={pending}
|
pending={pending}
|
||||||
|
Loading…
Reference in New Issue
Block a user