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

87 lines
2.5 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-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>
<div className="p-2 mx-auto flex flex-col gap-3 justify-between sm:w-[30rem] w-80 bg-slate-50 rounded-2xl shadow-md border border-sky-100">
<p className="text-2xl text-center text-black 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-07-22 16:49:09 -05:00
<p className="text-sm text-sky-700 w-fit font-semibold mb-1">
2023-07-19 15:39:59 -05:00
Username
</p>
<input
type="text"
placeholder="john"
value={inputedUsername}
onChange={(e) => setInputedUsername(e.target.value)}
2023-07-22 16:49:09 -05:00
className="w-full rounded-md p-2 mx-auto border-sky-100 border-solid border outline-none focus:border-sky-700 duration-100"
2023-07-19 15:39:59 -05:00
/>
</div>
<div>
<p className="text-md text-gray-500 mt-1">
Feel free to reach out to us at{" "}
2023-07-20 17:23:57 -05:00
<a className="font-semibold" href="mailto:support@linkwarden.app">
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()}
className="w-fit mx-auto cursor-pointer text-gray-500 font-semibold "
>
Sign Out
</div>
</div>
2023-08-01 15:20:05 -05:00
</CenteredForm>
2023-07-19 15:39:59 -05:00
);
}