useDateFieldState
Provides state management for a date field component. A date field allows users to enter and edit date and time values using a keyboard. Each part of a date value is displayed in an individually editable segment.
install | yarn add @react-stately/datepicker |
---|---|
version | 3.0.0-rc.0 |
usage | import {useDateFieldState} from '@react-stately/datepicker' |
API#
useDateFieldState(
(props: DateFieldStateOptions
)): DateFieldState
Interface#
Properties
Name | Type | Description |
value | DateValue | The current field value. |
dateValue | Date | The current value, converted to a native JavaScript Date object. |
segments | DateSegment[] | A list of segments for the current value. |
dateFormatter | DateFormatter | A date formatter configured for the current locale and format. |
validationState | ValidationState | The current validation state of the date field, based on the validationState , 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(
(type?: SegmentType
)): void | Replaces the value of the date field with the placeholder value. If a segment type is provided, only that segment is confirmed. Otherwise, all segments that have not been entered yet are confirmed. |
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 useDateField in react-aria for an example of useDateFieldState
.