48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import { AmountFieldFactory } from './AmountFieldFactory';
|
|
import { UnitDropDown, SendEverything } from 'components';
|
|
import translate from 'translations';
|
|
import { Input } from 'components/ui';
|
|
|
|
interface Props {
|
|
hasUnitDropdown?: boolean;
|
|
hasSendEverything?: boolean;
|
|
showAllTokens?: boolean;
|
|
customValidator?(rawAmount: string): boolean;
|
|
}
|
|
|
|
export const AmountField: React.SFC<Props> = ({
|
|
hasUnitDropdown,
|
|
hasSendEverything,
|
|
showAllTokens,
|
|
customValidator
|
|
}) => (
|
|
<AmountFieldFactory
|
|
withProps={({ currentValue: { raw }, isValid, onChange, readOnly }) => (
|
|
<div className="AmountField input-group-wrapper">
|
|
<label className="AmountField-group input-group input-group-inline">
|
|
<div className="input-group-header">{translate('SEND_AMOUNT_SHORT')}</div>
|
|
<Input
|
|
className={`input-group-input ${
|
|
isAmountValid(raw, customValidator, isValid) ? '' : 'invalid'
|
|
}`}
|
|
type="number"
|
|
placeholder="1"
|
|
value={raw}
|
|
readOnly={!!readOnly}
|
|
onChange={onChange}
|
|
/>
|
|
{hasSendEverything && <SendEverything />}
|
|
{hasUnitDropdown && <UnitDropDown showAllTokens={showAllTokens} />}
|
|
</label>
|
|
</div>
|
|
)}
|
|
/>
|
|
);
|
|
|
|
const isAmountValid = (
|
|
raw: string,
|
|
customValidator: ((rawAmount: string) => boolean) | undefined,
|
|
isValid: boolean
|
|
) => (customValidator ? customValidator(raw) : isValid);
|