ближайший получасовой слот при создании лекции

This commit is contained in:
Primakov Alexandr Alexandrovich 2025-03-12 17:30:01 +03:00
parent 8596d6500a
commit bfd3b98dca

View File

@ -45,6 +45,22 @@ export const LessonForm = ({
title,
nameButton,
}: LessonFormProps) => {
const getNearestTimeSlot = () => {
const now = new Date();
const minutes = now.getMinutes();
if (minutes < 30) {
// Округляем до начала текущего часа
now.setMinutes(0, 0, 0);
} else {
// Округляем до начала следующего часа
now.setHours(now.getHours() + 1);
now.setMinutes(0, 0, 0);
}
return dateToCalendarFormat(now.toISOString());
};
const {
control,
handleSubmit,
@ -56,7 +72,7 @@ export const LessonForm = ({
date: dateToCalendarFormat(lesson.date),
}) || {
name: '',
date: dateToCalendarFormat(),
date: getNearestTimeSlot(),
},
})