-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NumberControl: Add custom spin buttons #45333
Changes from 14 commits
7b790e0
016f253
4938546
2cc5953
80335a2
f15a653
e5967b3
50c011e
e63d7ed
d1e2a98
c056f5c
393218c
6120b3b
d1cc602
6e9be91
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,30 +2,36 @@ | |
* External dependencies | ||
*/ | ||
import classNames from 'classnames'; | ||
import type { ForwardedRef } from 'react'; | ||
import type { ForwardedRef, KeyboardEvent, MouseEvent } from 'react'; | ||
|
||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { forwardRef } from '@wordpress/element'; | ||
import { isRTL } from '@wordpress/i18n'; | ||
import { useRef, forwardRef } from '@wordpress/element'; | ||
import { isRTL, __ } from '@wordpress/i18n'; | ||
import { plus as plusIcon, reset as resetIcon } from '@wordpress/icons'; | ||
import { useMergeRefs } from '@wordpress/compose'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import { Input } from './styles/number-control-styles'; | ||
import { Input, SpinButton } from './styles/number-control-styles'; | ||
import * as inputControlActionTypes from '../input-control/reducer/actions'; | ||
import { add, subtract, roundClamp } from '../utils/math'; | ||
import { ensureNumber, isValueEmpty } from '../utils/values'; | ||
import type { WordPressComponentProps } from '../ui/context/wordpress-component'; | ||
import type { NumberControlProps } from './types'; | ||
import { HStack } from '../h-stack'; | ||
import { Spacer } from '../spacer'; | ||
|
||
const noop = () => {}; | ||
|
||
function UnforwardedNumberControl( | ||
{ | ||
__unstableStateReducer: stateReducerProp, | ||
className, | ||
dragDirection = 'n', | ||
hideHTMLArrows = false, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We aren't bound to this by contract because NumberControl is marked as experimental, but it would be trivial to add a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was wondering this 🙂 I'll add a |
||
spinControls = 'native', | ||
isDragEnabled = true, | ||
isShiftStepEnabled = true, | ||
label, | ||
|
@@ -36,10 +42,16 @@ function UnforwardedNumberControl( | |
step = 1, | ||
type: typeProp = 'number', | ||
value: valueProp, | ||
size = 'default', | ||
suffix, | ||
onChange = noop, | ||
...props | ||
}: WordPressComponentProps< NumberControlProps, 'input', false >, | ||
ref: ForwardedRef< any > | ||
forwardedRef: ForwardedRef< any > | ||
) { | ||
const inputRef = useRef< HTMLInputElement >(); | ||
const mergedRef = useMergeRefs( [ inputRef, forwardedRef ] ); | ||
|
||
const isStepAny = step === 'any'; | ||
const baseStep = isStepAny ? 1 : ensureNumber( step ); | ||
const baseValue = roundClamp( 0, min, max, baseStep ); | ||
|
@@ -56,6 +68,23 @@ function UnforwardedNumberControl( | |
const autoComplete = typeProp === 'number' ? 'off' : undefined; | ||
const classes = classNames( 'components-number-control', className ); | ||
|
||
const spinValue = ( | ||
value: string | number | undefined, | ||
direction: 'up' | 'down', | ||
event: KeyboardEvent | MouseEvent | undefined | ||
) => { | ||
event?.preventDefault(); | ||
const shift = event?.shiftKey && isShiftStepEnabled; | ||
const delta = shift ? ensureNumber( shiftStep ) * baseStep : baseStep; | ||
let nextValue = isValueEmpty( value ) ? baseValue : value; | ||
if ( direction === 'up' ) { | ||
nextValue = add( nextValue, delta ); | ||
} else if ( direction === 'down' ) { | ||
nextValue = subtract( nextValue, delta ); | ||
} | ||
return constrainValue( nextValue, shift ? delta : undefined ); | ||
}; | ||
|
||
/** | ||
* "Middleware" function that intercepts updates from InputControl. | ||
* This allows us to tap into actions to transform the (next) state for | ||
|
@@ -78,33 +107,11 @@ function UnforwardedNumberControl( | |
type === inputControlActionTypes.PRESS_UP || | ||
type === inputControlActionTypes.PRESS_DOWN | ||
) { | ||
const enableShift = | ||
( event as KeyboardEvent | undefined )?.shiftKey && | ||
isShiftStepEnabled; | ||
|
||
const incrementalValue = enableShift | ||
? ensureNumber( shiftStep ) * baseStep | ||
: baseStep; | ||
let nextValue = isValueEmpty( currentValue ) | ||
? baseValue | ||
: currentValue; | ||
|
||
if ( event?.preventDefault ) { | ||
event.preventDefault(); | ||
} | ||
|
||
if ( type === inputControlActionTypes.PRESS_UP ) { | ||
nextValue = add( nextValue, incrementalValue ); | ||
} | ||
|
||
if ( type === inputControlActionTypes.PRESS_DOWN ) { | ||
nextValue = subtract( nextValue, incrementalValue ); | ||
} | ||
|
||
// @ts-expect-error TODO: Resolve discrepancy between `value` types in InputControl based components | ||
nextState.value = constrainValue( | ||
nextValue, | ||
enableShift ? incrementalValue : undefined | ||
nextState.value = spinValue( | ||
currentValue, | ||
type === inputControlActionTypes.PRESS_UP ? 'up' : 'down', | ||
event as KeyboardEvent | undefined | ||
); | ||
} | ||
|
||
|
@@ -178,19 +185,31 @@ function UnforwardedNumberControl( | |
return nextState; | ||
}; | ||
|
||
const buildSpinButtonClickHandler = | ||
( direction: 'up' | 'down' ) => | ||
( event: MouseEvent< HTMLButtonElement > ) => | ||
onChange( String( spinValue( valueProp, direction, event ) ), { | ||
// Set event.target to the <input> so that consumers can use | ||
// e.g. event.target.validity. | ||
event: { | ||
...event, | ||
target: inputRef.current!, | ||
}, | ||
} ); | ||
|
||
return ( | ||
<Input | ||
autoComplete={ autoComplete } | ||
inputMode="numeric" | ||
{ ...props } | ||
className={ classes } | ||
dragDirection={ dragDirection } | ||
hideHTMLArrows={ hideHTMLArrows } | ||
hideHTMLArrows={ spinControls !== 'native' } | ||
isDragEnabled={ isDragEnabled } | ||
label={ label } | ||
max={ max } | ||
min={ min } | ||
ref={ ref } | ||
ref={ mergedRef } | ||
required={ required } | ||
step={ step } | ||
type={ typeProp } | ||
|
@@ -200,6 +219,43 @@ function UnforwardedNumberControl( | |
const baseState = numberControlStateReducer( state, action ); | ||
return stateReducerProp?.( baseState, action ) ?? baseState; | ||
} } | ||
size={ size } | ||
suffix={ | ||
spinControls === 'custom' ? ( | ||
<> | ||
{ suffix } | ||
<Spacer marginBottom={ 0 } marginRight={ 2 }> | ||
<HStack spacing={ 1 }> | ||
<SpinButton | ||
icon={ plusIcon } | ||
isSmall | ||
aria-hidden="true" | ||
aria-label={ __( 'Increment' ) } | ||
tabIndex={ -1 } | ||
onClick={ buildSpinButtonClickHandler( | ||
'up' | ||
) } | ||
size={ size } | ||
/> | ||
<SpinButton | ||
icon={ resetIcon } | ||
isSmall | ||
aria-hidden="true" | ||
aria-label={ __( 'Decrement' ) } | ||
tabIndex={ -1 } | ||
onClick={ buildSpinButtonClickHandler( | ||
'down' | ||
) } | ||
size={ size } | ||
/> | ||
</HStack> | ||
</Spacer> | ||
</> | ||
) : ( | ||
suffix | ||
) | ||
} | ||
onChange={ onChange } | ||
/> | ||
); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed
InputControl
'sonChange
callback type to be less opinionated.Typing the event attribute as
PointerEvent<T> | ChangeEvent<T>
isn't great for maintainability as it means every time a new way to input a value is added toInputControl
,NumberControl
orUnitControl
(which is what this PR does) then there will be a BC-breaking type change.Consumers of the component don't need to know the specifics of the event beyond that it's a synthetic event (not a native event). Consumers can use
is
to determine the event type if necessary.