|
|
|
import DownOutlined from '@ant-design/icons/DownOutlined';
|
|
|
|
import UpOutlined from '@ant-design/icons/UpOutlined';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import type { InputNumberProps as RcInputNumberProps } from 'rc-input-number';
|
|
|
|
import RcInputNumber from 'rc-input-number';
|
|
|
|
import type { ValueType } from 'rc-input-number/lib/utils/MiniDecimal';
|
|
|
|
import * as React from 'react';
|
|
|
|
import { useContext } from 'react';
|
|
|
|
import ConfigProvider, { ConfigContext } from '../config-provider';
|
|
|
|
import DisabledContext from '../config-provider/DisabledContext';
|
|
|
|
import type { SizeType } from '../config-provider/SizeContext';
|
|
|
|
import SizeContext from '../config-provider/SizeContext';
|
|
|
|
import { FormItemInputContext, NoFormStyle } from '../form/context';
|
|
|
|
import { cloneElement } from '../_util/reactNode';
|
|
|
|
import type { InputStatus } from '../_util/statusUtils';
|
|
|
|
import { getMergedStatus, getStatusClassNames } from '../_util/statusUtils';
|
|
|
|
import useStyle from './style';
|
|
|
|
|
|
|
|
export interface InputNumberProps<T extends ValueType = ValueType>
|
|
|
|
extends Omit<RcInputNumberProps<T>, 'prefix' | 'size' | 'controls'> {
|
|
|
|
prefixCls?: string;
|
|
|
|
addonBefore?: React.ReactNode;
|
|
|
|
addonAfter?: React.ReactNode;
|
|
|
|
prefix?: React.ReactNode;
|
|
|
|
size?: SizeType;
|
|
|
|
disabled?: boolean;
|
|
|
|
bordered?: boolean;
|
|
|
|
status?: InputStatus;
|
|
|
|
controls?: boolean | { upIcon?: React.ReactNode; downIcon?: React.ReactNode };
|
|
|
|
}
|
|
|
|
|
|
|
|
const InputNumber = React.forwardRef<HTMLInputElement, InputNumberProps>((props, ref) => {
|
|
|
|
const { getPrefixCls, direction } = React.useContext(ConfigContext);
|
|
|
|
const size = React.useContext(SizeContext);
|
|
|
|
const [focused, setFocus] = React.useState(false);
|
|
|
|
const inputRef = React.useRef<HTMLInputElement>(null);
|
|
|
|
|
|
|
|
React.useImperativeHandle(ref, () => inputRef.current!);
|
|
|
|
|
|
|
|
const {
|
|
|
|
className,
|
|
|
|
size: customizeSize,
|
|
|
|
disabled: customDisabled,
|
|
|
|
prefixCls: customizePrefixCls,
|
|
|
|
addonBefore,
|
|
|
|
addonAfter,
|
|
|
|
prefix,
|
|
|
|
bordered = true,
|
|
|
|
readOnly,
|
|
|
|
status: customStatus,
|
|
|
|
controls,
|
|
|
|
...others
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
const prefixCls = getPrefixCls('input-number', customizePrefixCls);
|
|
|
|
|
|
|
|
// Style
|
|
|
|
const [wrapSSR, hashId] = useStyle(prefixCls);
|
|
|
|
|
|
|
|
let upIcon = <UpOutlined className={`${prefixCls}-handler-up-inner`} />;
|
|
|
|
let downIcon = <DownOutlined className={`${prefixCls}-handler-down-inner`} />;
|
|
|
|
const controlsTemp = typeof controls === 'boolean' ? controls : undefined;
|
|
|
|
|
|
|
|
if (typeof controls === 'object') {
|
|
|
|
upIcon =
|
|
|
|
typeof controls.upIcon === 'undefined' ? (
|
|
|
|
upIcon
|
|
|
|
) : (
|
|
|
|
<span className={`${prefixCls}-handler-up-inner`}>{controls.upIcon}</span>
|
|
|
|
);
|
|
|
|
downIcon =
|
|
|
|
typeof controls.downIcon === 'undefined' ? (
|
|
|
|
downIcon
|
|
|
|
) : (
|
|
|
|
<span className={`${prefixCls}-handler-down-inner`}>{controls.downIcon}</span>
|
|
|
|
);
|
|
|
|
}
|
|
|