packages/react-aria-components/docs/DateRangePicker.mdx
{/* Copyright 2020 Adobe. All rights reserved. This file is licensed to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */}
import {Layout} from '@react-spectrum/docs'; export default Layout;
import docs from 'docs:react-aria-components'; import i18nDocs from 'docs:@internationalized/date'; import statelyDocs from 'docs:@react-stately/datepicker'; import {PropTable, HeaderInfo, TypeLink, PageDescription, StateTable, ContextTable} from '@react-spectrum/docs'; import styles from '@react-spectrum/docs/src/docs.css'; import packageData from 'react-aria-components/package.json'; import Anatomy from '/packages/react-aria/docs/datepicker/daterangepicker-anatomy.svg'; import ChevronRight from '@spectrum-icons/workflow/ChevronRight'; import {Divider} from '@react-spectrum/divider'; import {ExampleCard} from '@react-spectrum/docs/src/ExampleCard'; import Button from '@react-spectrum/docs/pages/assets/component-illustrations/ActionButton.svg'; import Label from '@react-spectrum/docs/pages/assets/component-illustrations/Label.svg'; import Popover from '@react-spectrum/docs/pages/assets/component-illustrations/Popover.svg'; import DateField from '@react-spectrum/docs/pages/assets/component-illustrations/DateField.svg'; import RangeCalendar from '@react-spectrum/docs/pages/assets/component-illustrations/RangeCalendar.svg'; import Dialog from '@react-spectrum/docs/pages/assets/component-illustrations/Dialog.svg'; import Form from '@react-spectrum/docs/pages/assets/component-illustrations/Form.svg'; import InternationalizedDate from '@react-spectrum/docs/pages/assets/component-illustrations/InternationalizedDate.svg'; import {StarterKits} from '@react-spectrum/docs/src/StarterKits';
<PageDescription>{docs.exports.DateRangePicker.description}</PageDescription>
<HeaderInfo packageData={packageData} componentNames={['DateRangePicker']} />
import {DateRangePicker, Label, Group, Popover, Dialog, RangeCalendar, CalendarGrid, CalendarCell, Button, Heading, DateInput, DateSegment} from 'react-aria-components';
import {ChevronDown, ChevronLeft, ChevronRight} from 'lucide-react';
<DateRangePicker>
<Label>Trip dates</Label>
<Group>
<DateInput slot="start">
{segment => <DateSegment segment={segment} />}
</DateInput>
<span aria-hidden="true">–</span>
<DateInput slot="end">
{segment => <DateSegment segment={segment} />}
</DateInput>
<Button><ChevronDown size={20} /></Button>
</Group>
<Popover>
<Dialog>
<RangeCalendar>
<header>
<Button slot="previous"><ChevronLeft size={20} /></Button>
<Heading />
<Button slot="next"><ChevronRight size={20} /></Button>
</header>
<CalendarGrid>
{date => <CalendarCell date={date} />}
</CalendarGrid>
</RangeCalendar>
</Dialog>
</Popover>
</DateRangePicker>
@import "@react-aria/example-theme";
.react-aria-DateRangePicker {
color: var(--text-color);
.react-aria-Group {
display: flex;
align-items: center;
width: fit-content;
min-width: 220px;
max-width: 100%;
box-sizing: border-box;
overflow: auto;
position: relative;
padding: 4px 4px 4px 8px;
border: 1px solid var(--border-color);
border-radius: 6px;
background: var(--field-background);
white-space: nowrap;
&[data-pressed] {
box-shadow: none;
background: var(--highlight-background);
}
&[data-focus-within] {
outline: 2px solid var(--focus-ring-color);
outline-offset: -1px;
}
}
[slot=start] + span {
padding: 0 4px;
}
[slot=end] {
margin-right: 2rem;
flex: 1;
}
.react-aria-Button {
background: var(--highlight-background);
color: var(--highlight-foreground);
border: 2px solid var(--field-background);
forced-color-adjust: none;
border-radius: 4px;
border: none;
margin-left: auto;
width: 1.429rem;
height: 1.429rem;
padding: 0;
font-size: 0.857rem;
box-sizing: content-box;
flex-shrink: 0;
position: sticky;
right: 0;
&[data-focus-visible] {
outline: 2px solid var(--focus-ring-color);
outline-offset: 2px;
}
}
.react-aria-DateInput {
width: unset;
min-width: unset;
padding: unset;
border: unset;
outline: unset;
}
}
.react-aria-Popover[data-trigger=DateRangePicker] {
max-width: unset;
}
A date range picker can be built using two separate <input type="date"> elements, but this is very limited in functionality, lacking in internationalization capabilities, inconsistent between browsers, and difficult to style. DateRangePicker helps achieve accessible and international date and time range pickers that can be styled as needed.
Read our blog post for more details about the internationalization, accessibility, and user experience features implemented by DateRangePicker.
A date range picker consists of a label, and group containing two date fields and a button. Clicking the button opens a popup containing a range calendar. The date fields include segments representing each unit of a date and time (e.g. years, months, days, etc.), each of which is individually focusable and editable using the keyboard. The calendar popup offers a more visual way of choosing a date range.
DateRangePicker also supports optional description and error message elements, which can be used to provide more context about the field, and any validation messages. These are linked with the input via the aria-describedby attribute.
import {DateRangePicker, Label, Group, Popover, Dialog, RangeCalendar, CalendarGrid, CalendarGridHeader, CalendarHeaderCell, CalendarGridBody, CalendarCell, Button, Heading, DateInput, DateSegment, Text, FieldError} from 'react-aria-components';
<DateRangePicker>
<Label />
<Group>
<DateInput slot="start">
{segment => <DateSegment segment={segment} />}
</DateInput>
<DateInput slot="end">
{segment => <DateSegment segment={segment} />}
</DateInput>
<Button />
</Group>
<Text slot="description" />
<FieldError />
<Popover>
<Dialog>
<RangeCalendar>
<Button slot="previous" />
<Heading />
<Button slot="next" />
<CalendarGrid>
<CalendarGridHeader>
{day => <CalendarHeaderCell />}
</CalendarGridHeader>
<CalendarGridBody>
{date => <CalendarCell date={date} />}
</CalendarGridBody>
</CalendarGrid>
<Text slot="errorMessage" />
</RangeCalendar>
</Dialog>
</Popover>
</DateRangePicker>
If the date range picker does not have a visible label, an aria-label or aria-labelledby prop must be passed instead to identify it to assistive technology.
Note that most of this anatomy is shared with DatePicker, so you can reuse many components between them if you have both.
To ensure the proper date and time format in RTL locales, DateInput must have display set to either inline, inline-block, or block.
DateRangePicker makes use of the following concepts:
<ExampleCard url="../internationalized/date/index.html" title="@internationalized/date" description="Represent and manipulate dates and times in a locale-aware manner."> <InternationalizedDate /> </ExampleCard>
<ExampleCard url="forms.html" title="Forms" description="Validating and submitting form data, and integrating with form libraries.">
<Form /> </ExampleCard> </section>A DateRangePicker uses the following components, which may also be used standalone or reused in other components.
<ExampleCard url="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label" title="Label" description="A label provides context for an input element."> <Label /> </ExampleCard>
<ExampleCard url="DateField.html" title="DateField" description="A date field allows a user to enter and edit date values using a keyboard."> <DateField /> </ExampleCard>
<ExampleCard url="Button.html" title="Button" description="A button allows a user to perform an action."> <Button /> </ExampleCard>
<ExampleCard url="Popover.html" title="Popover" description="A popover displays content in context with a trigger element."> <Popover /> </ExampleCard>
<ExampleCard url="Dialog.html" title="Dialog" description="A dialog is an overlay shown above other content in an application.">
<Dialog /> </ExampleCard><ExampleCard url="RangeCalendar.html" title="RangeCalendar" description="A range calendar allows a user to select a contiguous range of dates."> <RangeCalendar /> </ExampleCard>
</section>To help kick-start your project, we offer starter kits that include example implementations of all React Aria components with various styling solutions. All components are fully styled, including support for dark mode, high contrast mode, and all UI states. Each starter comes with a pre-configured Storybook that you can experiment with, or use as a starting point for your own component library.
<StarterKits component="daterangepicker" />If you will use a DateRangePicker in multiple places in your app, you can wrap all of the pieces into a reusable component. This way, the DOM structure, styling code, and other logic are defined in a single place and reused everywhere to ensure consistency.
This example wraps DateRangePicker and all of its children together into a single component which accepts a label prop, which is passed to the right place. It also shows how to use the description slot to render help text, and FieldError component to render validation errors.
import type {DateRangePickerProps, DateValue, ValidationResult} from 'react-aria-components';
import {Text, FieldError} from 'react-aria-components';
interface MyDateRangePickerProps<T extends DateValue> extends DateRangePickerProps<T> {
label?: string,
description?: string,
errorMessage?: string | ((validation: ValidationResult) => string)
}
function MyDateRangePicker<T extends DateValue>({label, description, errorMessage, firstDayOfWeek, ...props}: MyDateRangePickerProps<T>) {
return (
<DateRangePicker {...props}>
<Label>{label}</Label>
<Group>
<DateInput slot="start">
{segment => <DateSegment segment={segment} />}
</DateInput>
<span aria-hidden="true">–</span>
<DateInput slot="end">
{segment => <DateSegment segment={segment} />}
</DateInput>
<Button><ChevronDown size={20} /></Button>
</Group>
{description && <Text slot="description">{description}</Text>}
<FieldError>{errorMessage}</FieldError>
<Popover>
<Dialog>
<RangeCalendar firstDayOfWeek={firstDayOfWeek}>
<header>
<Button slot="previous"><ChevronLeft size={20} /></Button>
<Heading />
<Button slot="next"><ChevronRight size={20} /></Button>
</header>
<CalendarGrid>
{date => <CalendarCell date={date} />}
</CalendarGrid>
</RangeCalendar>
</Dialog>
</Popover>
</DateRangePicker>
);
}
<MyDateRangePicker label="Event date" />
A DateRangePicker displays a placeholder by default. An initial, uncontrolled value can be provided to the DateRangePicker using the defaultValue prop. Alternatively, a controlled value can be provided using the value prop.
Date ranges are objects with start and end properties containing date values, which are provided using objects in the @internationalized/date package. This library handles correct international date manipulation across calendars, time zones, and other localization concerns. DateRangePicker supports values of the following types:
ZonedDateTime.import {parseDate} from '@internationalized/date';
function Example() {
let [value, setValue] = React.useState({
start: parseDate('2020-02-03'),
end: parseDate('2020-02-08')
});
return (
<>
<MyDateRangePicker
label="Date range (uncontrolled)"
defaultValue={{
start: parseDate('2020-02-03'),
end: parseDate('2020-02-08')
}} />
<MyDateRangePicker
label="Date range (controlled)"
value={value}
onChange={setValue} />
</>
);
}
DateRangePicker is time zone aware when <TypeLink links={i18nDocs.links} type={i18nDocs.exports.ZonedDateTime} /> objects are provided as the value. In this case, the time zone abbreviation is displayed, and time zone concerns such as daylight saving time are taken into account when the value is manipulated.
In most cases, your data will come from and be sent to a server as an ISO 8601 formatted string. @internationalized/date includes functions for parsing strings in multiple formats into <TypeLink links={i18nDocs.links} type={i18nDocs.exports.ZonedDateTime} /> objects. Which format you use will depend on what information you need to store.
"2021-11-07T00:45[America/Los_Angeles]" or "2021-11-07T00:45-07:00[America/Los_Angeles]"). This format preserves the maximum amount of information. If the exact local time and time zone that a user selected is important, use this format. Storing the time zone and offset that was selected rather than converting to UTC ensures that the local time is correct regardless of daylight saving rule changes (e.g. if a locale abolishes DST). Examples where this applies include calendar events, reminders, and other times that occur in a particular location."2021-11-07T07:45:00Z"), or stored with a particular offset (e.g. "2021-11-07T07:45:00-07:00"). A time zone identifier, e.g. America/Los_Angeles, must be passed, and the result will be converted into that time zone. Absolute times are the best way to represent events that occurred in the past, or future events where an exact time is needed, regardless of time zone.parseAbsolute, and accepts the same formats.import {parseZonedDateTime} from '@internationalized/date';
<MyDateRangePicker
label="Date range"
defaultValue={{
start: parseZonedDateTime('2022-11-07T00:45[America/Los_Angeles]'),
end: parseZonedDateTime('2022-11-08T11:15[America/Los_Angeles]')
}} />
DateRangePicker displays times in the time zone included in the ZonedDateTime object. The above example is always displayed in Pacific Standard Time because the America/Los_Angeles time zone identifier is provided. @internationalized/date includes functions for converting dates between time zones, or parsing a date directly into a specific time zone or the user's local time zone, as shown below.
import {parseAbsoluteToLocal} from '@internationalized/date';
<MyDateRangePicker
label="Date range"
defaultValue={{
start: parseAbsoluteToLocal('2021-11-07T07:45:00Z'),
end: parseAbsoluteToLocal('2021-11-08T14:25:00Z')
}}
/>
The granularity prop allows you to control the smallest unit that is displayed by DateRangePicker. By default, CalendarDate values are displayed with "day" granularity (year, month, and day), and CalendarDateTime and ZonedDateTime values are displayed with "minute" granularity. More granular time values can be displayed by setting the granularity prop to "second".
In addition, when a value with a time is provided but you wish to only display the date, you can set the granularity to "day". This has no effect on the actual value (it still has a time component), only on what fields are displayed. In the following example, two DateRangePickers are synchronized with the same value, but display different granularities.
function Example() {
let [date, setDate] = React.useState({
start: parseAbsoluteToLocal('2021-04-07T18:45:22Z'),
end: parseAbsoluteToLocal('2021-04-08T20:00:00Z')
});
return (
<>
<MyDateRangePicker
label="Date and time range"
/*- begin highlight -*/
granularity="second"
/*- end highlight -*/
value={date}
onChange={setDate} />
<MyDateRangePicker
label="Date range"
/*- begin highlight -*/
granularity="day"
/*- end highlight -*/
value={date}
onChange={setDate} />
</>
);
}
If no value or defaultValue prop is passed, then the granularity prop also affects which type of value is emitted from the onChange event. Note that by default, time values will not have a time zone because none was supplied. You can override this by setting the placeholderValue prop explicitly. Values emitted from onChange will use the time zone of the placeholder value.
import {now} from '@internationalized/date';
<MyDateRangePicker
label="Date range"
granularity="second" />
<MyDateRangePicker
label="Date range"
placeholderValue={now('America/New_York')}
granularity="second" />
DateRangePicker supports selecting dates in many calendar systems used around the world, including Gregorian, Hebrew, Indian, Islamic, Buddhist, and more. Dates are automatically displayed in the appropriate calendar system for the user's locale. The calendar system can be overridden using the Unicode calendar locale extension, passed to the I18nProvider component.
Selected dates passed to onChange always use the same calendar system as the value or defaultValue prop. If no value or defaultValue is provided, then dates passed to onChange are always in the Gregorian calendar since this is the most commonly used. This means that even though the user selects dates in their local calendar system, applications are able to deal with dates from all users consistently.
The below example displays a DateRangePicker in the Hindi language, using the Indian calendar. Dates emitted from onChange are in the Gregorian calendar.
import type {DateRange} from 'react-aria-components';
import {I18nProvider} from '@react-aria/i18n';
function Example() {
let [range, setRange] = React.useState<DateRange | null>(null);
return (
/*- begin highlight -*/
<I18nProvider locale="hi-IN-u-ca-indian">
<MyDateRangePicker label="Date range" value={range} onChange={setRange} />
<p>Start date: {range?.start.toString()}</p>
<p>End date: {range?.end.toString()}</p>
</I18nProvider>
);
}
DateRangePicker supports the startName and endName props for integration with HTML forms. The values will be submitted to the server as ISO 8601 formatted strings according to the granularity of the value. For example, if the date range picker allows selecting only dates then strings such as "2023-02-03" will be submitted, and if it allows selecting times then strings such as "2023-02-03T08:45:00" will be submitted. See the Value section above for more details about the supported value types.
<MyDateRangePicker label="Trip dates" startName="startDate" endName="endDate" />
DateRangePicker accepts an onChange prop which is triggered whenever the start or end date is edited by the user. The example below uses onChange to update a separate element with a formatted version of the date range in the user's locale and local time zone. This is done by converting the dates to native JavaScript Date objects to pass to the formatter.
import {getLocalTimeZone} from '@internationalized/date';
import {useDateFormatter} from '@react-aria/i18n';
function Example() {
let [range, setRange] = React.useState({
start: parseDate('2020-07-03'),
end: parseDate('2020-07-10')
});
let formatter = useDateFormatter({dateStyle: 'long'});
return (
<>
<MyDateRangePicker label="Date range" value={range} onChange={setRange} />
<p>Selected date: {range ? formatter.formatRange(range.start.toDate(getLocalTimeZone()), range.end.toDate(getLocalTimeZone())) : '--'}</p>
</>
);
}
DateRangePicker supports the isRequired prop to ensure the user enters a value, as well as minimum and maximum values, and custom client and server-side validation. It can also be integrated with other form libraries. See the Forms guide to learn more.
To display validation errors, add a <FieldError> element as a child of the DateRangePicker. This allows you to render error messages from all of the above sources with consistent custom styles.
import {Form, FieldError} from 'react-aria-components';
<Form>
<DateRangePicker startName="startDate" endName="endDate" isRequired>
<Label>Trip dates</Label>
<Group>
<DateInput slot="start">
{segment => <DateSegment segment={segment} />}
</DateInput>
<span aria-hidden="true">–</span>
<DateInput slot="end">
{segment => <DateSegment segment={segment} />}
</DateInput>
<Button><ChevronDown size={20} /></Button>
</Group>
<FieldError />
<Popover>
<Dialog>
<RangeCalendar>
<header>
<Button slot="previous"><ChevronLeft size={20} /></Button>
<Heading />
<Button slot="next"><ChevronRight size={20} /></Button>
</header>
<CalendarGrid>
{date => <CalendarCell date={date} />}
</CalendarGrid>
</RangeCalendar>
</Dialog>
</Popover>
</DateRangePicker>
<Button type="submit">Submit</Button>
</Form>
.react-aria-DateRangePicker {
&[data-invalid] {
[slot=end]:after {
content: '🚫' / '';
content: '🚫';
alt: ' ';
flex: 1;
text-align: end;
margin-left: 1.5rem;
margin-right: -1.5rem;
}
}
.react-aria-FieldError {
font-size: 12px;
color: var(--invalid-color);
}
}
By default, FieldError displays default validation messages provided by the browser. See Customizing error messages in the Forms guide to learn how to provide your own custom errors.
The minValue and maxValue props can also be used to ensure the value is within a specific range. DateRangePicker also validates that the end date is after the start date. This example only accepts dates after today.
import {today} from '@internationalized/date';
<Form>
<MyDateRangePicker
label="Trip dates"
/*- begin highlight -*/
minValue={today(getLocalTimeZone())}
/*- end highlight -*/
defaultValue={{
start: parseDate('2022-02-03'),
end: parseDate('2022-05-03')
}} />
<Button type="submit">Submit</Button>
</Form>
The validate function can be used to perform custom validation logic. It receives the current date range, and should return a string or array of strings representing one or more error messages if the value is invalid.
This example validates that the selected date range is a maximum of 1 week in duration.
<Form>
<MyDateRangePicker
label="Trip dates"
/*- begin highlight -*/
validate={range => range?.end.compare(range.start) > 7 ? 'Maximum stay duration is 1 week.' : null}
/*- end highlight -*/
defaultValue={{
start: today(getLocalTimeZone()),
end: today(getLocalTimeZone()).add({ weeks: 1, days: 3 })
}} />
<Button type="submit">Submit</Button>
</Form>
DateRangePicker supports marking certain dates as unavailable. These dates remain focusable with the keyboard in the calendar so that navigation is consistent, but cannot be selected by the user. The isDateUnavailable prop accepts a callback that is called to evaluate whether each visible date is unavailable.
Note that by default, users may not select non-contiguous ranges, i.e. ranges that contain unavailable dates within them. Once a start date is selected in the calendar, enabled dates will be restricted to subsequent dates until an unavailable date is hit. While this is handled automatically in the calendar, additional validation logic must be provided to ensure an invalid state is displayed in the date field. This can be achieved using the validate prop. See below for an example of how to allow non-contiguous ranges.
This example includes multiple unavailable date ranges, e.g. dates when a rental house is not available. The minValue prop is also used to prevent selecting dates before today. The validate prop is used to mark selected date ranges with unavailable dates in the middle as invalid.
import {today} from '@internationalized/date';
function Example() {
let now = today(getLocalTimeZone());
let disabledRanges = [
[now, now.add({days: 5})],
[now.add({days: 14}), now.add({days: 16})],
[now.add({days: 23}), now.add({days: 24})],
];
return (
<MyDateRangePicker
label="Trip dates"
minValue={today(getLocalTimeZone())}
/*- begin highlight -*/
isDateUnavailable={date => disabledRanges.some((interval) => date.compare(interval[0]) >= 0 && date.compare(interval[1]) <= 0)}
validate={value => disabledRanges.some(interval => value && value.end.compare(interval[0]) >= 0 && value.start.compare(interval[1]) <= 0) ? 'Selected date range may not include unavailable dates.' : null}
/*- end highlight -*/
/>
);
}
The allowsNonContiguousRanges prop enables a range to be selected even if there are unavailable dates in the middle. The value emitted in the onChange event will still be a single range with a start and end property, but unavailable dates will not be displayed as selected. It is up to applications to split the full selected range into multiple as needed for business logic.
This example prevents selecting weekends, but allows selecting ranges that span multiple weeks.
import {isWeekend} from '@internationalized/date';
import {useLocale} from '@react-aria/i18n';
function Example() {
let {locale} = useLocale();
return (
<MyDateRangePicker
label="Time off request"
isDateUnavailable={date => isWeekend(date, locale)}
/*- begin highlight -*/
allowsNonContiguousRanges />
/*- end highlight -*/
);
}
The description slot can be used to associate additional help text with a date range picker.
<DateRangePicker>
<Label>Trip dates</Label>
<Group>
<DateInput slot="start">
{segment => <DateSegment segment={segment} />}
</DateInput>
<span aria-hidden="true">–</span>
<DateInput slot="end">
{segment => <DateSegment segment={segment} />}
</DateInput>
<Button><ChevronDown size={20} /></Button>
</Group>
<Text slot="description">Please your vacation dates.</Text>
<Popover>
<Dialog>
<RangeCalendar>
<header>
<Button slot="previous"><ChevronLeft size={20} /></Button>
<Heading />
<Button slot="next"><ChevronRight size={20} /></Button>
</header>
<CalendarGrid>
{date => <CalendarCell date={date} />}
</CalendarGrid>
</RangeCalendar>
</Dialog>
</Popover>
</DateRangePicker>
.react-aria-DateRangePicker {
[slot=description] {
font-size: 12px;
}
}
When no value is set, a placeholder is shown. The format of the placeholder is influenced by the granularity and placeholderValue props. placeholderValue also controls the default values of each segment when the user first interacts with them, e.g. using the up and down arrow keys, as well as the default month shown in the calendar popover. By default, the placeholderValue is the current date at midnight, but you can set it to a more appropriate value if needed.
import {CalendarDate} from '@internationalized/date';
<MyDateRangePicker label="Date range" placeholderValue={new CalendarDate(1980, 1, 1)} />
When ZonedDateTime objects are provided as the value of to DateRangePicker, the time zone abbreviation is displayed by default. However, if this is displayed elsewhere or implicit based on the usecase, it can be hidden using the hideTimeZone option.
<MyDateRangePicker
label="Date range"
defaultValue={{
start: parseZonedDateTime('2022-11-07T10:45[America/Los_Angeles]'),
end: parseZonedDateTime('2022-11-08T19:45[America/Los_Angeles]')
}}
hideTimeZone />
By default, DateRangePicker displays times in either 12 or 24 hour hour format depending on the user's locale. However, this can be overridden using the hourCycle prop if needed for a specific usecase. This example forces the DateRangePicker to use 24-hour time, regardless of the locale.
<MyDateRangePicker
label="Date range"
granularity="minute"
hourCycle={24} />
By default, the first day of the week is automatically set based on the current locale. This can be changed by setting the firstDayOfWeek prop to 'sun', 'mon', 'tue', 'wed', 'thu', 'fri', or 'sat'.
<MyDateRangePicker label="Date range" firstDayOfWeek="mon" />
A <Label> accepts all HTML attributes.
A <Group> accepts all HTML attributes.
The <DateInput> component renders a group of date segments. It accepts a function as its children, which is called to render a <DateSegment> for each segment. The slot="start" and slot="end" props distinguish the two instances within a DateRangePicker.
The <DateSegment> component renders an individual segment.
A <Button> accepts its contents as children. Other props such as onPress and isDisabled will be set by the DateRangePicker or RangeCalendar.
A <FieldError> displays validation errors.
A <Popover> is an overlay to hold the <Calendar>, positioned relative to the <Group>. By default, it has a placement of bottom start within a <DateRangePicker>, but this and other positioning properties may be customized.
A <Dialog> is placed within a <Popover> to hold the <Calendar> for a DateRangePicker.
A <RangeCalendar> accepts one or more month grids as children, along with previous and next buttons to navigate forward and backward.
A <CalendarGrid> renders an individual month within a <RangeCalendar>. It accepts a function as its children, which is called to render a <CalendarCell> for each date. This renders a default <CalendarGridHeader>, which displays the weekday names in the column headers. This can be customized by providing a <CalendarGridHeader> and <CalendarGridBody> as children instead of a function.
A <CalendarGridHeader> renders the header within a <CalendarGrid>, displaying a list of weekday names. It accepts a function as its children, which is called with a day name abbreviation to render a <CalendarHeaderCell> for each column header.
A <CalendarHeaderCell> renders a column header within a <CalendarGridHeader>. It typically displays a weekday name.
A <CalendarGridBody> renders the body within a <CalendarGrid>. It accepts a function as its children, which is called to render a <CalendarCell> for each date.
A <CalendarCell> renders an individual date within a <CalendarGrid>.
React Aria components can be styled in many ways, including using CSS classes, inline styles, utility classes (e.g. Tailwind), CSS-in-JS (e.g. Styled Components), etc. By default, all components include a builtin className attribute which can be targeted using CSS selectors. These follow the react-aria-ComponentName naming convention.
.react-aria-DateRangePicker {
/* ... */
}
A custom className can also be specified on any component. This overrides the default className provided by React Aria with your own.
<DateInput className="my-date-input">
</DateInput>
In addition, some components support multiple UI states (e.g. focused, placeholder, readonly, etc.). React Aria components expose states using data attributes, which you can target in CSS selectors. For example:
.react-aria-DateSegment[data-placeholder] {
/* ... */
}
.react-aria-DateSegment[data-readonly] {
/* ... */
}
The className and style props also accept functions which receive states for styling. This lets you dynamically determine the classes or styles to apply, which is useful when using utility CSS libraries like Tailwind.
<DateSegment className={({isPlaceholder}) => isPlaceholder ? 'bg-gray-300' : 'bg-gray-600'} />
Render props may also be used as children to alter what elements are rendered based on the current state. For example, you could render the placeholder as a separate element to always reserve space for it.
<DateSegment>
{({text, placeholder, isPlaceholder}) => (
<>
<span style={{visibility: isPlaceholder ? 'visible' : 'hidden'}}>{placeholder}</span>
{isPlaceholder ? '' : text}
</>
)}
</DateSegment>
The states, selectors, and render props for each component used in a DateRangePicker are documented below.
A DateRangePicker can be targeted with the .react-aria-DateRangePicker CSS selector, or by overriding with a custom className. It supports the following states and render props:
A Label can be targeted with the .react-aria-Label CSS selector, or by overriding with a custom className.
A Group can be targeted with the .react-aria-Group selector, or by overriding with a custom className. It supports the following states:
A DateInput can be targeted with the .react-aria-DateInput CSS selector, or by overriding with a custom className. It supports the following states:
A DateSegment can be targeted with the .react-aria-DateSegment CSS selector, or by overriding with a custom className. It supports the following states and render props:
A Button can be targeted with the .react-aria-Button CSS selector, or by overriding with a custom className. The next and previous buttons within a range calendar can be targeted specifically with the [slot=previous] and [slot=next] selectors. Buttons support the following states:
A FieldError can be targeted with the .react-aria-FieldError CSS selector, or by overriding with a custom className. It supports the following render props:
The Popover component can be targeted with the .react-aria-Popover CSS selector, or by overriding with a custom className. Note that it renders in a React Portal, so it will not appear as a descendant of the DateRangePicker in the DOM. It supports the following states and render props:
Within a DateRangePicker, the popover will have the data-trigger="DateRangePicker" attribute, which can be used to define date range picker-specific styles. In addition, the --trigger-width CSS custom property will be set on the popover, which you can use to make the popover match the width of the input group.
.react-aria-Popover[data-trigger=DateRangePicker] {
width: var(--trigger-width);
}
A Dialog can be targeted with the .react-aria-Dialog CSS selector, or by overriding with a custom className.
A RangeCalendar can be targeted with the .react-aria-RangeCalendar CSS selector, or by overriding with a custom className.
A CalendarGrid can be targeted with the .react-aria-CalendarGrid CSS selector, or by overriding with a custom className. When a function is provided as children, a default <CalendarGridHeader> and <CalendarGridBody> are rendered. If you need to customize the styling of the header cells, you can render them yourself. See the RangeCalendar docs for an example.
A CalendarGridHeader can be targeted with the .react-aria-CalendarGridHeader CSS selector, or by overriding with a custom className.
A CalendarHeaderCell can be targeted with the .react-aria-CalendarHeaderCell CSS selector, or by overriding with a custom className.
A CalendarGridBody can be targeted with the .react-aria-CalendarGridBody CSS selector, or by overriding with a custom className.
A CalendarCell can be targeted with the .react-aria-CalendarCell CSS selector, or by overriding with a custom className. It supports the following states:
The help text elements within a DateRangePicker can be targeted with the [slot=description] and [slot=errorMessage] CSS selectors, or by adding a custom className.
If you need to customize one of the components within a DateRangePicker, such as Label or DateSegment, in many cases you can create a wrapper component. This lets you customize the props passed to the component.
function MyDateSegment(props) {
return <MyDateSegment {...props} className="my-date-segment" />
}
All React Aria Components export a corresponding context that can be used to send props to them from a parent element. This enables you to build your own compositional APIs similar to those found in React Aria Components itself. You can send any prop or ref via context that you could pass to the corresponding component. The local props and ref on the component are merged with the ones passed via context, with the local props taking precedence (following the rules documented in mergeProps).
<ContextTable components={['DateRangePicker']} docs={docs} />
This example shows a FieldGroup component that renders a group of date pickers with a title and optional error message. It uses the useId hook to generate a unique id for the error message. All of the child DateRangePickers are marked invalid and associated with the error message via the aria-describedby attribute passed to the DateRangePickerContext provider.
import {DateRangePickerContext} from 'react-aria-components';
import {useId} from 'react-aria';
interface FieldGroupProps {
title?: string,
children?: React.ReactNode,
errorMessage?: string
}
function FieldGroup({title, children, errorMessage}: FieldGroupProps) {
let errorId = useId();
return (
<fieldset>
<legend>{title}</legend>
<DateRangePickerContext.Provider value={{
isInvalid: !!errorMessage,
'aria-describedby': errorMessage ? errorId : undefined
}}>
{children}
</DateRangePickerContext.Provider>
{errorMessage && <small id={errorId} className="invalid">{errorMessage}</small>}
</fieldset>
);
}
<FieldGroup title="Dates" errorMessage="Ticket sale and event dates cannot overlap.">
<MyDateRangePicker label="Ticket sale dates" defaultValue={{start: parseDate('2023-07-12'), end: parseDate('2023-08-04')}} />
<MyDateRangePicker label="Event dates" defaultValue={{start: parseDate('2023-08-01'), end: parseDate('2023-08-10')}} />
</FieldGroup>
fieldset {
padding: 1.5em;
width: fit-content;
}
.invalid {
color: var(--invalid-color);
margin-top: 1em;
display: block;
}
DateRangePicker passes props to its child components, such as the label and popover, via their associated contexts. These contexts are exported so you can also consume them in your own custom components. This enables you to reuse existing components from your app or component library together with React Aria Components.
<ContextTable components={['Label', 'Group', 'Button', 'Popover', 'Dialog', 'RangeCalendar', 'Text']} docs={docs} />
This example consumes from LabelContext in an existing styled label component to make it compatible with React Aria Components. The <TypeLink links={docs.links} type={docs.exports.useContextProps} /> hook merges the local props and ref with the ones provided via context by DateRangePicker.
import type {LabelProps} from 'react-aria-components';
import {LabelContext, useContextProps} from 'react-aria-components';
const MyCustomLabel = React.forwardRef((props: LabelProps, ref: React.ForwardedRef<HTMLLabelElement>) => {
// Merge the local props and ref with the ones provided via context.
///- begin highlight -///
[props, ref] = useContextProps(props, ref, LabelContext);
///- end highlight -///
// ... your existing Label component
return <label {...props} ref={ref} />;
});
Now you can use MyCustomLabel within a DateRangePicker, in place of the builtin React Aria Components Label.
<DateRangePicker>
<MyCustomLabel>Name</MyCustomLabel>
</DateRangePicker>
DateRangePicker provides a <TypeLink links={statelyDocs.links} type={statelyDocs.exports.DateRangePickerState} /> object to its children via DateRangePickerStateContext. This can be used to access and manipulate the date range picker's state.
This example shows a DateRangePickerClearButton component that can be placed within a DateRangePicker to allow the user to clear the selected value.
import {DateRangePickerStateContext} from 'react-aria-components';
function DateRangePickerClearButton() {
/*- begin highlight -*/
let state = React.useContext(DateRangePickerStateContext)!;
/*- end highlight -*/
return (
<Button
// Don't inherit default Button behavior from DateRangePicker.
slot={null}
className="clear-button"
aria-label="Clear"
onPress={() => state.setValue(null)}>
✕
</Button>
);
}
<DateRangePicker defaultValue={{start: parseDate('2023-07-12'), end: parseDate('2023-08-04')}}>
<Label>Trip dates</Label>
<Group>
<DateInput slot="start">
{segment => <DateSegment segment={segment} />}
</DateInput>
<span aria-hidden="true">–</span>
<DateInput slot="end">
{segment => <DateSegment segment={segment} />}
</DateInput>
<DateRangePickerClearButton />
<Button><ChevronDown size={20} /></Button>
</Group>
<Popover>
<Dialog>
<RangeCalendar>
<header>
<Button slot="previous"><ChevronLeft size={20} /></Button>
<Heading />
<Button slot="next"><ChevronRight size={20} /></Button>
</header>
<CalendarGrid>
{date => <CalendarCell date={date} />}
</CalendarGrid>
</RangeCalendar>
</Dialog>
</Popover>
</DateRangePicker>
.clear-button {
width: 1.143rem;
height: 1.143rem;
border-radius: 1.143rem;
font-size: 0.857rem;
line-height: 0.857rem;
vertical-align: middle;
text-align: center;
background: gray;
color: white;
border: none;
padding: 0;
outline: none;
&[data-pressed] {
background: dimgray;
}
&[data-focus-visible] {
outline: 2px solid var(--focus-ring-color);
outline-offset: 2px;
}
+ .react-aria-Button {
margin-left: 4px;
}
}
If you need to customize things even further, such as accessing internal state, intercepting events, or customizing the DOM structure, you can drop down to the lower level Hook-based API. See useDateRangePicker for more details.