import React, { useCallback, useMemo } from "react"; import type { ChangeEventHandler, MouseEvent, FocusEvent, KeyboardEvent } from "react"; import { UI, DayFlag, SelectionState } from "./UI.js"; import type { CalendarDay } from "./classes/CalendarDay.js"; import { getClassNamesForModifiers } from "./helpers/getClassNamesForModifiers.js"; import { getComponents } from "./helpers/getComponents.js"; import { getDataAttributes } from "./helpers/getDataAttributes.js"; import { getDateLib } from "./helpers/getDateLib.js"; import { getDefaultClassNames } from "./helpers/getDefaultClassNames.js"; import { getFormatters } from "./helpers/getFormatters.js"; import { getMonthOptions } from "./helpers/getMonthOptions.js"; import { getStyleForModifiers } from "./helpers/getStyleForModifiers.js"; import { getWeekdays } from "./helpers/getWeekdays.js"; import { getYearOptions } from "./helpers/getYearOptions.js"; import * as defaultLabels from "./labels/index.js"; import type { FormatOptions, LabelOptions } from "./lib/dateLib.js"; import { enUS } from "./lib/locales.js"; import type { DayPickerProps, Modifiers, MoveFocusBy, MoveFocusDir, SelectedValue, SelectHandler } from "./types/index.js"; import { useCalendar } from "./useCalendar.js"; import { type DayPickerContext, dayPickerContext } from "./useDayPicker.js"; import { useFocus } from "./useFocus.js"; import { useGetModifiers } from "./useGetModifiers.js"; import { useSelection } from "./useSelection.js"; import { rangeIncludesDate } from "./utils/rangeIncludesDate.js"; import { isDateRange } from "./utils/typeguards.js"; /** * Render the date picker calendar. * * @group DayPicker * @see https://daypicker.dev */ export function DayPicker(props: DayPickerProps) { const { components, formatters, labels, dateLib, locale, classNames } = useMemo( () => ({ dateLib: getDateLib(props.dateLib), components: getComponents(props.components), formatters: getFormatters(props.formatters), labels: { ...defaultLabels, ...props.labels }, locale: { ...enUS, ...props.locale }, classNames: { ...getDefaultClassNames(), ...props.classNames } }), [ props.classNames, props.components, props.dateLib, props.formatters, props.labels, props.locale ] ); const { captionLayout, firstWeekContainsDate, mode, onDayBlur, onDayClick, onDayFocus, onDayKeyDown, onDayMouseEnter, onDayMouseLeave, onNextClick, onPrevClick, showWeekNumber, styles, useAdditionalDayOfYearTokens, useAdditionalWeekYearTokens, weekStartsOn } = props; const formatOptions: FormatOptions = { locale, weekStartsOn, firstWeekContainsDate, useAdditionalWeekYearTokens, useAdditionalDayOfYearTokens }; const labelOptions: LabelOptions = formatOptions; const { formatCaption, formatDay, formatMonthDropdown, formatWeekNumber, formatWeekNumberHeader, formatWeekdayName, formatYearDropdown } = formatters; const calendar = useCalendar(props, dateLib); const { days, months, navStart, navEnd, previousMonth, nextMonth, goToMonth } = calendar; const getModifiers = useGetModifiers(days, props, dateLib); const { isSelected, select, selected: selectedValue } = useSelection(props, dateLib) ?? {}; const { blur, focused, isFocusTarget, moveFocus, setFocused } = useFocus( props, calendar, getModifiers, isSelected ?? (() => false), dateLib ); const { labelDayButton, labelGridcell, labelGrid, labelMonthDropdown, labelNav, labelNext, labelPrevious, labelWeekday, labelWeekNumber, labelWeekNumberHeader, labelYearDropdown } = labels; const weekdays = useMemo( () => getWeekdays(locale, props.weekStartsOn, props.ISOWeek, dateLib), [dateLib, locale, props.ISOWeek, props.weekStartsOn] ); const isInteractive = mode !== undefined || onDayClick !== undefined; const handlePreviousClick = useCallback(() => { if (!previousMonth) return; goToMonth(previousMonth); onPrevClick?.(previousMonth); }, [previousMonth, goToMonth, onPrevClick]); const handleNextClick = useCallback(() => { if (!nextMonth) return; goToMonth(nextMonth); onNextClick?.(nextMonth); }, [goToMonth, nextMonth, onNextClick]); const handleDayClick = useCallback( (day: CalendarDay, m: Modifiers) => (e: MouseEvent) => { e.preventDefault(); e.stopPropagation(); setFocused(day); select?.(day.date, m, e); onDayClick?.(day.date, m, e); }, [select, onDayClick, setFocused] ); const handleDayFocus = useCallback( (day: CalendarDay, m: Modifiers) => (e: FocusEvent) => { setFocused(day); onDayFocus?.(day.date, m, e); }, [onDayFocus, setFocused] ); const handleDayBlur = useCallback( (day: CalendarDay, m: Modifiers) => (e: FocusEvent) => { blur(); onDayBlur?.(day.date, m, e); }, [blur, onDayBlur] ); const handleDayKeyDown = useCallback( (day: CalendarDay, modifiers: Modifiers) => (e: KeyboardEvent) => { const keyMap: Record = { ArrowLeft: ["day", props.dir === "rtl" ? "after" : "before"], ArrowRight: ["day", props.dir === "rtl" ? "before" : "after"], ArrowDown: ["week", "after"], ArrowUp: ["week", "before"], PageUp: [e.shiftKey ? "year" : "month", "before"], PageDown: [e.shiftKey ? "year" : "month", "after"], Home: ["startOfWeek", "before"], End: ["endOfWeek", "after"] }; if (keyMap[e.key]) { e.preventDefault(); e.stopPropagation(); const [moveBy, moveDir] = keyMap[e.key]; moveFocus(moveBy, moveDir); } onDayKeyDown?.(day.date, modifiers, e); }, [moveFocus, onDayKeyDown, props.dir] ); const handleDayMouseEnter = useCallback( (day: CalendarDay, modifiers: Modifiers) => (e: MouseEvent) => { onDayMouseEnter?.(day.date, modifiers, e); }, [onDayMouseEnter] ); const handleDayMouseLeave = useCallback( (day: CalendarDay, modifiers: Modifiers) => (e: MouseEvent) => { onDayMouseLeave?.(day.date, modifiers, e); }, [onDayMouseLeave] ); const { className, style } = useMemo( () => ({ className: [classNames[UI.Root], props.className] .filter(Boolean) .join(" "), style: { ...styles?.[UI.Root], ...props.style } }), [classNames, props.className, props.style, styles] ); const dataAttributes = getDataAttributes(props); const contextValue: DayPickerContext = { selected: selectedValue as SelectedValue, select: select as SelectHandler, isSelected, months, nextMonth, previousMonth, goToMonth, getModifiers }; return ( {!props.hideNavigation && ( )} {months.map((calendarMonth, displayIndex) => { const handleMonthChange: ChangeEventHandler = ( e ) => { const selectedMonth = Number( (e.target as HTMLSelectElement).value ); const month = dateLib.setMonth( dateLib.startOfMonth(calendarMonth.date), selectedMonth ); goToMonth(month); }; const handleYearChange: ChangeEventHandler = ( e ) => { const month = dateLib.setYear( dateLib.startOfMonth(calendarMonth.date), Number(e.target.value) ); goToMonth(month); }; const dropdownMonths = getMonthOptions( calendarMonth.date, navStart, navEnd, formatters, locale, dateLib ); const dropdownYears = getYearOptions( months[0].date, navStart, navEnd, formatters, dateLib ); return ( {captionLayout?.startsWith("dropdown") ? ( {captionLayout === "dropdown" || captionLayout === "dropdown-months" ? ( ) : ( {formatMonthDropdown(calendarMonth.date.getMonth())} )} {captionLayout === "dropdown" || captionLayout === "dropdown-years" ? ( ) : ( {formatYearDropdown(calendarMonth.date.getFullYear())} )} ) : ( {formatCaption( calendarMonth.date, formatOptions, dateLib )} )} {!props.hideWeekdays && ( {showWeekNumber && ( {formatWeekNumberHeader()} )} {weekdays.map((weekday, i) => ( {formatWeekdayName(weekday, formatOptions, dateLib)} ))} )} {calendarMonth.weeks.map((week, weekIndex) => { return ( {showWeekNumber && ( {formatWeekNumber(week.weekNumber)} )} {week.days.map((day: CalendarDay) => { const { date } = day; const modifiers = getModifiers(day); modifiers[DayFlag.focused] = !modifiers.hidden && Boolean(focused?.isEqualTo(day)); modifiers[SelectionState.selected] = !modifiers.disabled && (isSelected?.(date) || modifiers.selected); if (isDateRange(selectedValue)) { // add range modifiers const { from, to } = selectedValue; modifiers[SelectionState.range_start] = Boolean( from && to && dateLib.isSameDay(date, from) ); modifiers[SelectionState.range_end] = Boolean( from && to && dateLib.isSameDay(date, to) ); modifiers[SelectionState.range_middle] = rangeIncludesDate( selectedValue, date, true, dateLib ); } const style = getStyleForModifiers( modifiers, styles, props.modifiersStyles ); const className = getClassNamesForModifiers( modifiers, classNames, props.modifiersClassNames ); const ariaLabel = !isInteractive ? labelGridcell( date, modifiers, labelOptions, dateLib ) : undefined; return ( {isInteractive ? ( {formatDay(date, formatOptions, dateLib)} ) : ( formatDay(day.date, formatOptions, dateLib) )} ); })} ); })} ); })} {props.footer && ( {props.footer} )} ); }