import React, { useEffect, useState } from 'react' import { useParams } from 'react-router-dom' import { useTranslation } from 'react-i18next' import { motion, AnimatePresence } from 'framer-motion' import { api } from '../__data__/api/api' import { formatDate } from '../utils/dayjs-config' import { Alert, AlertIcon, Box, Center, Container, Spinner, Text, Heading, Badge, Flex, useColorMode, } from '@chakra-ui/react' import { UserCard } from '../components/user-card' import { StudentListView } from './style' const UserPage = () => { const { lessonId, accessId } = useParams() const { t } = useTranslation() const { colorMode } = useColorMode() const acc = api.useGetAccessQuery({ accessCode: accessId }) const [animatedStudents, setAnimatedStudents] = useState([]) const ls = api.useLessonByIdQuery(lessonId, { pollingInterval: 1000, skipPollingIfUnfocused: true, }) // Эффект для поэтапного появления карточек студентов useEffect(() => { if (ls.data?.body?.students?.length) { // Сначала очищаем список setAnimatedStudents([]) // Затем постепенно добавляем студентов для красивой анимации const students = [...ls.data.body.students] const addStudentWithDelay = (index) => { if (index < students.length) { setAnimatedStudents(prev => [...prev, {...students[index], isNew: true}]) // Для следующего студента setTimeout(() => { addStudentWithDelay(index + 1) }, 100) // Уменьшенная задержка для более плавной анимации } } // Запускаем процесс добавления с небольшой задержкой для лучшего UX setTimeout(() => { addStudentWithDelay(0) }, 300) } }, [ls.data?.body?.students]) // Эффект для сброса флага "новизны" студентов useEffect(() => { if (animatedStudents.length > 0) { const timeoutId = setTimeout(() => { setAnimatedStudents(students => students.map(student => ({...student, isNew: false})) ) }, 2000) return () => clearTimeout(timeoutId) } }, [animatedStudents]) if (acc.isLoading) { return ( ) } return ( {acc.isLoading && ( {t('journal.pl.common.sending')} )} {acc.isSuccess && ( {t('journal.pl.common.success')} )} {acc.error && ( {(acc as any).error?.data?.body?.errorMessage === 'Code is expired' ? ( t('journal.pl.access.expiredCode') ) : ( {JSON.stringify(acc.error, null, 4)} )} )} {t('journal.pl.lesson.topicTitle')} {ls.data?.body?.name} {formatDate(ls.data?.body?.date, t('journal.pl.lesson.dateFormat'))} {t('journal.pl.common.people')}: {animatedStudents.length} {animatedStudents.length > 0 ? ( {animatedStudents.map((student) => ( ))} ) : ( ls.data && ( {t('journal.pl.lesson.noStudents')} {t('journal.pl.lesson.waitForStudents')} ) )} ) } export default UserPage
{JSON.stringify(acc.error, null, 4)}