aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/amount_input.tsx
blob: 8fead78ca840e54b0a2767dabf0737b15a1e0a2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { BigNumber } from '@0xproject/utils';
import * as _ from 'lodash';
import * as React from 'react';

import { ColorOption } from '../style/theme';

import { Container, Flex, Input, Text } from './ui';

export interface AmountInputProps {
    fontColor?: ColorOption;
    fontSize?: string;
    value?: BigNumber;
    onChange?: (value: BigNumber) => void;
}

export class AmountInput extends React.Component<AmountInputProps> {
    public render(): React.ReactNode {
        const { fontColor, fontSize, value } = this.props;
        return (
            <Container borderBottom="1px solid rgba(255,255,255,0.3)" display="inline-block">
                <Input
                    fontColor={fontColor}
                    fontSize={fontSize}
                    onChange={this._handleChange}
                    value={value ? value.toString() : undefined}
                    placeholder="0.00"
                    width="2em"
                />
            </Container>
        );
    }
    private _handleChange = (event: React.ChangeEvent<HTMLInputElement>): void => {
        const bigNumberValue = new BigNumber(event.target.value);
        if (!_.isUndefined(this.props.onChange)) {
            this.props.onChange(bigNumberValue);
        }
    };
}