import React, { useCallback, useEffect, useRef, useState } from 'react' import dayjs from 'dayjs' import { Link as ConnectedLink } from 'react-router-dom' import { getNavigationsValue } from '@ijl/cli' import { Box, CardHeader, CardBody, CardFooter, ButtonGroup, Stack, StackDivider, Button, Card, Heading, Tooltip, Spinner, Container, VStack, Link, Input, CloseButton, FormControl, FormLabel, FormHelperText, Center, FormErrorMessage, useToast, } from '@chakra-ui/react' import { useForm, Controller } from 'react-hook-form' import { ErrorSpan, MainWrapper } from './style' import { useAppSelector } from '../__data__/store' import { api } from '../__data__/api/api' import { isTeacher } from '../utils/user' import { AddIcon, ArrowDownIcon, ArrowUpIcon, LinkIcon } from '@chakra-ui/icons' interface NewCourseForm { startDt: string name: string } const CoursesList = () => { const toast = useToast() const user = useAppSelector((s) => s.user) const { data, isLoading } = api.useCoursesListQuery() const [createUpdateCourse, crucQuery] = api.useCreateUpdateCourseMutation() const [showForm, setShowForm] = useState(false) const [courseDetailsOpenedId, setCourseDetailsOpenedId] = useState< string | null >(null) const toastRef = useRef(null) const { control, handleSubmit, reset, formState: { errors }, getValues, } = useForm({ defaultValues: { startDt: '', name: '', }, }) const onSubmit = ({ startDt, name }) => { toastRef.current = toast({ title: 'Отправляем', status: 'loading', duration: 9000, }) createUpdateCourse({ name, startDt }) } useEffect(() => { if (crucQuery.isSuccess) { const values = getValues() if (toastRef.current) { toast.update(toastRef.current, { title: 'Курс создан.', description: `Курс ${values.name} успешно создан`, status: 'success', duration: 9000, isClosable: true, }) } reset() } }, [crucQuery.isSuccess]) if (isLoading) { return (
) } return ( {isTeacher(user) && ( {showForm ? ( Создание курса setShowForm(false)} />
( Дата начала {errors.startDt ? ( {errors.startDt?.message} ) : ( Укажите дату начала курса )} )} /> ( Название новой лекции: {errors.name && ( {errors.name.message} )} )} /> {crucQuery?.error && ( {(crucQuery?.error as any).error} )}
) : ( )}
)} {data?.body?.map((c) => ( courseDetailsOpenedId === c._id ? setCourseDetailsOpenedId(null) : setCourseDetailsOpenedId(c._id) } /> ))}
) } const CourseCard = ({ course, isOpened, openDetails }) => { const [getLessonList, lessonList] = api.useLazyLessonListQuery() useEffect(() => { if (isOpened) { getLessonList(course._id, true) } }, [isOpened]) const user = useAppSelector((s) => s.user) return ( {course.name} {isOpened && ( } spacing="8px"> {`Дата начала курса - ${dayjs(course.startDt).format('DD MMMM YYYYг.')}`} Количество занятий - {course.lessons.length} {lessonList.isFetching ? ( ) : ( <> Список занятий: {lessonList.data?.body?.map((lesson) => ( {lesson.name} ))} )} )} ) } export default CoursesList