el.xwx.moe/pages/choose-username.tsx

90 lines
2.6 KiB
TypeScript
Raw Normal View History

2023-07-19 15:39:59 -05:00
import SubmitButton from "@/components/SubmitButton";
import { signOut } from "next-auth/react";
import Image from "next/image";
import { useEffect, useState } from "react";
import { toast } from "react-hot-toast";
import { useSession } from "next-auth/react";
import { useRouter } from "next/router";
import useAccountStore from "@/store/account";
2023-08-01 15:20:05 -05:00
import CenteredForm from "@/layouts/CenteredForm";
2023-08-17 15:05:44 -05:00
import TextInput from "@/components/TextInput";
2023-07-19 15:39:59 -05:00
export default function Subscribe() {
const [submitLoader, setSubmitLoader] = useState(false);
const [inputedUsername, setInputedUsername] = useState("");
const { data, status, update } = useSession();
const { updateAccount, account } = useAccountStore();
async function submitUsername() {
setSubmitLoader(true);
const redirectionToast = toast.loading("Applying...");
const response = await updateAccount({
...account,
username: inputedUsername,
});
if (response.ok) {
toast.success("Username Applied!");
update({
id: data?.user.id,
});
} else toast.error(response.data as string);
toast.dismiss(redirectionToast);
setSubmitLoader(false);
}
return (
2023-08-01 15:20:05 -05:00
<CenteredForm>
2023-08-14 22:25:25 -05:00
<div className="p-4 mx-auto flex flex-col gap-3 justify-between sm:w-[30rem] w-80 bg-slate-50 dark:border-neutral-700 dark:bg-neutral-800 rounded-2xl shadow-md border border-sky-100">
<p className="text-2xl text-center text-black dark:text-white font-bold">
2023-07-19 23:46:16 -05:00
Choose a Username (Last step)
</p>
2023-07-19 15:39:59 -05:00
<div>
2023-08-14 22:25:25 -05:00
<p className="text-sm text-black dark:text-white w-fit font-semibold mb-1">
2023-07-19 15:39:59 -05:00
Username
</p>
2023-08-17 15:05:44 -05:00
<TextInput
2023-07-19 15:39:59 -05:00
placeholder="john"
value={inputedUsername}
className="bg-white"
2023-07-19 15:39:59 -05:00
onChange={(e) => setInputedUsername(e.target.value)}
/>
</div>
<div>
2023-08-14 22:25:25 -05:00
<p className="text-md text-gray-500 dark:text-gray-400 mt-1">
2023-07-19 15:39:59 -05:00
Feel free to reach out to us at{" "}
2023-08-14 22:25:25 -05:00
<a
className="font-semibold underline"
href="mailto:support@linkwarden.app"
>
2023-07-20 17:23:57 -05:00
support@linkwarden.app
2023-07-19 15:39:59 -05:00
</a>{" "}
in case of any issues.
</p>
</div>
<SubmitButton
onClick={submitUsername}
2023-07-19 23:46:16 -05:00
label="Complete Registration"
2023-07-19 15:39:59 -05:00
className="mt-2 w-full text-center"
loading={submitLoader}
/>
<div
onClick={() => signOut()}
2023-08-14 22:25:25 -05:00
className="w-fit mx-auto cursor-pointer text-gray-500 dark:text-gray-400 font-semibold "
2023-07-19 15:39:59 -05:00
>
Sign Out
</div>
</div>
2023-08-01 15:20:05 -05:00
</CenteredForm>
2023-07-19 15:39:59 -05:00
);
}