diff options
author | Steve Klebanoff <steve@0xproject.com> | 2018-11-21 07:08:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-21 07:08:27 +0800 |
commit | 15f05733be45e05974972c80c4fa8437a62633e2 (patch) | |
tree | 2f1ca2cec58e784df8bb41c37089e4336c82a77e /packages/instant/src/components | |
parent | 7741edbbcc0d6a4d8909749ee54e502c5aaf66bf (diff) | |
parent | b7eb2e887d636e2ed61eade4bae01596dba4b4c2 (diff) | |
download | dexon-sol-tools-15f05733be45e05974972c80c4fa8437a62633e2.tar dexon-sol-tools-15f05733be45e05974972c80c4fa8437a62633e2.tar.gz dexon-sol-tools-15f05733be45e05974972c80c4fa8437a62633e2.tar.bz2 dexon-sol-tools-15f05733be45e05974972c80c4fa8437a62633e2.tar.lz dexon-sol-tools-15f05733be45e05974972c80c4fa8437a62633e2.tar.xz dexon-sol-tools-15f05733be45e05974972c80c4fa8437a62633e2.tar.zst dexon-sol-tools-15f05733be45e05974972c80c4fa8437a62633e2.zip |
Merge pull request #1290 from 0xProject/fix/instant/disable-token-picker
[instant] Don't allow changing of assets when order in progress
Diffstat (limited to 'packages/instant/src/components')
-rw-r--r-- | packages/instant/src/components/erc20_asset_amount_input.tsx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/instant/src/components/erc20_asset_amount_input.tsx b/packages/instant/src/components/erc20_asset_amount_input.tsx index 520ac33d5..b825255c4 100644 --- a/packages/instant/src/components/erc20_asset_amount_input.tsx +++ b/packages/instant/src/components/erc20_asset_amount_input.tsx @@ -22,7 +22,8 @@ export interface ERC20AssetAmountInputProps { onSelectAssetClick?: (asset?: ERC20Asset) => void; startingFontSizePx: number; fontColor?: ColorOption; - isDisabled: boolean; + isInputDisabled: boolean; + canSelectOtherAsset: boolean; numberOfAssetsAvailable?: number; } @@ -50,14 +51,15 @@ export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInput ); } private readonly _renderContentForAsset = (asset: ERC20Asset): React.ReactNode => { - const { onChange, ...rest } = this.props; - const amountBorderBottom = this.props.isDisabled ? '' : `1px solid ${transparentWhite}`; + const { onChange, isInputDisabled, ...rest } = this.props; + const amountBorderBottom = isInputDisabled ? '' : `1px solid ${transparentWhite}`; const onSymbolClick = this._generateSelectAssetClickHandler(); return ( <React.Fragment> <Container borderBottom={amountBorderBottom} display="inline-block"> <ScalingAmountInput {...rest} + isDisabled={isInputDisabled} textLengthThreshold={this._textLengthThresholdForAsset(asset)} maxFontSizePx={this.props.startingFontSizePx} onAmountChange={this._handleChange} @@ -74,11 +76,11 @@ export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInput fontSize={`${this.state.currentFontSizePx}px`} fontColor={ColorOption.white} textTransform="uppercase" - onClick={onSymbolClick} + onClick={this.props.canSelectOtherAsset ? onSymbolClick : undefined} > {assetUtils.formattedSymbolForAsset(asset)} </Text> - {this._renderChevronIcon()} + {this.props.canSelectOtherAsset && this._renderChevronIcon()} </Flex> </Container> </React.Fragment> |