import React, { useEffect, useRef, useState } from 'react' import { formatDate } from '../../../utils/dayjs-config' import { Link } from 'react-router-dom' import { getNavigationValue, getFeatures } from '@brojs/cli' import { Button, Tr, Td, Menu, MenuButton, MenuItem, MenuList, useToast, Flex, Text, useColorMode, Box, Image, } from '@chakra-ui/react' import { EditIcon } from '@chakra-ui/icons' import { useTranslation } from 'react-i18next' import { qrCode } from '../../../assets' import { LessonForm } from './lessons-form' import { api } from '../../../__data__/api/api' const features = getFeatures('journal') const groupByDate = features?.['group.by.date'] type ItemProps = { id: string date: string name: string isTeacher: boolean courseId: string setlessonToDelete(): void setEditLesson?: () => void students: unknown[] isMobile?: boolean } export const Item: React.FC = ({ id, date, name, isTeacher, courseId, setlessonToDelete, setEditLesson, students, isMobile = false, }) => { const [edit, setEdit] = useState(false) const toastRef = useRef(null) const toast = useToast() const [updateLesson, updateLessonRqst] = api.useUpdateLessonMutation() const createdLessonRef = useRef(null) const { t } = useTranslation() const { colorMode } = useColorMode() // QR-код с применением фильтра инверсии для тёмной темы const QRCodeImage = () => ( QR код ) const onSubmit = (lessonData) => { toastRef.current = toast({ title: t('journal.pl.common.sending'), status: 'loading', duration: 9000, }) createdLessonRef.current = lessonData if (navigator.onLine) { updateLesson(lessonData) } else { toast.update(toastRef.current, { title: t('journal.pl.lesson.noInternet'), status: 'error', duration: 3000 }) } } useEffect(() => { if (updateLessonRqst.isSuccess) { const toastProps = { title: t('journal.pl.lesson.updated'), description: t('journal.pl.lesson.updateMessage', { name: createdLessonRef.current?.name }), status: 'success' as const, duration: 9000, isClosable: true, } if (toastRef.current) toast.update(toastRef.current, toastProps) else toast(toastProps) setEdit(false) } }, [updateLessonRqst.isSuccess]) if (edit && isTeacher) { return ( { setEdit(false) }} lesson={{ _id: id, id, name, date }} title={t('journal.pl.lesson.editTitle')} nameButton={t('journal.pl.save')} /> ) } if (isMobile) { return ( <> {name} {formatDate(date, groupByDate ? 'HH:mm' : 'HH:mm DD.MM.YY')} {isTeacher && ( )} {t('journal.pl.common.marked')}: {students.length} {isTeacher && !edit && ( { if (setEditLesson) { setEditLesson(); } else { setEdit(true); } }} > {t('journal.pl.edit')} {t('journal.pl.delete')} )} {edit && } ) } // Стандартное отображение return ( {isTeacher && ( )} {formatDate(date, groupByDate ? 'HH:mm' : 'HH:mm DD.MM.YY')} {name} {isTeacher && ( {!edit && ( { if (setEditLesson) { setEditLesson(); } else { setEdit(true); } }} > {t('journal.pl.edit')} {t('journal.pl.delete')} )} {edit && } )} {students.length} ) }