mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 05:07:10 +00:00
244 lines
8.5 KiB
TypeScript
244 lines
8.5 KiB
TypeScript
import { useState } from "react";
|
||
import { useParams, Link, useNavigate } from "react-router-dom";
|
||
import { Button } from "@/components/ui/button";
|
||
import { ArrowLeft, Clock, Trophy, BookOpen, AlertCircle, BarChart2 } from "lucide-react";
|
||
import ReactMarkdown from "react-markdown";
|
||
import { useQuery, useMutation } from "@tanstack/react-query";
|
||
import { getCompetition, startCompetition, getCompetitionResults } from "@/shared/api/competitions";
|
||
import { getCompetitionTasks } from "@/shared/api/session";
|
||
import { Loading } from "@/components/ui/loading";
|
||
import { CompetitionType } from "@/shared/types/competition";
|
||
import remarkMath from "remark-math";
|
||
import remarkGfm from "remark-gfm";
|
||
import rehypeKatex from "rehype-katex";
|
||
import { CompetitionResultsModal } from "./components/CompetitionResultModal";
|
||
|
||
const CompetitionPage = () => {
|
||
const { id } = useParams<{ id: string }>();
|
||
const navigate = useNavigate();
|
||
const competitionId = id || "";
|
||
const [isResultsModalOpen, setIsResultsModalOpen] = useState(false);
|
||
|
||
const competitionQuery = useQuery({
|
||
queryKey: ["competition", competitionId],
|
||
queryFn: () => getCompetition(competitionId),
|
||
enabled: !!competitionId,
|
||
});
|
||
|
||
const resultsQuery = useQuery({
|
||
queryKey: ["competitionResults", competitionId],
|
||
queryFn: () => getCompetitionResults(competitionId),
|
||
enabled: !!competitionId,
|
||
});
|
||
|
||
const startMutation = useMutation({
|
||
mutationFn: () => startCompetition(competitionId),
|
||
onSuccess: async () => {
|
||
try {
|
||
const tasks = await getCompetitionTasks(competitionId);
|
||
|
||
if (tasks && tasks.length > 0) {
|
||
const sortedTasks = [...tasks].sort((a, b) => {
|
||
return a.in_competition_position - b.in_competition_position;
|
||
});
|
||
navigate(`/competition/${competitionId}/tasks/${sortedTasks[0].id}`);
|
||
} else {
|
||
navigate(`/competition/${competitionId}/tasks`);
|
||
}
|
||
} catch (error) {
|
||
console.error("Failed to fetch tasks:", error);
|
||
navigate(`/competition/${competitionId}/tasks`);
|
||
}
|
||
},
|
||
onError: (error) => {
|
||
console.error("Failed to start competition:", error);
|
||
}
|
||
});
|
||
|
||
const formatDate = (date?: Date | string) => {
|
||
if (!date) return "";
|
||
|
||
const dateObj = typeof date === 'string' ? new Date(date) : date;
|
||
|
||
return dateObj.toLocaleString('ru-RU', {
|
||
day: '2-digit',
|
||
month: '2-digit',
|
||
year: 'numeric',
|
||
hour: '2-digit',
|
||
minute: '2-digit',
|
||
});
|
||
};
|
||
|
||
const handleStart = () => {
|
||
startMutation.mutate();
|
||
};
|
||
|
||
const hasResults = resultsQuery.data &&
|
||
resultsQuery.data.length > 0 &&
|
||
resultsQuery.data.some(result => result.result !== -2);
|
||
|
||
if (competitionQuery.isLoading) {
|
||
return <Loading />;
|
||
}
|
||
|
||
if (!competitionId || !competitionQuery.data) {
|
||
return <></>;
|
||
}
|
||
|
||
const competition = competitionQuery.data;
|
||
|
||
const isCompetitionNotStarted = () => {
|
||
if (!competition?.start_date) return false;
|
||
|
||
const startDate = new Date(competition.start_date);
|
||
const now = new Date();
|
||
|
||
return now < startDate;
|
||
};
|
||
|
||
const isCompetitionEnded = () => {
|
||
if (!competition?.end_date) return false;
|
||
|
||
const endDate = new Date(competition.end_date);
|
||
const now = new Date();
|
||
|
||
return now > endDate;
|
||
};
|
||
|
||
const competitionNotStarted = isCompetitionNotStarted();
|
||
const competitionEnded = isCompetitionEnded();
|
||
|
||
return (
|
||
<div className="flex flex-col gap-4">
|
||
<Link
|
||
className="font-hse-sans text-muted-foreground flex items-center"
|
||
to="/"
|
||
>
|
||
<ArrowLeft size={16} className="mr-2" />
|
||
Назад к соревнованиям
|
||
</Link>
|
||
|
||
<div className="flex flex-col gap-6">
|
||
<div className="aspect-2 h-auto w-full overflow-hidden rounded-xl">
|
||
<img
|
||
src={competition.image_url ? competition.image_url : '/DANO.png'}
|
||
alt={competition.title}
|
||
className="h-full w-full object-cover object-center"
|
||
/>
|
||
</div>
|
||
|
||
<div className="flex flex-col-reverse gap-8 md:flex-row">
|
||
<div className="flex flex-1 flex-col gap-5">
|
||
<div>
|
||
<div className="flex items-center gap-2 mb-2">
|
||
<div className="bg-gray-100 text-gray-700 px-3 py-1 rounded-full text-sm font-medium flex items-center">
|
||
{competition.type === CompetitionType.COMPETITIVE ? (
|
||
<>
|
||
<Trophy size={14} className="mr-1.5" />
|
||
Соревнование
|
||
</>
|
||
) : (
|
||
<>
|
||
<BookOpen size={14} className="mr-1.5" />
|
||
Тренировка
|
||
</>
|
||
)}
|
||
</div>
|
||
|
||
{competitionNotStarted && competition.type === CompetitionType.COMPETITIVE && (
|
||
<div className="bg-yellow-100 text-yellow-700 px-3 py-1 rounded-full text-sm font-medium">
|
||
Скоро начнется
|
||
</div>
|
||
)}
|
||
|
||
{competitionEnded && competition.type === CompetitionType.COMPETITIVE && (
|
||
<div className="bg-red-100 text-red-700 px-3 py-1 rounded-full text-sm font-medium">
|
||
Завершено
|
||
</div>
|
||
)}
|
||
</div>
|
||
|
||
<h1 className="text-[34px] leading-11 font-semibold text-balance">
|
||
{competition.title}
|
||
</h1>
|
||
|
||
{competition.type === CompetitionType.COMPETITIVE && (
|
||
<div className="mt-3 text-gray-600 font-hse-sans">
|
||
{competition.start_date && (
|
||
<div className="flex items-center gap-2 mb-1">
|
||
<Clock size={16} className="text-gray-500" />
|
||
<span>Начало: {formatDate(competition.start_date)}</span>
|
||
</div>
|
||
)}
|
||
{competition.end_date && (
|
||
<div className="flex items-center gap-2">
|
||
<Clock size={16} className="text-gray-500" />
|
||
<span>Окончание: {formatDate(competition.end_date)}</span>
|
||
</div>
|
||
)}
|
||
</div>
|
||
)}
|
||
</div>
|
||
|
||
<div className="prose prose-lg max-w-none text-xl leading-10 font-normal">
|
||
<ReactMarkdown
|
||
remarkPlugins={[remarkMath, remarkGfm]}
|
||
rehypePlugins={[rehypeKatex]}
|
||
>
|
||
{competition.description || ""}
|
||
</ReactMarkdown>
|
||
</div>
|
||
</div>
|
||
|
||
<div className="w-full *:w-full md:w-96 flex flex-col gap-3">
|
||
{competitionNotStarted && competition.type === CompetitionType.COMPETITIVE ? (
|
||
<Button
|
||
size={"lg"}
|
||
disabled={true}
|
||
className="bg-gray-200 text-gray-500 cursor-not-allowed"
|
||
>
|
||
<AlertCircle size={18} className="mr-2" />
|
||
Скоро начнется
|
||
</Button>
|
||
) : !competitionEnded ? (
|
||
<Button
|
||
size={"lg"}
|
||
onClick={handleStart}
|
||
disabled={startMutation.isPending}
|
||
>
|
||
{startMutation.isPending ? "Загрузка..." : "Приступить к выполнению"}
|
||
</Button>
|
||
) : null}
|
||
|
||
{hasResults && (
|
||
<Button
|
||
size={"lg"}
|
||
onClick={() => setIsResultsModalOpen(true)}
|
||
>
|
||
<BarChart2 size={18} className="mr-2" />
|
||
Посмотреть результаты
|
||
</Button>
|
||
)}
|
||
|
||
{competitionEnded && !hasResults && competition.type === CompetitionType.COMPETITIVE && !resultsQuery.isLoading && (
|
||
<div className="text-center p-4 border rounded-md bg-gray-50">
|
||
<p className="text-gray-600">Соревнование завершено. Увы</p>
|
||
</div>
|
||
)}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<CompetitionResultsModal
|
||
competitionTitle={competition.title}
|
||
results={resultsQuery.data}
|
||
isLoading={resultsQuery.isLoading}
|
||
error={resultsQuery.error}
|
||
isOpen={isResultsModalOpen}
|
||
onOpenChange={setIsResultsModalOpen}
|
||
/>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default CompetitionPage; |