import React, { useEffect, useRef, useState } from 'react' import dayjs from 'dayjs' import { Box, CardHeader, CardBody, Button, Card, Heading, Container, VStack, Input, CloseButton, FormControl, FormLabel, FormHelperText, FormErrorMessage, useToast, } from '@chakra-ui/react' import { useForm, Controller } from 'react-hook-form' import { ErrorSpan } from '../style' import { useAppSelector } from '../../__data__/store' import { api } from '../../__data__/api/api' import { isTeacher } from '../../utils/user' import { AddIcon } from '@chakra-ui/icons' import { PageLoader } from '../../components/page-loader/page-loader' import { CourseCard } from './course-card' interface NewCourseForm { startDt: string name: string } export 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 toastRef = useRef(null) const { control, handleSubmit, reset, formState: { errors }, getValues, } = useForm({ defaultValues: { startDt: dayjs().format('YYYY-MM-DD'), 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) => ( ))}
) }