onChange -> onAmountChange

This commit is contained in:
Steve Klebanoff
2018-11-02 13:25:59 -07:00
parent 620f439816
commit b0f2ab45e9
2 changed files with 5 additions and 5 deletions

View File

@@ -54,7 +54,7 @@ export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInput
{...rest}
textLengthThreshold={this._textLengthThresholdForAsset(asset)}
maxFontSizePx={this.props.startingFontSizePx}
onChange={this._handleChange}
onAmountChange={this._handleChange}
onFontSizeChange={this._handleFontSizeChange}
/>
</Container>

View File

@@ -15,7 +15,7 @@ export interface ScalingAmountInputProps {
textLengthThreshold: number;
fontColor?: ColorOption;
value?: BigNumber;
onChange: (value?: BigNumber) => void;
onAmountChange: (value?: BigNumber) => void;
onFontSizeChange: (fontSizePx: number) => void;
}
interface ScalingAmountInputState {
@@ -25,7 +25,7 @@ interface ScalingAmountInputState {
const { stringToMaybeBigNumber, areMaybeBigNumbersEqual } = maybeBigNumberUtil;
export class ScalingAmountInput extends React.Component<ScalingAmountInputProps, ScalingAmountInputState> {
public static defaultProps = {
onChange: util.boundNoop,
onAmountChange: util.boundNoop,
onFontSizeChange: util.boundNoop,
isDisabled: false,
};
@@ -72,11 +72,11 @@ export class ScalingAmountInput extends React.Component<ScalingAmountInputProps,
stringValue: sanitizedValue,
});
// Trigger onChange with a valid BigNumber, or undefined if the sanitizedValue is invalid or empty
// Trigger onAmountChange with a valid BigNumber, or undefined if the sanitizedValue is invalid or empty
const bigNumberValue: MaybeBigNumber = _.isEmpty(sanitizedValue)
? undefined
: stringToMaybeBigNumber(sanitizedValue);
this.props.onChange(bigNumberValue);
this.props.onAmountChange(bigNumberValue);
};
}