react-day-picker
Version:
Customizable Date Picker for React
94 lines • 3.35 kB
JavaScript
import { DayFlag, SelectionState } from "./UI.js";
import { dateMatchModifiers } from "./utils/dateMatchModifiers.js";
/**
* Return a function to get the modifiers for a given day.
*
* @private
*/
export function useGetModifiers(days, props, dateLib) {
const { disabled, hidden, modifiers, showOutsideDays, today } = props;
const { isSameDay, isSameMonth, Date } = dateLib;
const internal = {
[ ]: [],
[ ]: [],
[ ]: [],
[ ]: [],
[ ]: []
};
const custom = {};
const selection = {
[ ]: [],
[ ]: [],
[ ]: [],
[ ]: []
};
for (const day of days) {
const { date, displayMonth } = day;
const isOutside = Boolean(displayMonth && !isSameMonth(date, displayMonth));
const isDisabled = Boolean(disabled && dateMatchModifiers(date, disabled, dateLib));
const isHidden = Boolean(hidden && dateMatchModifiers(date, hidden, dateLib)) ||
(!showOutsideDays && isOutside);
const isToday = isSameDay(date, today ?? new Date());
if (isOutside)
internal.outside.push(day);
if (isDisabled)
internal.disabled.push(day);
if (isHidden)
internal.hidden.push(day);
if (isToday)
internal.today.push(day);
// Add custom modifiers
if (modifiers) {
Object.keys(modifiers).forEach((name) => {
const modifierValue = modifiers?.[name];
const isMatch = modifierValue
? dateMatchModifiers(date, modifierValue, dateLib)
: false;
if (!isMatch)
return;
if (custom[name]) {
custom[name].push(day);
}
else {
custom[name] = [day];
}
});
}
}
return (day) => {
// Initialize all the modifiers to false
const dayFlags = {
[ ]: false,
[ ]: false,
[ ]: false,
[ ]: false,
[ ]: false
};
const selectionStates = {
[ ]: false,
[ ]: false,
[ ]: false,
[ ]: false
};
const customModifiers = {};
// Find the modifiers for the given day
for (const name in internal) {
const days = internal[name];
dayFlags[name] = days.some((d) => d === day);
}
for (const name in selection) {
const days = selection[name];
selectionStates[name] = days.some((d) => d === day);
}
for (const name in custom) {
customModifiers[name] = custom[name].some((d) => d === day);
}
return {
...selectionStates,
...dayFlags,
// custom modifiers should override all the previous ones
...customModifiers
};
};
}
//# sourceMappingURL=useGetModifiers.js.map