ближайший получасовой слот при создании лекции
This commit is contained in:
parent
8596d6500a
commit
bfd3b98dca
@ -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(),
|
||||
},
|
||||
})
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user