2024-03-14 01:52:31 +00:00
|
|
|
|
import { getFormProps, useForm } from "@conform-to/react";
|
|
|
|
|
import { getZodConstraint, parseWithZod } from "@conform-to/zod";
|
2024-03-15 20:00:57 +00:00
|
|
|
|
import { BaseKey, useGetIdentity, useUpdate, useUpdatePassword } from "@refinedev/core";
|
2024-03-14 01:52:31 +00:00
|
|
|
|
import { useState } from "react";
|
|
|
|
|
import { z } from "zod";
|
|
|
|
|
import { Field } from "~/components/forms";
|
|
|
|
|
import { GeneralLayout } from "~/components/general-layout";
|
2024-03-14 17:45:21 +00:00
|
|
|
|
import { AddIcon, CloudIcon, CrownIcon } from "~/components/icons";
|
|
|
|
|
import { ManagementCard, ManagementCardAvatar, ManagementCardContent, ManagementCardFooter, ManagementCardTitle } from "~/components/management-card";
|
2024-03-14 01:52:31 +00:00
|
|
|
|
import { Button } from "~/components/ui/button";
|
|
|
|
|
import {
|
|
|
|
|
Dialog,
|
|
|
|
|
DialogContent,
|
|
|
|
|
DialogHeader,
|
|
|
|
|
DialogTitle,
|
|
|
|
|
} from "~/components/ui/dialog";
|
|
|
|
|
import { Input } from "~/components/ui/input";
|
|
|
|
|
import { UsageCard } from "~/components/usage-card";
|
|
|
|
|
|
|
|
|
|
import QRImg from "~/images/QR.png";
|
|
|
|
|
|
|
|
|
|
export default function MyAccount() {
|
2024-03-15 20:00:57 +00:00
|
|
|
|
const { data: identity } = useGetIdentity<{ email: string }>();
|
2024-03-14 01:52:31 +00:00
|
|
|
|
|
|
|
|
|
const [openModal, setModal] = useState({
|
|
|
|
|
changeEmail: false,
|
|
|
|
|
changePassword: false,
|
|
|
|
|
setupTwoFactor: false,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<GeneralLayout>
|
|
|
|
|
<h1 className="text-lg font-bold mb-4">My Account</h1>
|
|
|
|
|
<UsageCard
|
|
|
|
|
label="Usage"
|
|
|
|
|
currentUsage={2}
|
|
|
|
|
monthlyUsage={10}
|
|
|
|
|
icon={<CloudIcon className="text-ring" />}
|
|
|
|
|
button={
|
|
|
|
|
<Button variant="accent" className="gap-x-2 h-12">
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Upgrade to Premium
|
|
|
|
|
</Button>
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<h2 className="font-bold my-8">Account Management</h2>
|
|
|
|
|
<div className="grid grid-cols-3 gap-x-8">
|
2024-03-14 17:45:21 +00:00
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardAvatar />
|
|
|
|
|
</ManagementCard>
|
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardTitle>Email Address</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent className="text-ring font-semibold">
|
2024-03-15 20:00:57 +00:00
|
|
|
|
{identity?.email}
|
2024-03-14 17:45:21 +00:00
|
|
|
|
</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button className="h-12 gap-x-2" onClick={() => setModal({ ...openModal, changeEmail: true })}>
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Change Email Address
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardTitle>Account Type</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent className="text-ring font-semibold flex gap-x-2">
|
|
|
|
|
Lite Premium Account
|
|
|
|
|
<CrownIcon />
|
|
|
|
|
</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button className="h-12 gap-x-2">
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Upgrade to Premium
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
2024-03-14 01:52:31 +00:00
|
|
|
|
</div>
|
|
|
|
|
<h2 className="font-bold my-8">Security</h2>
|
|
|
|
|
<div className="grid grid-cols-3 gap-x-8">
|
2024-03-14 17:45:21 +00:00
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardTitle>Password</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent>
|
|
|
|
|
<PasswordDots className="mt-6" />
|
|
|
|
|
</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button className="h-12 gap-x-2" onClick={() => setModal({ ...openModal, changePassword: true })}>
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Change Password
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardTitle>Two-Factor Authentication</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent>
|
|
|
|
|
Improve security by enabling 2FA.
|
|
|
|
|
</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button className="h-12 gap-x-2" onClick={() => setModal({ ...openModal, setupTwoFactor: true })}>
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Enable Two-Factor Authorization
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardTitle>Backup Key</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent>
|
|
|
|
|
Never share this code with anyone.
|
|
|
|
|
</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button className="h-12 gap-x-2">
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Export Backup Key
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
2024-03-14 01:52:31 +00:00
|
|
|
|
</div>
|
|
|
|
|
<h2 className="font-bold my-8">More</h2>
|
|
|
|
|
<div className="grid grid-cols-3 gap-x-8">
|
2024-03-14 17:45:21 +00:00
|
|
|
|
<ManagementCard variant="accent">
|
|
|
|
|
<ManagementCardTitle>Invite a Friend</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent>Get 1 GB per friend invited for free (max 5 GB).</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button variant="accent" className="h-12 gap-x-2">
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Send Invitation
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardTitle>Read our Resources</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent>Navigate helpful articles or get assistance.</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button className="h-12 gap-x-2">
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Open Support Centre
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
|
|
|
|
<ManagementCard>
|
|
|
|
|
<ManagementCardTitle>Delete Account</ManagementCardTitle>
|
|
|
|
|
<ManagementCardContent>Once initiated, this action cannot be undone.</ManagementCardContent>
|
|
|
|
|
<ManagementCardFooter>
|
|
|
|
|
<Button className="h-12 gap-x-2" variant="destructive">
|
|
|
|
|
<AddIcon />
|
|
|
|
|
Delete my Account
|
|
|
|
|
</Button>
|
|
|
|
|
</ManagementCardFooter>
|
|
|
|
|
</ManagementCard>
|
2024-03-14 01:52:31 +00:00
|
|
|
|
</div>
|
|
|
|
|
{/* Dialogs must be near to body as possible to open the modal, otherwise will be restricted to parent height-width */}
|
|
|
|
|
<ChangeEmailForm
|
2024-03-14 16:17:41 +00:00
|
|
|
|
open={openModal.changeEmail}
|
2024-03-14 01:52:31 +00:00
|
|
|
|
setOpen={(value: boolean) =>
|
|
|
|
|
setModal({ ...openModal, changeEmail: value })
|
|
|
|
|
}
|
2024-03-15 20:00:57 +00:00
|
|
|
|
currentValue={identity?.email || ""}
|
2024-03-14 01:52:31 +00:00
|
|
|
|
/>
|
|
|
|
|
<ChangePasswordForm
|
2024-03-14 16:17:41 +00:00
|
|
|
|
open={openModal.changePassword}
|
2024-03-14 01:52:31 +00:00
|
|
|
|
setOpen={(value: boolean) =>
|
|
|
|
|
setModal({ ...openModal, changePassword: value })
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
<SetupTwoFactorDialog
|
2024-03-14 16:17:41 +00:00
|
|
|
|
open={openModal.setupTwoFactor}
|
2024-03-14 01:52:31 +00:00
|
|
|
|
setOpen={(value: boolean) =>
|
|
|
|
|
setModal({ ...openModal, setupTwoFactor: value })
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
</GeneralLayout>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const ChangeEmailSchema = z.object({
|
|
|
|
|
email: z.string().email(),
|
|
|
|
|
password: z.string(),
|
|
|
|
|
retypePassword: z.string(),
|
2024-03-15 20:00:57 +00:00
|
|
|
|
})
|
|
|
|
|
.superRefine((data, ctx) => {
|
|
|
|
|
if (data.password !== data.retypePassword) {
|
|
|
|
|
return ctx.addIssue({
|
|
|
|
|
code: z.ZodIssueCode.custom,
|
|
|
|
|
path: ["retypePassword"],
|
|
|
|
|
message: "Passwords do not match",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2024-03-14 01:52:31 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const ChangeEmailForm = ({
|
|
|
|
|
open,
|
|
|
|
|
setOpen,
|
|
|
|
|
currentValue,
|
|
|
|
|
}: {
|
|
|
|
|
open: boolean;
|
|
|
|
|
setOpen: (value: boolean) => void;
|
|
|
|
|
currentValue: string;
|
|
|
|
|
}) => {
|
2024-03-15 20:00:57 +00:00
|
|
|
|
const{ data: identity } = useGetIdentity<{ id: BaseKey }>();
|
|
|
|
|
const { mutate: updateEmail } = useUpdate();
|
2024-03-14 01:52:31 +00:00
|
|
|
|
const [form, fields] = useForm({
|
|
|
|
|
id: "login",
|
|
|
|
|
constraint: getZodConstraint(ChangeEmailSchema),
|
|
|
|
|
onValidate({ formData }) {
|
|
|
|
|
return parseWithZod(formData, { schema: ChangeEmailSchema });
|
|
|
|
|
},
|
|
|
|
|
shouldValidate: "onSubmit",
|
2024-03-15 20:00:57 +00:00
|
|
|
|
onSubmit(e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
const data = Object.fromEntries(new FormData(e.currentTarget).entries());
|
|
|
|
|
console.log(identity);
|
|
|
|
|
updateEmail({
|
|
|
|
|
resource: 'users',
|
|
|
|
|
id: identity?.id || "",
|
|
|
|
|
values: {
|
|
|
|
|
email: data.email.toString()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2024-03-14 01:52:31 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
|
|
|
<DialogContent className="p-8">
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle className="mb-8">Change Email</DialogTitle>
|
|
|
|
|
<div className="rounded-full px-4 py-2 w-fit text-sm bg-ring font-bold text-secondary-1">
|
|
|
|
|
{currentValue}
|
|
|
|
|
</div>
|
|
|
|
|
<form {...getFormProps(form)}>
|
|
|
|
|
<Field
|
|
|
|
|
className="mt-8"
|
|
|
|
|
inputProps={{ name: fields.email.name }}
|
|
|
|
|
labelProps={{ children: "New Email Address" }}
|
|
|
|
|
errors={fields.email.errors}
|
|
|
|
|
/>
|
|
|
|
|
<Field
|
|
|
|
|
inputProps={{ name: fields.password.name, type: "password" }}
|
|
|
|
|
labelProps={{ children: "Password" }}
|
|
|
|
|
errors={fields.password.errors}
|
|
|
|
|
/>
|
|
|
|
|
<Field
|
|
|
|
|
inputProps={{
|
|
|
|
|
name: fields.retypePassword.name,
|
|
|
|
|
type: "password",
|
|
|
|
|
}}
|
|
|
|
|
labelProps={{ children: "Retype Password" }}
|
|
|
|
|
errors={fields.retypePassword.errors}
|
|
|
|
|
/>
|
|
|
|
|
<Button className="w-full h-14">Change Email Address</Button>
|
|
|
|
|
</form>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const ChangePasswordSchema = z.object({
|
|
|
|
|
currentPassword: z.string().email(),
|
|
|
|
|
newPassword: z.string(),
|
|
|
|
|
retypePassword: z.string(),
|
2024-03-15 20:00:57 +00:00
|
|
|
|
})
|
|
|
|
|
.superRefine((data, ctx) => {
|
|
|
|
|
if (data.newPassword !== data.retypePassword) {
|
|
|
|
|
return ctx.addIssue({
|
|
|
|
|
code: z.ZodIssueCode.custom,
|
|
|
|
|
path: ["retypePassword"],
|
|
|
|
|
message: "Passwords do not match",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2024-03-14 01:52:31 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const ChangePasswordForm = ({
|
|
|
|
|
open,
|
|
|
|
|
setOpen,
|
|
|
|
|
}: {
|
|
|
|
|
open: boolean;
|
|
|
|
|
setOpen: (value: boolean) => void;
|
|
|
|
|
}) => {
|
2024-03-15 20:00:57 +00:00
|
|
|
|
const { mutate: updatePassword } = useUpdatePassword<{ password: string }>();
|
2024-03-14 01:52:31 +00:00
|
|
|
|
const [form, fields] = useForm({
|
|
|
|
|
id: "login",
|
|
|
|
|
constraint: getZodConstraint(ChangeEmailSchema),
|
|
|
|
|
onValidate({ formData }) {
|
|
|
|
|
return parseWithZod(formData, { schema: ChangePasswordSchema });
|
|
|
|
|
},
|
|
|
|
|
shouldValidate: "onSubmit",
|
2024-03-15 20:00:57 +00:00
|
|
|
|
onSubmit(e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
const data = Object.fromEntries(new FormData(e.currentTarget).entries());
|
|
|
|
|
|
|
|
|
|
updatePassword({
|
|
|
|
|
password: data.newPassword.toString()
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
2024-03-14 01:52:31 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Dialog open={open} onOpenChange={setOpen}>
|
|
|
|
|
<DialogContent className="p-8">
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle className="mb-8">Change Password</DialogTitle>
|
|
|
|
|
<form {...getFormProps(form)}>
|
|
|
|
|
<Field
|
|
|
|
|
inputProps={{
|
|
|
|
|
name: fields.currentPassword.name,
|
|
|
|
|
type: "password",
|
|
|
|
|
}}
|
|
|
|
|
labelProps={{ children: "Current Password" }}
|
|
|
|
|
errors={fields.currentPassword.errors}
|
|
|
|
|
/>
|
|
|
|
|
<Field
|
|
|
|
|
inputProps={{ name: fields.newPassword.name, type: "password" }}
|
2024-03-15 20:00:57 +00:00
|
|
|
|
labelProps={{ children: "New Password" }}
|
2024-03-14 01:52:31 +00:00
|
|
|
|
errors={fields.newPassword.errors}
|
|
|
|
|
/>
|
|
|
|
|
<Field
|
|
|
|
|
inputProps={{
|
|
|
|
|
name: fields.retypePassword.name,
|
|
|
|
|
type: "password",
|
|
|
|
|
}}
|
|
|
|
|
labelProps={{ children: "Retype Password" }}
|
|
|
|
|
errors={fields.retypePassword.errors}
|
|
|
|
|
/>
|
|
|
|
|
<Button className="w-full h-14">Change Password</Button>
|
|
|
|
|
</form>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const SetupTwoFactorDialog = ({
|
|
|
|
|
open,
|
|
|
|
|
setOpen,
|
|
|
|
|
}: {
|
|
|
|
|
open: boolean;
|
|
|
|
|
setOpen: (value: boolean) => void;
|
|
|
|
|
}) => {
|
2024-03-14 01:55:44 +00:00
|
|
|
|
const [continueModal, setContinue] = useState<boolean>(false);
|
2024-03-14 01:52:31 +00:00
|
|
|
|
|
|
|
|
|
return (
|
2024-03-14 01:55:44 +00:00
|
|
|
|
<Dialog
|
|
|
|
|
open={open}
|
|
|
|
|
onOpenChange={(value) => {
|
|
|
|
|
setOpen(value);
|
2024-03-14 01:52:31 +00:00
|
|
|
|
setContinue(false);
|
2024-03-14 01:55:44 +00:00
|
|
|
|
}}>
|
2024-03-14 01:52:31 +00:00
|
|
|
|
<DialogContent className="p-8">
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle className="mb-8">Setup Two-Factor</DialogTitle>
|
|
|
|
|
<div className="flex flex-col gap-y-6">
|
|
|
|
|
{continueModal ? (
|
2024-03-14 01:55:44 +00:00
|
|
|
|
<>
|
|
|
|
|
<p className="text-sm text-primary-2">
|
|
|
|
|
Enter the authentication code generated in your two-factor
|
|
|
|
|
application to confirm your setup.
|
|
|
|
|
</p>
|
|
|
|
|
<Input fullWidth className="text-center" />
|
|
|
|
|
<Button className="w-full h-14">Confirm</Button>
|
|
|
|
|
</>
|
2024-03-14 01:52:31 +00:00
|
|
|
|
) : (
|
2024-03-14 01:55:44 +00:00
|
|
|
|
<>
|
|
|
|
|
<div className="p-6 flex justify-center border bg-secondary-2">
|
|
|
|
|
<img src={QRImg} alt="QR" className="h-36 w-36" />
|
|
|
|
|
</div>
|
|
|
|
|
<p className="font-semibold">
|
|
|
|
|
Don’t have access to scan? Use this code instead.
|
|
|
|
|
</p>
|
|
|
|
|
<div className="p-4 border text-primary-2 text-center font-bold">
|
|
|
|
|
HHH7MFGAMPJ44OM44FGAMPJ44O232
|
|
|
|
|
</div>
|
|
|
|
|
<Button
|
|
|
|
|
className="w-full h-14"
|
|
|
|
|
onClick={() => setContinue(true)}>
|
|
|
|
|
Continue
|
|
|
|
|
</Button>
|
|
|
|
|
</>
|
2024-03-14 01:52:31 +00:00
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
);
|
|
|
|
|
};
|
2024-03-14 17:45:21 +00:00
|
|
|
|
|
|
|
|
|
const PasswordDots = ({ className }: { className?: string }) => {
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
width="219"
|
|
|
|
|
height="7"
|
|
|
|
|
viewBox="0 0 219 7"
|
|
|
|
|
fill="none"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
className={className}>
|
|
|
|
|
<circle cx="3.7771" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="31.7771" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="45.7771" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="17.7771" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="59.7771" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="73.7771" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="87.7771" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="101.777" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="131.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="117.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="145.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="159.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="173.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="187.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="201.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
<circle cx="215.5" cy="3.5" r="3.5" fill="currentColor" />
|
|
|
|
|
</svg>
|
|
|
|
|
);
|
|
|
|
|
};
|