react-day-picker
Version:
Customizable Date Picker for React
29 lines (26 loc) • 891 B
text/typescript
import type { Locale } from "../lib/dateLib.js";
import { dateLib as defaultDateLib } from "../lib/index.js";
import type { DateLib } from "../types/index.js";
/**
* Generate a series of 7 days, starting from the week, to use for formatting
* the weekday names (Monday, Tuesday, etc.).
*/
export function getWeekdays(
locale?: Locale | undefined,
/** The index of the first day of the week (0 - Sunday). */
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | undefined,
/** Use ISOWeek instead of locale/ */
ISOWeek?: boolean | undefined,
/** @ignore */
dateLib: DateLib = defaultDateLib
): Date[] {
const start = ISOWeek
? dateLib.startOfISOWeek(new dateLib.Date())
: dateLib.startOfWeek(new dateLib.Date(), { locale, weekStartsOn });
const days = [];
for (let i = 0; i < 7; i++) {
const day = dateLib.addDays(start, i);
days.push(day);
}
return days;
}