75 lines
2.7 KiB
TypeScript
75 lines
2.7 KiB
TypeScript
import LotteryHeader from "@/components/lottery/LotteryHeader";
|
|
import LotteryRulesSection from "@/components/lottery/rules/LotteryRulesSection";
|
|
import LotteryCountDown from "@/components/lottery/countDown/LotteryCountDown";
|
|
import Link from "next/link";
|
|
import { authenticateLottery } from "@/api";
|
|
import { redirect } from "next/navigation";
|
|
import { cookies } from "next/headers";
|
|
import { getLotteryStatus } from "@/lib/actions";
|
|
import LotteryWinners from "./LotteryWinners";
|
|
|
|
async function getData() {
|
|
const cookieStore = await cookies();
|
|
const phone = cookieStore.get("phoneNumber");
|
|
const key = cookieStore.get("key");
|
|
if (phone?.value && key?.value) {
|
|
const res = await authenticateLottery(phone.value, key.value);
|
|
return res;
|
|
} else {
|
|
redirect("/lottery/auth");
|
|
}
|
|
}
|
|
|
|
const LotteryMain = async () => {
|
|
const lotteryData = await getData();
|
|
|
|
const status = await getLotteryStatus(
|
|
lotteryData?.data.start_time,
|
|
lotteryData?.data.end_time
|
|
);
|
|
|
|
return lotteryData?.errorMessage ? (
|
|
<div className="flex flex-1 w-full justify-center items-center">
|
|
<h1 className="text-[50px]">{lotteryData.errorMessage}</h1>
|
|
</div>
|
|
) : (
|
|
<div className="flex flex-col md:gap-[128px] gap-[80px] font-roboto md:pt-[64px] sm:pt-[48px] pt-[40px] ms:pb-[128px] pb-[80px] text-lightOnSurface">
|
|
<div className="flex flex-col sm:gap-[64px] gap-[40px]">
|
|
<LotteryHeader
|
|
title={lotteryData.data.title}
|
|
description={lotteryData.data.description}
|
|
image={lotteryData.data.image}
|
|
smsCode={lotteryData.data.sms_code}
|
|
startDate={lotteryData.data.start_time}
|
|
/>
|
|
|
|
{status === "Upcoming" && (
|
|
<div className="container">
|
|
<LotteryCountDown
|
|
lotteryStatus={status}
|
|
endDate={lotteryData.data.end_time}
|
|
startDate={lotteryData.data.start_time}
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<LotteryRulesSection data={lotteryData} />
|
|
<div className="flex flex-col gap-10">
|
|
<LotteryWinners data={lotteryData} lotteryStatus={status} />
|
|
<div className="w-full">
|
|
<div className="container">
|
|
<Link
|
|
href="/lottery/auth"
|
|
className="sm:text-textLarge sm:leading-textLarge text-[16px] rounded-full leading-[24px] sm:py-[12px] py-[8px] w-full flex justify-center items-center border-2 border-lightPrimary hover:bg-lightPrimary font-medium text-lightPrimary hover:text-lightOnPrimary disabled:opacity-50 transition-all duration-300"
|
|
>
|
|
Çykmak
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LotteryMain;
|