- Restructure: move backend from new_project/ to backend/ - Add full React/TypeScript frontend (37 pages, 17 services, 16 type defs, 11 query hooks) - Add docs/ with SRS specs, user stories, and workflow documentation - Update .gitignore for new directory layout Workflows implemented: WF1 User Signup, WF2 Placement Test, WF3 Exam Configuration, WF4 General English Exam, WF5 Course Generation, WF6 Entity Student Onboarding, AI Course Generation, Adaptive Learning Engine UI, White-Label Branding, Score Release Made-with: Cursor
76 lines
4.0 KiB
TypeScript
76 lines
4.0 KiB
TypeScript
import { useState } from "react";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Label } from "@/components/ui/label";
|
|
import { User } from "lucide-react";
|
|
import { api } from "@/lib/api-client";
|
|
import { useMutation } from "@tanstack/react-query";
|
|
import { useToast } from "@/hooks/use-toast";
|
|
import { useAuth } from "@/contexts/AuthContext";
|
|
|
|
export default function ProfilePage() {
|
|
const { user } = useAuth();
|
|
const { toast } = useToast();
|
|
const nameParts = (user?.name || "Admin User").split(" ");
|
|
const [first, setFirst] = useState(nameParts[0] || "");
|
|
const [last, setLast] = useState(nameParts.slice(1).join(" ") || "");
|
|
const [email, setEmail] = useState(user?.email || "");
|
|
const [curPw, setCurPw] = useState("");
|
|
const [newPw, setNewPw] = useState("");
|
|
const [confirmPw, setConfirmPw] = useState("");
|
|
|
|
const saveMut = useMutation({
|
|
mutationFn: () => api.patch("/user", { first_name: first, last_name: last, email }),
|
|
onSuccess: () => toast({ title: "Profile saved" }),
|
|
onError: (err: Error) => toast({ title: "Error", description: err.message, variant: "destructive" }),
|
|
});
|
|
|
|
const pwMut = useMutation({
|
|
mutationFn: () => api.post("/user/change-password", { current_password: curPw, new_password: newPw }),
|
|
onSuccess: () => { setCurPw(""); setNewPw(""); setConfirmPw(""); toast({ title: "Password updated" }); },
|
|
onError: (err: Error) => toast({ title: "Error", description: err.message, variant: "destructive" }),
|
|
});
|
|
|
|
return (
|
|
<div className="space-y-6 max-w-2xl">
|
|
<div>
|
|
<h1 className="text-2xl font-bold tracking-tight">Profile</h1>
|
|
<p className="text-muted-foreground">Manage your account information.</p>
|
|
</div>
|
|
|
|
<Card className="border-0 shadow-sm">
|
|
<CardHeader><CardTitle className="text-base">Personal Information</CardTitle></CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="flex items-center gap-4 mb-4">
|
|
<div className="h-16 w-16 rounded-full bg-primary/10 flex items-center justify-center">
|
|
<User className="h-8 w-8 text-primary" />
|
|
</div>
|
|
</div>
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<div className="space-y-2"><Label>First Name</Label><Input value={first} onChange={(e) => setFirst(e.target.value)} /></div>
|
|
<div className="space-y-2"><Label>Last Name</Label><Input value={last} onChange={(e) => setLast(e.target.value)} /></div>
|
|
</div>
|
|
<div className="space-y-2"><Label>Email</Label><Input value={email} onChange={(e) => setEmail(e.target.value)} type="email" /></div>
|
|
<Button onClick={() => saveMut.mutate()} disabled={saveMut.isPending}>
|
|
{saveMut.isPending ? "Saving..." : "Save Changes"}
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card className="border-0 shadow-sm">
|
|
<CardHeader><CardTitle className="text-base">Change Password</CardTitle></CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2"><Label>Current Password</Label><Input type="password" value={curPw} onChange={(e) => setCurPw(e.target.value)} placeholder="••••••••" /></div>
|
|
<div className="space-y-2"><Label>New Password</Label><Input type="password" value={newPw} onChange={(e) => setNewPw(e.target.value)} placeholder="••••••••" /></div>
|
|
<div className="space-y-2"><Label>Confirm New Password</Label><Input type="password" value={confirmPw} onChange={(e) => setConfirmPw(e.target.value)} placeholder="••••••••" /></div>
|
|
{newPw && confirmPw && newPw !== confirmPw && <p className="text-sm text-destructive">Passwords do not match.</p>}
|
|
<Button onClick={() => pwMut.mutate()} disabled={pwMut.isPending || !curPw || !newPw || newPw !== confirmPw}>
|
|
{pwMut.isPending ? "Updating..." : "Update Password"}
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|