feat: add topup management features including topup creation, cancellation, and countdown timer

This commit is contained in:
2025-07-04 23:07:02 +05:00
parent ee461bbbf8
commit f3328f7a7b
7 changed files with 657 additions and 21 deletions

View File

@ -0,0 +1,72 @@
import { redirect } from "next/navigation";
import { getTopup } from "@/actions/payment";
import CancelTopupButton from "@/components/billing/cancel-topup-button";
import ExpiryCountDown from "@/components/billing/expiry-time-countdown";
import ClientErrorMessage from "@/components/client-error-message";
import TopupToPay from "@/components/topup-to-pay";
import { Button } from "@/components/ui/button";
import { TextShimmer } from "@/components/ui/text-shimmer";
import { cn } from "@/lib/utils";
import { tryCatch } from "@/utils/tryCatch";
export default async function TopupPage({
params,
}: {
params: Promise<{ topupId: string }>;
}) {
const topupId = (await params).topupId;
const [error, topup] = await tryCatch(getTopup({ id: topupId }));
if (error) {
if (error.message === "Invalid token.") redirect("/auth/signin");
return <ClientErrorMessage message={error.message} />;
}
return (
<div>
<div className="flex justify-between items-center border rounded-md border-dashed font-bold title-bg py-4 px-4 mb-4 mx-2">
<h3 className="text-sarLinkOrange text-2xl">Topup</h3>
<div className="flex flex-col gap-4 items-end w-full">
{!topup.is_expired && (
<Button
disabled
className={cn(
"rounded-md opacity-100! uppercase font-semibold",
// topup?.paid
// ? "text-green-900 bg-green-500/20"
// : "text-inherit bg-yellow-400",
)}
>
{topup?.paid ? <span>Paid</span> : <TextShimmer>Payment Pending</TextShimmer>}
</Button>
)}
{!topup.paid && (
topup.is_expired ? (
<Button
disabled
className="rounded-md opacity-100! uppercase font-semibold text-red-500 bg-red-500/20"
>
Topup Expired
</Button>
) : (
<CancelTopupButton topupId={topupId} />
)
)}
</div>
</div>
{!topup.paid && (
<ExpiryCountDown expiresAt={topup.expires_at} />
)}
<div
id="user-topup-details"
className="pb-4 gap-4 flex sm:flex-row flex-col items-start justify-start"
>
<TopupToPay
disabled={topup.paid || topup.is_expired}
topup={topup || undefined}
/>
</div>
</div>
);
}

View File

@ -0,0 +1,63 @@
import { Suspense } from "react";
import DynamicFilter from "@/components/generic-filter";
import { TopupsTable } from "@/components/topups-table";
export default async function Topups({
searchParams,
}: {
searchParams: Promise<{
query: string;
page: number;
sortBy: string;
status: string;
}>;
}) {
const query = (await searchParams)?.query || "";
return (
<div>
<div className="flex justify-between items-center border rounded-md border-dashed font-bold title-bg py-4 px-2 mb-4">
<h3 className="text-sarLinkOrange text-2xl">My Topups</h3>
</div>
<div
id="topup-filters"
className=" pb-4 gap-4 flex sm:flex-row flex-col items-start justify-start"
>
<DynamicFilter
inputs={[
{
label: "Paid",
name: "paid",
type: "radio-group",
options: [
{
label: "All",
value: "",
},
{
label: "Paid",
value: "true",
},
{
label: "Pending",
value: "false",
},
],
},
{
label: "Topup Amount",
name: "amount",
type: "dual-range-slider",
min: 0,
max: 1000,
step: 10,
},
]}
/>
</div>
<Suspense key={query} fallback={"loading...."}>
<TopupsTable searchParams={searchParams} />
</Suspense>
</div>
);
}