ближайший получасовой слот при создании лекции
This commit is contained in:
parent
8596d6500a
commit
bfd3b98dca
@ -45,6 +45,22 @@ export const LessonForm = ({
|
|||||||
title,
|
title,
|
||||||
nameButton,
|
nameButton,
|
||||||
}: LessonFormProps) => {
|
}: 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 {
|
const {
|
||||||
control,
|
control,
|
||||||
handleSubmit,
|
handleSubmit,
|
||||||
@ -56,7 +72,7 @@ export const LessonForm = ({
|
|||||||
date: dateToCalendarFormat(lesson.date),
|
date: dateToCalendarFormat(lesson.date),
|
||||||
}) || {
|
}) || {
|
||||||
name: '',
|
name: '',
|
||||||
date: dateToCalendarFormat(),
|
date: getNearestTimeSlot(),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user