diff --git a/components/booking/date-picker.tsx b/components/booking/date-picker.tsx index 1b91e4c..ffb03be 100644 --- a/components/booking/date-picker.tsx +++ b/components/booking/date-picker.tsx @@ -18,8 +18,8 @@ export default function DatePicker({ selectedDate, onDateSelect, minDate, disabl end: endOfMonth(currentMonth) }) - const previousMonth = () => setCurrentMonth(subMonths(currentMonth, 1)) - const nextMonth = () => setCurrentMonth(addMonths(currentMonth, 1)) + const previousMonth = () => setCurrentMonth(subMonths(currentMonth,1)) + const nextMonth = () => setCurrentMonth(addMonths(currentMonth,1)) const isDateDisabled = (date: Date) => { if (minDate) { @@ -32,6 +32,112 @@ export default function DatePicker({ selectedDate, onDateSelect, minDate, disabl return selectedDate && isSameDay(date, selectedDate) } + // Calcular el offset del primer día del mes + // getDay() devuelve: 0=Domingo, 1=Lunes, 2=Martes, ..., 6=Sábado + // Para calendario que empieza en Lunes, necesitamos ajustar: + // Si getDay() = 0 (Domingo), offset = 6 + // Si getDay() = 1-6 (Lunes-Sábado), offset = getDay() - 1 + const firstDayOfMonth = startOfMonth(currentMonth) + const dayOfWeek = firstDayOfMonth.getDay() + const offset = dayOfWeek === 0 ? 6 : dayOfWeek - 1 + + // Crear array con celdas vacías al inicio para el padding + const paddingDays = Array.from({ length: offset }, (_, i) => ({ day: null, key: `padding-${i}` })) + + // Crear array de días con key único + const calendarDays = days.map((date, i) => ({ day: date, key: `day-${i}` })) + + // Combinar padding + días del mes + const allDays = [...paddingDays, ...calendarDays] + + return ( +
+
+ +

+ {format(currentMonth, 'MMMM yyyy', { locale: es })} +

+ +
+ +
+ {['L', 'M', 'X', 'J', 'V', 'S', 'D'].map((day, index) => ( +
+ {day} +
+ ))} +
+ +
+ {allDays.map(({ day, key }) => { + // Si es celda de padding (day es null) + if (!day) { + return ( +
+ ) + } + + const disabled = isDateDisabled(day) + const selected = isDateSelected(day) + const today = isToday(day) + const notCurrentMonth = !isSameMonth(day, currentMonth) + + return ( + + ) + })} +
+
+ ) +} + return false + } + + const isDateSelected = (date: Date) => { + return selectedDate && isSameDay(date, selectedDate) + } + return (