import React from 'react' import { VStack, HStack, Box, Text, Progress, Badge, Avatar, Tooltip, Flex } from '@chakra-ui/react' import { useTranslation } from 'react-i18next' import { StarIcon } from '@chakra-ui/icons' import { StudentAttendance } from './useStats' interface StudentAttendanceListProps { students: StudentAttendance[] title: string } export const StudentAttendanceList: React.FC = ({ students, title }) => { const { t } = useTranslation() // Определяем цвет для прогресса в зависимости от значения const getProgressColor = (value: number) => { if (value > 80) return 'green' if (value > 50) return 'blue' if (value > 30) return 'yellow' return 'red' } if (!students?.length) { return ( {t('journal.pl.overview.noAttendanceData')} ) } return ( {title} {t('journal.pl.overview.pastLessonsStats')} {students.map((student, index) => ( {student.name} {student.attended}/{student.total} {Math.round(student.percent)}% ))} {t('journal.pl.overview.attendanceHelp')} ) }