el.xwx.moe/pages/subscribe.tsx

155 lines
4.8 KiB
TypeScript
Raw Normal View History

import { signOut, useSession } from "next-auth/react";
import { useEffect, useState } from "react";
import { toast } from "react-hot-toast";
import { useRouter } from "next/router";
2023-08-01 15:20:05 -05:00
import CenteredForm from "@/layouts/CenteredForm";
2023-09-10 23:20:31 -05:00
import { Plan } from "@/types/global";
import Button from "@/components/ui/Button";
import getServerSideProps from "@/lib/client/getServerSideProps";
import { Trans, useTranslation } from "next-i18next";
2024-07-31 13:15:50 -05:00
import { useUser } from "@/hooks/store/user";
const stripeEnabled = process.env.NEXT_PUBLIC_STRIPE === "true";
export default function Subscribe() {
const { t } = useTranslation();
const [submitLoader, setSubmitLoader] = useState(false);
const session = useSession();
2023-10-11 12:19:13 -05:00
const [plan, setPlan] = useState<Plan>(1);
2023-09-10 23:20:31 -05:00
const router = useRouter();
const { data: user = {} } = useUser();
useEffect(() => {
2024-10-26 08:42:21 -05:00
console.log("user", user);
if (
session.status === "authenticated" &&
user.id &&
2024-10-26 08:42:21 -05:00
(user?.subscription?.active || user.parentSubscription?.active)
)
router.push("/dashboard");
}, [session.status, user]);
async function submit() {
setSubmitLoader(true);
const redirectionToast = toast.loading(t("redirecting_to_stripe"));
const res = await fetch("/api/v1/payment?plan=" + plan);
const data = await res.json();
router.push(data.response);
toast.dismiss(redirectionToast);
}
return (
2023-08-01 15:20:05 -05:00
<CenteredForm
2023-09-10 23:20:31 -05:00
text={`Start with a ${
2023-08-01 15:20:05 -05:00
process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS || 14
2023-09-10 23:20:31 -05:00
}-day free trial, cancel anytime!`}
2023-08-01 15:20:05 -05:00
>
2023-11-26 04:17:08 -06:00
<div className="p-4 mx-auto flex flex-col gap-3 justify-between max-w-[30rem] min-w-80 w-full bg-base-200 rounded-2xl shadow-md border border-neutral-content">
<p className="sm:text-3xl text-2xl text-center font-extralight">
{t("subscribe_title")}
2023-08-01 15:20:05 -05:00
</p>
<div className="divider my-0"></div>
<div>
2023-08-01 15:20:05 -05:00
<p>
<Trans
i18nKey="subscribe_desc"
components={[
<a
className="font-semibold"
href="mailto:support@linkwarden.app"
2024-06-09 09:41:06 -05:00
key={0}
/>,
]}
/>
2023-09-10 23:20:31 -05:00
</p>
</div>
2023-12-07 11:29:45 -06:00
<div className="flex gap-3 border border-solid border-neutral-content w-4/5 mx-auto p-1 rounded-xl relative">
2023-09-10 23:20:31 -05:00
<button
onClick={() => setPlan(Plan.monthly)}
2023-11-24 07:39:55 -06:00
className={`w-full duration-100 text-sm rounded-lg p-1 ${
2023-09-10 23:20:31 -05:00
plan === Plan.monthly
? "text-white bg-sky-700 dark:bg-sky-700"
: "hover:opacity-80"
}`}
>
<p>{t("monthly")}</p>
2023-09-10 23:20:31 -05:00
</button>
<button
onClick={() => setPlan(Plan.yearly)}
2023-11-24 07:39:55 -06:00
className={`w-full duration-100 text-sm rounded-lg p-1 ${
2023-09-10 23:20:31 -05:00
plan === Plan.yearly
? "text-white bg-sky-700 dark:bg-sky-700"
: "hover:opacity-80"
}`}
>
<p>{t("yearly")}</p>
2023-09-10 23:20:31 -05:00
</button>
<div className="absolute -top-3 -right-4 px-1 bg-red-600 text-sm text-white rounded-md rotate-[22deg]">
{t("discount_percent", {
percent: 25,
})}
2023-09-10 23:20:31 -05:00
</div>
</div>
<div className="flex flex-col gap-2 justify-center items-center">
<p className="text-3xl">
${plan === Plan.monthly ? "4" : "3"}
2023-11-25 04:39:56 -06:00
<span className="text-base text-neutral">/mo</span>
2023-09-10 23:20:31 -05:00
</p>
<p className="font-semibold">
{plan === Plan.monthly ? t("billed_monthly") : t("billed_yearly")}
2023-07-15 23:18:49 -05:00
</p>
<fieldset className="w-full flex-col flex justify-evenly px-4 pb-4 pt-1 rounded-md border border-neutral-content">
2023-12-07 15:33:01 -06:00
<legend className="w-fit font-extralight px-2 border border-neutral-content rounded-md text-xl">
{t("total")}
</legend>
<p className="text-sm">
{plan === Plan.monthly
? t("total_monthly_desc", {
count: Number(process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS),
monthlyPrice: "4",
})
: t("total_annual_desc", {
count: Number(process.env.NEXT_PUBLIC_TRIAL_PERIOD_DAYS),
annualPrice: "36",
})}
</p>
<p className="text-sm">{t("plus_tax")}</p>
</fieldset>
</div>
<Button
2023-12-07 11:29:45 -06:00
type="button"
intent="accent"
size="full"
2023-12-07 11:29:45 -06:00
onClick={submit}
loading={submitLoader}
>
{t("complete_subscription")}
</Button>
<div
onClick={() => signOut()}
2023-11-25 04:39:56 -06:00
className="w-fit mx-auto cursor-pointer text-neutral font-semibold "
>
{t("sign_out")}
</div>
</div>
2023-08-01 15:20:05 -05:00
</CenteredForm>
);
}
export { getServerSideProps };