aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/asset_amount_input.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-24 11:02:50 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-24 11:05:43 +0800
commit47737d4d0fce56454c9ee2b43782b824b88cb942 (patch)
tree808d167f371963ad858002a7bb631c7a8906d029 /packages/instant/src/components/asset_amount_input.tsx
parent2e184f081e546acbc8ed3e5e05de5a9e5b56a3d8 (diff)
downloaddexon-sol-tools-47737d4d0fce56454c9ee2b43782b824b88cb942.tar
dexon-sol-tools-47737d4d0fce56454c9ee2b43782b824b88cb942.tar.gz
dexon-sol-tools-47737d4d0fce56454c9ee2b43782b824b88cb942.tar.bz2
dexon-sol-tools-47737d4d0fce56454c9ee2b43782b824b88cb942.tar.lz
dexon-sol-tools-47737d4d0fce56454c9ee2b43782b824b88cb942.tar.xz
dexon-sol-tools-47737d4d0fce56454c9ee2b43782b824b88cb942.tar.zst
dexon-sol-tools-47737d4d0fce56454c9ee2b43782b824b88cb942.zip
feat: cover more token symbol edge cases
Diffstat (limited to 'packages/instant/src/components/asset_amount_input.tsx')
-rw-r--r--packages/instant/src/components/asset_amount_input.tsx21
1 files changed, 17 insertions, 4 deletions
diff --git a/packages/instant/src/components/asset_amount_input.tsx b/packages/instant/src/components/asset_amount_input.tsx
index 368ef10c2..960b8bc95 100644
--- a/packages/instant/src/components/asset_amount_input.tsx
+++ b/packages/instant/src/components/asset_amount_input.tsx
@@ -8,7 +8,7 @@ import { assetUtils } from '../util/asset';
import { util } from '../util/util';
import { ScalingAmountInput } from './scaling_amount_input';
-import { Container, Text } from './ui';
+import { Container, Flex, Text } from './ui';
// Asset amounts only apply to ERC20 assets
export interface AssetAmountInputProps {
@@ -35,17 +35,17 @@ export class AssetAmountInput extends React.Component<AssetAmountInputProps, Ass
public render(): React.ReactNode {
const { asset, onChange, ...rest } = this.props;
return (
- <Container>
+ <Container whiteSpace="nowrap">
<Container borderBottom="1px solid rgba(255,255,255,0.3)" display="inline-block">
<ScalingAmountInput
{...rest}
- textLengthThreshold={4}
+ textLengthThreshold={this._textLengthThresholdForAsset(asset)}
maxFontSizePx={this.props.startingFontSizePx}
onChange={this._handleChange}
onFontSizeChange={this._handleFontSizeChange}
/>
</Container>
- <Container display="inline-block" marginLeft="10px" title={assetUtils.bestNameForAsset(asset)}>
+ <Container display="inline-flex" marginLeft="10px" title={assetUtils.bestNameForAsset(asset)}>
<Text
fontSize={`${this.state.currentFontSizePx}px`}
fontColor={ColorOption.white}
@@ -65,4 +65,17 @@ export class AssetAmountInput extends React.Component<AssetAmountInputProps, Ass
currentFontSizePx: fontSizePx,
});
};
+ private readonly _textLengthThresholdForAsset = (asset?: ERC20Asset): number => {
+ if (_.isUndefined(asset)) {
+ return 3;
+ }
+ const symbol = asset.metaData.symbol;
+ if (symbol.length <= 3) {
+ return 5;
+ }
+ if (symbol.length === 5) {
+ return 3;
+ }
+ return 4;
+ };
}