/* * 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 {CalendarBase} from './CalendarBase'; import {createCalendar} from '@internationalized/date'; import {createDOMRef} from '@react-spectrum/utils'; import {DateValue, SpectrumRangeCalendarProps} from '@react-types/calendar'; import {FocusableRef} from '@react-types/shared'; import React, {ReactElement, useImperativeHandle, useMemo, useRef} from 'react'; import {useLocale} from '@react-aria/i18n'; import {useProviderProps} from '@react-spectrum/provider'; import {useRangeCalendar} from '@react-aria/calendar'; import {useRangeCalendarState} from '@react-stately/calendar'; /** * RangeCalendars display a grid of days in one or more months and allow users to select a contiguous range of dates. */ export const RangeCalendar = React.forwardRef(function RangeCalendar(props: SpectrumRangeCalendarProps, ref: FocusableRef) { props = useProviderProps(props); let {visibleMonths = 1} = props; visibleMonths = Math.max(visibleMonths, 1); let visibleDuration = useMemo(() => ({months: visibleMonths}), [visibleMonths]); let {locale} = useLocale(); let state = useRangeCalendarState({ ...props, locale, visibleDuration, createCalendar: props.createCalendar || createCalendar }); let domRef = useRef(null); useImperativeHandle(ref, () => ({ ...createDOMRef(domRef), focus() { state.setFocused(true); } })); let {calendarProps, prevButtonProps, nextButtonProps, errorMessageProps} = useRangeCalendar(props, state, domRef); return ( ); }) as (props: SpectrumRangeCalendarProps & {ref?: FocusableRef}) => ReactElement;