diff --git a/src/pages/lesson-details.tsx b/src/pages/lesson-details.tsx index 703c896..37700ab 100644 --- a/src/pages/lesson-details.tsx +++ b/src/pages/lesson-details.tsx @@ -11,6 +11,7 @@ import { Heading, Stack, useColorMode, + Flex, } from '@chakra-ui/react' import { useTranslation } from 'react-i18next' @@ -202,7 +203,8 @@ const LessonDetail = () => { } } - return allStudents.sort((a, b) => (a.present ? -1 : 1)) + // Removing the sorting to prevent reordering animation + return allStudents }, [accessCode?.body, AllStudents.data, prevPresentStudentsRef.current]) // Функция для определения цвета на основе посещаемости @@ -298,35 +300,82 @@ const LessonDetail = () => { {studentsArr.map((student) => ( - manualAdd({ lessonId, user })} - /> + {/* Front side - visible when present */} + + + manualAdd({ lessonId, user })} + /> + + + {/* Back side - visible when not present */} + + + + {student.name || student.lastName} + + + {t('journal.pl.lesson.notMarked')} + + + + ))}