You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
206 lines
6.3 KiB
206 lines
6.3 KiB
'use client';
|
|
|
|
import DownOutlined from '@ant-design/icons/DownOutlined';
|
|
import UpOutlined from '@ant-design/icons/UpOutlined';
|
|
import classNames from 'classnames';
|
|
import type { InputNumberProps as RcInputNumberProps, ValueType } from 'rc-input-number';
|
|
import RcInputNumber from 'rc-input-number';
|
|
import * as React from 'react';
|
|
import type { InputStatus } from '../_util/statusUtils';
|
|
import { getMergedStatus, getStatusClassNames } from '../_util/statusUtils';
|
|
import ConfigProvider, { ConfigContext } from '../config-provider';
|
|
import DisabledContext from '../config-provider/DisabledContext';
|
|
import type { SizeType } from '../config-provider/SizeContext';
|
|
import useSize from '../config-provider/hooks/useSize';
|
|
import { FormItemInputContext, NoFormStyle } from '../form/context';
|
|
import { NoCompactStyle, useCompactItemContext } from '../space/Compact';
|
|
import useStyle from './style';
|
|
|
|
export interface InputNumberProps<T extends ValueType = ValueType>
|
|
extends Omit<RcInputNumberProps<T>, 'prefix' | 'size' | 'controls'> {
|
|
prefixCls?: string;
|
|
rootClassName?: 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 inputRef = React.useRef<HTMLInputElement>(null);
|
|
|
|
React.useImperativeHandle(ref, () => inputRef.current!);
|
|
|
|
const {
|
|
className,
|
|
rootClassName,
|
|
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);
|
|
|
|
const { compactSize, compactItemClassnames } = useCompactItemContext(prefixCls, direction);
|
|
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>
|
|
);
|
|
}
|
|
|
|
const {
|
|
hasFeedback,
|
|
status: contextStatus,
|
|
isFormItemInput,
|
|
feedbackIcon,
|
|
} = React.useContext(FormItemInputContext);
|
|
const mergedStatus = getMergedStatus(contextStatus, customStatus);
|
|
|
|
const mergedSize = useSize((ctx) => customizeSize ?? compactSize ?? ctx);
|
|
|
|
// ===================== Disabled =====================
|
|
const disabled = React.useContext(DisabledContext);
|
|
const mergedDisabled = customDisabled ?? disabled;
|
|
|
|
const inputNumberClass = classNames(
|
|
{
|
|
[`${prefixCls}-lg`]: mergedSize === 'large',
|
|
[`${prefixCls}-sm`]: mergedSize === 'small',
|
|
[`${prefixCls}-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-borderless`]: !bordered,
|
|
[`${prefixCls}-in-form-item`]: isFormItemInput,
|
|
},
|
|
getStatusClassNames(prefixCls, mergedStatus),
|
|
compactItemClassnames,
|
|
hashId,
|
|
);
|
|
const wrapperClassName = `${prefixCls}-group`;
|
|
|
|
const element = (
|
|
<RcInputNumber
|
|
ref={inputRef}
|
|
disabled={mergedDisabled}
|
|
className={classNames(className, rootClassName)}
|
|
upHandler={upIcon}
|
|
downHandler={downIcon}
|
|
prefixCls={prefixCls}
|
|
readOnly={readOnly}
|
|
controls={controlsTemp}
|
|
prefix={prefix}
|
|
suffix={hasFeedback && feedbackIcon}
|
|
addonAfter={
|
|
addonAfter && (
|
|
<NoCompactStyle>
|
|
<NoFormStyle override status>
|
|
{addonAfter}
|
|
</NoFormStyle>
|
|
</NoCompactStyle>
|
|
)
|
|
}
|
|
addonBefore={
|
|
addonBefore && (
|
|
<NoCompactStyle>
|
|
<NoFormStyle override status>
|
|
{addonBefore}
|
|
</NoFormStyle>
|
|
</NoCompactStyle>
|
|
)
|
|
}
|
|
classNames={{
|
|
input: inputNumberClass,
|
|
}}
|
|
classes={{
|
|
affixWrapper: classNames(
|
|
getStatusClassNames(`${prefixCls}-affix-wrapper`, mergedStatus, hasFeedback),
|
|
{
|
|
[`${prefixCls}-affix-wrapper-sm`]: mergedSize === 'small',
|
|
[`${prefixCls}-affix-wrapper-lg`]: mergedSize === 'large',
|
|
[`${prefixCls}-affix-wrapper-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-affix-wrapper-borderless`]: !bordered,
|
|
},
|
|
hashId,
|
|
),
|
|
wrapper: classNames(
|
|
{
|
|
[`${wrapperClassName}-rtl`]: direction === 'rtl',
|
|
[`${prefixCls}-wrapper-disabled`]: mergedDisabled,
|
|
},
|
|
hashId,
|
|
),
|
|
group: classNames(
|
|
{
|
|
[`${prefixCls}-group-wrapper-sm`]: mergedSize === 'small',
|
|
[`${prefixCls}-group-wrapper-lg`]: mergedSize === 'large',
|
|
[`${prefixCls}-group-wrapper-rtl`]: direction === 'rtl',
|
|
},
|
|
getStatusClassNames(`${prefixCls}-group-wrapper`, mergedStatus, hasFeedback),
|
|
hashId,
|
|
),
|
|
}}
|
|
{...others}
|
|
/>
|
|
);
|
|
|
|
return wrapSSR(element);
|
|
});
|
|
|
|
const TypedInputNumber = InputNumber as unknown as (<T extends ValueType = ValueType>(
|
|
props: React.PropsWithChildren<InputNumberProps<T>> & {
|
|
ref?: React.Ref<HTMLInputElement>;
|
|
},
|
|
) => React.ReactElement) & {
|
|
displayName?: string;
|
|
_InternalPanelDoNotUseOrYouWillBeFired: typeof PureInputNumber;
|
|
};
|
|
|
|
const PureInputNumber = (props: InputNumberProps<any>) => (
|
|
<ConfigProvider
|
|
theme={{
|
|
components: {
|
|
InputNumber: {
|
|
handleVisible: true,
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<InputNumber {...props} />
|
|
</ConfigProvider>
|
|
);
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
TypedInputNumber.displayName = 'InputNumber';
|
|
}
|
|
|
|
TypedInputNumber._InternalPanelDoNotUseOrYouWillBeFired = PureInputNumber;
|
|
|
|
export default TypedInputNumber;
|
|
|