File size: 4,323 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
import { zodResolver } from "@hookform/resolvers/zod";
import { t, Trans } from "@lingui/macro";
import { ArrowRight } from "@phosphor-icons/react";
import { loginSchema } from "@reactive-resume/dto";
import { usePasswordToggle } from "@reactive-resume/hooks";
import {
Alert,
AlertTitle,
Button,
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
FormMessage,
Input,
} from "@reactive-resume/ui";
import { cn } from "@reactive-resume/utils";
import { useRef } from "react";
import { Helmet } from "react-helmet-async";
import { useForm } from "react-hook-form";
import { Link } from "react-router";
import type { z } from "zod";
import { useLogin } from "@/client/services/auth";
import { useFeatureFlags } from "@/client/services/feature";
type FormValues = z.infer<typeof loginSchema>;
export const LoginPage = () => {
const { login, loading } = useLogin();
const { flags } = useFeatureFlags();
const formRef = useRef<HTMLFormElement>(null);
usePasswordToggle(formRef);
const form = useForm<FormValues>({
resolver: zodResolver(loginSchema),
defaultValues: { identifier: "", password: "" },
});
const onSubmit = async (data: FormValues) => {
try {
await login(data);
} catch {
form.reset();
}
};
return (
<div className="space-y-8">
<Helmet>
<title>
{t`Sign in to your account`} - {t`Reactive Resume`}
</title>
</Helmet>
<div className="space-y-1.5">
<h2 className="text-2xl font-semibold tracking-tight">{t`Sign in to your account`}</h2>
<h6>
<span className="opacity-75">{t`Don't have an account?`}</span>
<Button asChild variant="link" className="px-1.5">
<Link to="/auth/register">
{t({ message: "Create one now", context: "This is a link to create a new account" })}{" "}
<ArrowRight className="ml-1" />
</Link>
</Button>
</h6>
</div>
{flags.isEmailAuthDisabled && (
<Alert variant="error">
<AlertTitle>{t`Signing in via email is currently disabled by the administrator.`}</AlertTitle>
</Alert>
)}
<div className={cn(flags.isEmailAuthDisabled && "pointer-events-none select-none blur-sm")}>
<Form {...form}>
<form
ref={formRef}
className="flex flex-col gap-y-4"
onSubmit={form.handleSubmit(onSubmit)}
>
<FormField
name="identifier"
control={form.control}
render={({ field }) => (
<FormItem>
<FormLabel>{t`Email`}</FormLabel>
<FormControl>
<Input
autoComplete="email"
className="lowercase"
placeholder="john.doe@example.com"
{...field}
/>
</FormControl>
<FormDescription>{t`You can also enter your username.`}</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
name="password"
control={form.control}
render={({ field }) => (
<FormItem>
<FormLabel>{t`Password`}</FormLabel>
<FormControl>
<Input type="password" autoComplete="password" {...field} />
</FormControl>
<FormDescription>
<Trans>
Hold <code className="text-xs font-bold">Ctrl</code> to display your password
temporarily.
</Trans>
</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<div className="mt-4 flex items-center gap-x-4">
<Button type="submit" disabled={loading} className="flex-1">
{t`Sign in`}
</Button>
<Button asChild variant="link" className="px-4">
<Link to="/auth/forgot-password">{t`Forgot Password?`}</Link>
</Button>
</div>
</form>
</Form>
</div>
</div>
);
};
|