useTimeFieldState
Provides state management for a time field component. A time field allows users to enter and edit time values using a keyboard. Each part of a time value is displayed in an individually editable segment.
install | yarn add react-stately |
---|---|
version | 3.27.0 |
usage | import {useTimeFieldState} from 'react-stately' |
API#
useTimeFieldState<T extends TimeValue = TimeValue>(
(props: TimeFieldStateOptions<T>
)): TimeFieldState
Interface#
Properties
Name | Type | Description |
timeValue | Time | The current time value. |
value | DateValue | The current field value. |
dateValue | Date | The current value, converted to a native JavaScript Date object. |
calendar | Calendar | The calendar system currently in use. |
segments | DateSegment[] | A list of segments for the current value. |
dateFormatter | DateFormatter | A date formatter configured for the current locale and format. |
isInvalid | boolean | Whether the date field is invalid, based on the isInvalid , minValue , and maxValue props. |
granularity | Granularity | The granularity for the field, based on the granularity prop and current value. |
maxGranularity | 'year'
| 'month'
| Granularity | The maximum date or time unit that is displayed in the field. |
isDisabled | boolean | Whether the field is disabled. |
isReadOnly | boolean | Whether the field is read only. |
isRequired | boolean | Whether the field is required. |
Methods
Method | Description |
setValue(
(value: DateValue
)): void | Sets the field's value. |
increment(
(type: SegmentType
)): void | Increments the given segment. Upon reaching the minimum or maximum value, the value wraps around to the opposite limit. |
decrement(
(type: SegmentType
)): void | Decrements the given segment. Upon reaching the minimum or maximum value, the value wraps around to the opposite limit. |
incrementPage(
(type: SegmentType
)): void | Increments the given segment by a larger amount, rounding it to the nearest increment. The amount to increment by depends on the field, for example 15 minutes, 7 days, and 5 years. Upon reaching the minimum or maximum value, the value wraps around to the opposite limit. |
decrementPage(
(type: SegmentType
)): void | Decrements the given segment by a larger amount, rounding it to the nearest increment. The amount to decrement by depends on the field, for example 15 minutes, 7 days, and 5 years. Upon reaching the minimum or maximum value, the value wraps around to the opposite limit. |
setSegment(
(type: SegmentType,
, value: number
)): void | Sets the value of the given segment. |
confirmPlaceholder(): void | Updates the remaining unfilled segments with the placeholder value. |
clearSegment(
(type: SegmentType
)): void | Clears the value of the given segment, reverting it to the placeholder. |
formatValue(
(fieldOptions: FieldOptions
)): string | Formats the current date value using the given options. |
Example#
See the docs for useTimeField in react-aria for an example of useTimeFieldState
.