turkmentv_front/app/(main)/lottery/page.tsx

60 lines
2.1 KiB
TypeScript
Raw Normal View History

2024-12-24 12:19:08 +00:00
'use client';
2024-12-23 19:13:36 +00:00
2024-12-27 15:23:39 +00:00
import { useState } from 'react';
2024-12-24 12:19:08 +00:00
import { useLotteryAuth } from '@/store/useLotteryAuth';
import ProtectedRoute from '@/components/lottery/auth/ProtectedRoute';
import LotteryHeader from '@/components/lottery/LotteryHeader';
2024-12-23 19:32:36 +00:00
2024-12-24 12:19:08 +00:00
import LotteryWinnersSection from '@/components/lottery/LotteryWinnersSection';
import LotteryRulesSection from '@/components/lottery/rules/LotteryRulesSection';
2024-12-25 13:46:20 +00:00
import LotteryCountDown from '@/components/lottery/countDown/LotteryCountDown';
import LotteryCountDownAllert from '@/components/lottery/countDown/countDownAllert/LotteryCountDownAllert';
2024-12-23 19:13:36 +00:00
2024-12-23 19:32:36 +00:00
const LotteryPage = () => {
2024-12-23 19:13:36 +00:00
const { lotteryData } = useLotteryAuth();
2024-12-25 13:46:20 +00:00
const [status, setStatus] = useState<'not-started' | 'started' | 'ended'>('not-started');
2024-12-23 19:13:36 +00:00
return (
<ProtectedRoute>
<div className="flex flex-col md:gap-[128px] gap-[80px] font-roboto md:pt-[64px] sm:pt-[48px] pt-[40px] pb-[128px] text-lightOnSurface">
{lotteryData && (
2024-12-23 19:32:36 +00:00
<LotteryHeader
title={lotteryData.data.title}
description={lotteryData.data.description}
image={lotteryData.data.image}
smsCode={lotteryData.data.sms_code}
/>
2024-12-23 19:13:36 +00:00
)}
2024-12-25 13:46:20 +00:00
{lotteryData ? (
status === 'not-started' ? (
<div className="container">
<LotteryCountDown
lotteryStatus={status}
setLotteryStatus={setStatus}
endDate={lotteryData?.data.end_time}
startDate={lotteryData?.data.start_time}
/>
</div>
) : (
<div className="container">
<LotteryCountDownAllert
lotteryStatus={status}
setLotteryStatus={setStatus}
endDate={lotteryData?.data.end_time}
startDate={lotteryData?.data.start_time}
/>
</div>
)
) : null}
2024-12-23 19:13:36 +00:00
<LotteryRulesSection />
2024-12-24 12:19:08 +00:00
{(status === 'ended' || status === 'started') && <LotteryWinnersSection />}
2024-12-23 19:13:36 +00:00
</div>
</ProtectedRoute>
);
};
2024-12-23 19:32:36 +00:00
export default LotteryPage;