import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/NumberInput/number-input'; import { css } from '@patternfly/react-styles'; import MinusIcon from '@patternfly/react-icons/dist/esm/icons/minus-icon'; import PlusIcon from '@patternfly/react-icons/dist/esm/icons/plus-icon'; import { InputGroup, InputGroupItem } from '../InputGroup'; import { Button, ButtonProps } from '../Button'; import { KeyTypes, ValidatedOptions } from '../../helpers'; import { TextInput } from '../TextInput'; import cssFormControlWidthChars from '@patternfly/react-tokens/dist/esm/c_number_input_c_form_control_width_chars'; export interface NumberInputProps extends React.HTMLProps { /** Value of the number input */ value?: number | ''; /** Additional classes added to the number input */ className?: string; /** Sets the width of the number input to a number of characters */ widthChars?: number; /** Indicates the whole number input should be disabled */ isDisabled?: boolean; /** Value to indicate if the input is modified to show that validation state */ validated?: 'default' | 'error' | 'warning' | 'success' | ValidatedOptions; /** Callback for the minus button */ onMinus?: (event: React.MouseEvent, name?: string) => void; /** Callback for the text input changing */ onChange?: (event: React.FormEvent) => void; /** Callback function when text input is blurred (focus leaves) */ onBlur?: (event?: any) => void; /** Callback for the plus button */ onPlus?: (event: React.MouseEvent, name?: string) => void; /** Adds the given unit to the number input */ unit?: React.ReactNode; /** Position of the number input unit in relation to the number input */ unitPosition?: 'before' | 'after'; /** Minimum value of the number input, disabling the minus button when reached */ min?: number; /** Maximum value of the number input, disabling the plus button when reached */ max?: number; /** Name of the input */ inputName?: string; /** Aria label of the input */ inputAriaLabel?: string; /** Aria label of the minus button */ minusBtnAriaLabel?: string; /** Aria label of the plus button */ plusBtnAriaLabel?: string; /** Additional properties added to the text input */ inputProps?: any; /** Additional properties added to the minus button */ minusBtnProps?: ButtonProps; /** Additional properties added to the plus button */ plusBtnProps?: ButtonProps; } type DefaultKeyDownHandlerArgs = Pick; const defaultKeyDownHandler = (args: DefaultKeyDownHandlerArgs) => (event: React.KeyboardEvent) => { if (KeyTypes.ArrowUp === event.key && args.onPlus) { event.preventDefault(); args.onPlus(null, args.inputName); } if (KeyTypes.ArrowDown === event.key && args.onMinus) { event.preventDefault(); args.onMinus(null, args.inputName); } }; const DEFAULT_VALUE = 0; export const NumberInput: React.FunctionComponent = ({ value = DEFAULT_VALUE, className, widthChars, isDisabled = false, validated = ValidatedOptions.default, onMinus = () => {}, onChange, onBlur, onPlus = () => {}, unit, unitPosition = 'after', min, max, inputName, inputAriaLabel = 'Input', minusBtnAriaLabel = 'Minus', plusBtnAriaLabel = 'Plus', inputProps, minusBtnProps, plusBtnProps, ...props }: NumberInputProps) => { const numberInputUnit =
{unit}
; const keyDownHandler = inputProps && inputProps.onKeyDown ? inputProps.onKeyDown : defaultKeyDownHandler({ inputName, onMinus, onPlus }); const handleBlur = (event: React.FocusEvent) => { event.target.value = Number(event.target.value).toString(); if (onChange) { onChange(event); } if (onBlur) { onBlur(event); } }; return (
{unit && unitPosition === 'before' && numberInputUnit}
); }; NumberInput.displayName = 'NumberInput';