From ac87a2fc800ee436bfb7bf50c5f1c605b89740f3 Mon Sep 17 00:00:00 2001 From: primakov Date: Tue, 25 Mar 2025 09:34:27 +0300 Subject: [PATCH] Refactor LessonDetail component to enhance student attendance display with 3D flip animation. Removed sorting to prevent reordering animation and added conditional rendering for present and not present states using Flex and Box components. --- src/pages/lesson-details.tsx | 85 ++++++++++++++++++++++++++++-------- 1 file changed, 67 insertions(+), 18 deletions(-) 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')} + + + + ))}