Add authentication

This commit is contained in:
2025-07-18 19:56:07 -04:00
parent 3b9c0cc31b
commit 1121e5c6ff
25 changed files with 3047 additions and 109 deletions

View File

@@ -0,0 +1,161 @@
"use client";
import { useState } from "react";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { Button } from "~/components/ui/button";
import { Input } from "~/components/ui/input";
import { Label } from "~/components/ui/label";
import { api } from "~/trpc/react";
const passwordSchema = z
.object({
currentPassword: z.string().min(1, "Current password is required"),
newPassword: z
.string()
.min(6, "Password must be at least 6 characters")
.max(100, "Password is too long"),
confirmPassword: z.string().min(1, "Please confirm your new password"),
})
.refine((data) => data.newPassword === data.confirmPassword, {
message: "Passwords don't match",
path: ["confirmPassword"],
});
type PasswordFormData = z.infer<typeof passwordSchema>;
export function PasswordChangeForm() {
const [showForm, setShowForm] = useState(false);
const form = useForm<PasswordFormData>({
resolver: zodResolver(passwordSchema),
defaultValues: {
currentPassword: "",
newPassword: "",
confirmPassword: "",
},
});
const changePassword = api.users.changePassword.useMutation({
onSuccess: () => {
form.reset();
setShowForm(false);
},
onError: (error) => {
console.error("Error changing password:", error);
},
});
const onSubmit = (data: PasswordFormData) => {
changePassword.mutate({
currentPassword: data.currentPassword,
newPassword: data.newPassword,
});
};
const handleCancel = () => {
form.reset();
setShowForm(false);
};
if (!showForm) {
return (
<div className="space-y-4">
<div>
<p className="text-sm text-slate-600">
Change your account password for enhanced security
</p>
</div>
<div className="flex justify-end">
<Button onClick={() => setShowForm(true)} variant="outline">
Change Password
</Button>
</div>
</div>
);
}
return (
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
{changePassword.error && (
<div className="rounded-md bg-red-50 p-3 text-sm text-red-700">
<p className="font-medium">Error changing password</p>
<p>{changePassword.error.message}</p>
</div>
)}
{changePassword.isSuccess && (
<div className="rounded-md bg-green-50 p-3 text-sm text-green-700">
<p className="font-medium">Password changed successfully</p>
<p>Your password has been updated.</p>
</div>
)}
<div className="space-y-4">
<div className="space-y-2">
<Label htmlFor="currentPassword">Current Password</Label>
<Input
id="currentPassword"
type="password"
{...form.register("currentPassword")}
placeholder="Enter your current password"
disabled={changePassword.isPending}
/>
{form.formState.errors.currentPassword && (
<p className="text-sm text-red-600">
{form.formState.errors.currentPassword.message}
</p>
)}
</div>
<div className="space-y-2">
<Label htmlFor="newPassword">New Password</Label>
<Input
id="newPassword"
type="password"
{...form.register("newPassword")}
placeholder="Enter your new password"
disabled={changePassword.isPending}
/>
{form.formState.errors.newPassword && (
<p className="text-sm text-red-600">
{form.formState.errors.newPassword.message}
</p>
)}
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirm New Password</Label>
<Input
id="confirmPassword"
type="password"
{...form.register("confirmPassword")}
placeholder="Confirm your new password"
disabled={changePassword.isPending}
/>
{form.formState.errors.confirmPassword && (
<p className="text-sm text-red-600">
{form.formState.errors.confirmPassword.message}
</p>
)}
</div>
</div>
<div className="flex justify-end gap-3">
<Button
type="button"
variant="outline"
onClick={handleCancel}
disabled={changePassword.isPending}
>
Cancel
</Button>
<Button type="submit" disabled={changePassword.isPending}>
{changePassword.isPending ? "Changing..." : "Change Password"}
</Button>
</div>
</form>
);
}

View File

@@ -0,0 +1,148 @@
"use client";
import { useState } from "react";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
import { Button } from "~/components/ui/button";
import { Input } from "~/components/ui/input";
import { Label } from "~/components/ui/label";
import { api } from "~/trpc/react";
import { useRouter } from "next/navigation";
const profileSchema = z.object({
name: z.string().min(1, "Name is required").max(100, "Name is too long"),
email: z.string().email("Invalid email address"),
});
type ProfileFormData = z.infer<typeof profileSchema>;
interface ProfileEditFormProps {
user: {
id: string;
name: string | null;
email: string | null;
image: string | null;
};
}
export function ProfileEditForm({ user }: ProfileEditFormProps) {
const [isEditing, setIsEditing] = useState(false);
const router = useRouter();
const form = useForm<ProfileFormData>({
resolver: zodResolver(profileSchema),
defaultValues: {
name: user.name ?? "",
email: user.email ?? "",
},
});
const updateProfile = api.users.update.useMutation({
onSuccess: () => {
setIsEditing(false);
router.refresh();
},
onError: (error) => {
console.error("Error updating profile:", error);
},
});
const onSubmit = (data: ProfileFormData) => {
updateProfile.mutate({
id: user.id,
name: data.name,
email: data.email,
});
};
const handleCancel = () => {
form.reset();
setIsEditing(false);
};
if (!isEditing) {
return (
<div className="space-y-4">
<div className="grid grid-cols-2 gap-4">
<div>
<Label className="text-sm font-medium text-slate-700">Name</Label>
<p className="mt-1 text-sm text-slate-900">
{user.name ?? "Not set"}
</p>
</div>
<div>
<Label className="text-sm font-medium text-slate-700">Email</Label>
<p className="mt-1 text-sm text-slate-900">
{user.email ?? "Not set"}
</p>
</div>
</div>
<div className="flex justify-end">
<Button onClick={() => setIsEditing(true)} variant="outline">
Edit Profile
</Button>
</div>
</div>
);
}
return (
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4">
{updateProfile.error && (
<div className="rounded-md bg-red-50 p-3 text-sm text-red-700">
<p className="font-medium">Error updating profile</p>
<p>{updateProfile.error.message}</p>
</div>
)}
<div className="grid grid-cols-1 gap-4 sm:grid-cols-2">
<div className="space-y-2">
<Label htmlFor="name">Full Name</Label>
<Input
id="name"
{...form.register("name")}
placeholder="Enter your full name"
disabled={updateProfile.isPending}
/>
{form.formState.errors.name && (
<p className="text-sm text-red-600">
{form.formState.errors.name.message}
</p>
)}
</div>
<div className="space-y-2">
<Label htmlFor="email">Email Address</Label>
<Input
id="email"
type="email"
{...form.register("email")}
placeholder="Enter your email address"
disabled={updateProfile.isPending}
/>
{form.formState.errors.email && (
<p className="text-sm text-red-600">
{form.formState.errors.email.message}
</p>
)}
</div>
</div>
<div className="flex justify-end gap-3">
<Button
type="button"
variant="outline"
onClick={handleCancel}
disabled={updateProfile.isPending}
>
Cancel
</Button>
<Button type="submit" disabled={updateProfile.isPending}>
{updateProfile.isPending ? "Saving..." : "Save Changes"}
</Button>
</div>
</form>
);
}