fix: improve InputNumber component step behavior and disabled state (#16044)

This commit is contained in:
诗浓 2025-03-18 10:42:29 +08:00 committed by GitHub
parent 5e52d4d6b3
commit 947c9f70fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 30 additions and 10 deletions

View File

@ -12,10 +12,11 @@ export type InputNumberProps = {
max?: number
min?: number
defaultValue?: number
disabled?: boolean
} & Omit<InputProps, 'value' | 'onChange' | 'size' | 'min' | 'max' | 'defaultValue'>
export const InputNumber: FC<InputNumberProps> = (props) => {
const { unit, className, onChange, amount = 1, value, size = 'md', max, min, defaultValue, ...rest } = props
const { unit, className, onChange, amount = 1, value, size = 'md', max, min, defaultValue, disabled, ...rest } = props
const isValidValue = (v: number) => {
if (max && v > max)
@ -26,6 +27,8 @@ export const InputNumber: FC<InputNumberProps> = (props) => {
}
const inc = () => {
if (disabled) return
if (value === undefined) {
onChange(defaultValue)
return
@ -36,6 +39,8 @@ export const InputNumber: FC<InputNumberProps> = (props) => {
onChange(newValue)
}
const dec = () => {
if (disabled) return
if (value === undefined) {
onChange(defaultValue)
return
@ -54,6 +59,7 @@ export const InputNumber: FC<InputNumberProps> = (props) => {
value={value}
max={max}
min={min}
disabled={disabled}
onChange={(e) => {
if (e.target.value === '')
onChange(undefined)
@ -68,17 +74,30 @@ export const InputNumber: FC<InputNumberProps> = (props) => {
}}
unit={unit}
/>
<div className='flex flex-col bg-components-input-bg-normal rounded-r-md border-l border-divider-subtle text-text-tertiary focus:shadow-xs'>
<button onClick={inc} className={classNames(
size === 'sm' ? 'pt-1' : 'pt-1.5',
'px-1.5 hover:bg-components-input-bg-hover',
)}>
<div className={classNames(
'flex flex-col bg-components-input-bg-normal rounded-r-md border-l border-divider-subtle text-text-tertiary focus:shadow-xs',
disabled && 'opacity-50 cursor-not-allowed',
)}>
<button
onClick={inc}
disabled={disabled}
className={classNames(
size === 'sm' ? 'pt-1' : 'pt-1.5',
'px-1.5 hover:bg-components-input-bg-hover',
disabled && 'cursor-not-allowed hover:bg-transparent',
)}
>
<RiArrowUpSLine className='size-3' />
</button>
<button onClick={dec} className={classNames(
size === 'sm' ? 'pb-1' : 'pb-1.5',
'px-1.5 hover:bg-components-input-bg-hover',
)}>
<button
onClick={dec}
disabled={disabled}
className={classNames(
size === 'sm' ? 'pb-1' : 'pb-1.5',
'px-1.5 hover:bg-components-input-bg-hover',
disabled && 'cursor-not-allowed hover:bg-transparent',
)}
>
<RiArrowDownSLine className='size-3' />
</button>
</div>

View File

@ -53,6 +53,7 @@ const ParamItem: FC<Props> = ({ className, id, name, noTooltip, tip, step = 0.1,
min={min}
max={max}
step={step}
amount={step}
size='sm'
value={value}
onChange={(value) => {