AbdulElahGwaith's picture
Upload folder using huggingface_hub
cf86710 verified
import type React from "react";
import type { DateLib } from "../classes/DateLib.js";
import { useControlledValue } from "../helpers/useControlledValue.js";
import type {
DayPickerProps,
Modifiers,
PropsMulti,
Selection,
} from "../types/index.js";
/**
* Hook to manage multiple-date selection in the DayPicker component.
*
* @template T - The type of DayPicker props.
* @param props - The DayPicker props.
* @param dateLib - The date utility library instance.
* @returns An object containing the selected dates, a function to select dates,
* and a function to check if a date is selected.
*/
export function useMulti<T extends DayPickerProps>(
props: T,
dateLib: DateLib,
): Selection<T> {
const {
selected: initiallySelected,
required,
onSelect,
} = props as PropsMulti;
const [internallySelected, setSelected] = useControlledValue(
initiallySelected,
onSelect ? initiallySelected : undefined,
);
const selected = !onSelect ? internallySelected : initiallySelected;
const { isSameDay } = dateLib;
const isSelected = (date: Date) => {
return selected?.some((d) => isSameDay(d, date)) ?? false;
};
const { min, max } = props as PropsMulti;
const select = (
triggerDate: Date,
modifiers: Modifiers,
e: React.MouseEvent | React.KeyboardEvent,
) => {
let newDates: Date[] | undefined = [...(selected ?? [])];
if (isSelected(triggerDate)) {
if (selected?.length === min) {
// Min value reached, do nothing
return;
}
if (required && selected?.length === 1) {
// Required value already selected do nothing
return;
}
newDates = selected?.filter((d) => !isSameDay(d, triggerDate));
} else {
if (selected?.length === max) {
// Max value reached, reset the selection to date
newDates = [triggerDate];
} else {
// Add the date to the selection
newDates = [...newDates, triggerDate];
}
}
if (!onSelect) {
setSelected(newDates);
}
onSelect?.(newDates, triggerDate, modifiers, e);
return newDates;
};
return {
selected,
select,
isSelected,
} as Selection<T>;
}