314 lines
14 KiB
TypeScript
314 lines
14 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "@/components/ui/card";
|
|
import {
|
|
User,
|
|
Mail,
|
|
Phone,
|
|
Save,
|
|
ArrowLeft,
|
|
Lock,
|
|
Eye,
|
|
EyeOff,
|
|
} from "lucide-react";
|
|
import Link from "next/link";
|
|
import { Navbar } from "@/components/Navbar";
|
|
import { useAppTheme } from "@/components/ThemeProvider";
|
|
|
|
export default function SettingsPage() {
|
|
const { theme } = useAppTheme();
|
|
const isDark = theme === "dark";
|
|
const [loading, setLoading] = useState(false);
|
|
const [formData, setFormData] = useState({
|
|
fullName: "John Doe",
|
|
email: "john.doe@example.com",
|
|
phone: "+1 (555) 123-4567",
|
|
});
|
|
const [passwordData, setPasswordData] = useState({
|
|
currentPassword: "",
|
|
newPassword: "",
|
|
confirmPassword: "",
|
|
});
|
|
const [showPasswords, setShowPasswords] = useState({
|
|
current: false,
|
|
new: false,
|
|
confirm: false,
|
|
});
|
|
|
|
const handleInputChange = (field: string, value: string) => {
|
|
setFormData((prev) => ({
|
|
...prev,
|
|
[field]: value,
|
|
}));
|
|
};
|
|
|
|
const handlePasswordChange = (field: string, value: string) => {
|
|
setPasswordData((prev) => ({
|
|
...prev,
|
|
[field]: value,
|
|
}));
|
|
};
|
|
|
|
const togglePasswordVisibility = (field: "current" | "new" | "confirm") => {
|
|
setShowPasswords((prev) => ({
|
|
...prev,
|
|
[field]: !prev[field],
|
|
}));
|
|
};
|
|
|
|
const handleSave = async () => {
|
|
setLoading(true);
|
|
// Simulate API call
|
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
setLoading(false);
|
|
// In a real app, you would show a success message here
|
|
};
|
|
|
|
const handlePasswordSave = async () => {
|
|
if (passwordData.newPassword !== passwordData.confirmPassword) {
|
|
// In a real app, you would show an error message here
|
|
alert("New passwords do not match");
|
|
return;
|
|
}
|
|
if (passwordData.newPassword.length < 8) {
|
|
// In a real app, you would show an error message here
|
|
alert("Password must be at least 8 characters long");
|
|
return;
|
|
}
|
|
setLoading(true);
|
|
// Simulate API call
|
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
setLoading(false);
|
|
// Reset password fields
|
|
setPasswordData({
|
|
currentPassword: "",
|
|
newPassword: "",
|
|
confirmPassword: "",
|
|
});
|
|
// In a real app, you would show a success message here
|
|
};
|
|
|
|
return (
|
|
<div className={`min-h-screen ${isDark ? 'bg-gray-900' : 'bg-gray-50'}`}>
|
|
<Navbar />
|
|
|
|
{/* Main Content */}
|
|
<main className="container mx-auto px-4 sm:px-6 lg:px-8 space-y-6 pt-20 sm:pt-24 pb-8">
|
|
{/* Header */}
|
|
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4 mb-6">
|
|
<div className="flex items-center gap-4">
|
|
<Link href="/user/dashboard">
|
|
<Button variant="ghost" size="icon" className={isDark ? 'hover:bg-gray-800 text-gray-300' : 'hover:bg-gray-100'}>
|
|
<ArrowLeft className="w-4 h-4" />
|
|
</Button>
|
|
</Link>
|
|
<div>
|
|
<h1 className={`text-2xl font-semibold mb-1 ${isDark ? 'text-white' : 'text-gray-900'}`}>
|
|
Settings
|
|
</h1>
|
|
<p className={`text-sm ${isDark ? 'text-gray-400' : 'text-gray-600'}`}>
|
|
Manage your account settings and preferences
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<Button
|
|
onClick={handleSave}
|
|
disabled={loading}
|
|
className="w-full sm:w-auto bg-gradient-to-r from-rose-500 to-pink-600 hover:from-rose-600 hover:to-pink-700 text-white"
|
|
>
|
|
{loading ? (
|
|
<div className="animate-spin rounded-full h-4 w-4 border-b-2 border-white mr-2"></div>
|
|
) : (
|
|
<Save className="w-4 h-4 mr-2" />
|
|
)}
|
|
Save Changes
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="max-w-4xl mx-auto">
|
|
<div className="space-y-6">
|
|
{/* Profile Information */}
|
|
<Card className={isDark ? 'bg-gray-800 border-gray-700' : 'bg-white border-gray-200'}>
|
|
<CardHeader>
|
|
<div className="flex items-center gap-2">
|
|
<User className={`w-5 h-5 ${isDark ? 'text-gray-400' : 'text-gray-600'}`} />
|
|
<CardTitle className={isDark ? 'text-white' : 'text-gray-900'}>Profile Information</CardTitle>
|
|
</div>
|
|
<CardDescription className={isDark ? 'text-gray-400' : 'text-gray-600'}>
|
|
Update your personal information and contact details
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2">
|
|
<label className={`text-sm font-medium ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>
|
|
Full Name
|
|
</label>
|
|
<div className="relative">
|
|
<User className={`absolute left-3 top-1/2 transform -translate-y-1/2 w-4 h-4 ${isDark ? 'text-gray-500' : 'text-gray-400'}`} />
|
|
<Input
|
|
type="text"
|
|
value={formData.fullName}
|
|
onChange={(e) => handleInputChange("fullName", e.target.value)}
|
|
className={`pl-10 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900'}`}
|
|
placeholder="Enter your full name"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label className={`text-sm font-medium ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>
|
|
Email Address
|
|
</label>
|
|
<div className="relative">
|
|
<Mail className={`absolute left-3 top-1/2 transform -translate-y-1/2 w-4 h-4 ${isDark ? 'text-gray-500' : 'text-gray-400'}`} />
|
|
<Input
|
|
type="email"
|
|
value={formData.email}
|
|
onChange={(e) => handleInputChange("email", e.target.value)}
|
|
className={`pl-10 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900'}`}
|
|
placeholder="Enter your email"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label className={`text-sm font-medium ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>
|
|
Phone Number
|
|
</label>
|
|
<div className="relative">
|
|
<Phone className={`absolute left-3 top-1/2 transform -translate-y-1/2 w-4 h-4 ${isDark ? 'text-gray-500' : 'text-gray-400'}`} />
|
|
<Input
|
|
type="tel"
|
|
value={formData.phone}
|
|
onChange={(e) => handleInputChange("phone", e.target.value)}
|
|
className={`pl-10 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900'}`}
|
|
placeholder="Enter your phone number"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
{/* Change Password */}
|
|
<Card className={isDark ? 'bg-gray-800 border-gray-700' : 'bg-white border-gray-200'}>
|
|
<CardHeader>
|
|
<div className="flex items-center gap-2">
|
|
<Lock className={`w-5 h-5 ${isDark ? 'text-gray-400' : 'text-gray-600'}`} />
|
|
<CardTitle className={isDark ? 'text-white' : 'text-gray-900'}>Change Password</CardTitle>
|
|
</div>
|
|
<CardDescription className={isDark ? 'text-gray-400' : 'text-gray-600'}>
|
|
Update your password to keep your account secure
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2">
|
|
<label className={`text-sm font-medium ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>
|
|
Current Password
|
|
</label>
|
|
<div className="relative">
|
|
<Lock className={`absolute left-3 top-1/2 transform -translate-y-1/2 w-4 h-4 ${isDark ? 'text-gray-500' : 'text-gray-400'}`} />
|
|
<Input
|
|
type={showPasswords.current ? "text" : "password"}
|
|
value={passwordData.currentPassword}
|
|
onChange={(e) => handlePasswordChange("currentPassword", e.target.value)}
|
|
className={`pl-10 pr-10 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900'}`}
|
|
placeholder="Enter your current password"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => togglePasswordVisibility("current")}
|
|
className={`absolute right-3 top-1/2 transform -translate-y-1/2 ${isDark ? 'text-gray-400 hover:text-gray-300' : 'text-gray-400 hover:text-gray-600'}`}
|
|
>
|
|
{showPasswords.current ? (
|
|
<EyeOff className="w-4 h-4" />
|
|
) : (
|
|
<Eye className="w-4 h-4" />
|
|
)}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label className={`text-sm font-medium ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>
|
|
New Password
|
|
</label>
|
|
<div className="relative">
|
|
<Lock className={`absolute left-3 top-1/2 transform -translate-y-1/2 w-4 h-4 ${isDark ? 'text-gray-500' : 'text-gray-400'}`} />
|
|
<Input
|
|
type={showPasswords.new ? "text" : "password"}
|
|
value={passwordData.newPassword}
|
|
onChange={(e) => handlePasswordChange("newPassword", e.target.value)}
|
|
className={`pl-10 pr-10 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900'}`}
|
|
placeholder="Enter your new password"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => togglePasswordVisibility("new")}
|
|
className={`absolute right-3 top-1/2 transform -translate-y-1/2 ${isDark ? 'text-gray-400 hover:text-gray-300' : 'text-gray-400 hover:text-gray-600'}`}
|
|
>
|
|
{showPasswords.new ? (
|
|
<EyeOff className="w-4 h-4" />
|
|
) : (
|
|
<Eye className="w-4 h-4" />
|
|
)}
|
|
</button>
|
|
</div>
|
|
<p className={`text-xs ${isDark ? 'text-gray-400' : 'text-gray-500'}`}>
|
|
Password must be at least 8 characters long
|
|
</p>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<label className={`text-sm font-medium ${isDark ? 'text-gray-300' : 'text-gray-700'}`}>
|
|
Confirm New Password
|
|
</label>
|
|
<div className="relative">
|
|
<Lock className={`absolute left-3 top-1/2 transform -translate-y-1/2 w-4 h-4 ${isDark ? 'text-gray-500' : 'text-gray-400'}`} />
|
|
<Input
|
|
type={showPasswords.confirm ? "text" : "password"}
|
|
value={passwordData.confirmPassword}
|
|
onChange={(e) => handlePasswordChange("confirmPassword", e.target.value)}
|
|
className={`pl-10 pr-10 ${isDark ? 'bg-gray-700 border-gray-600 text-white placeholder:text-gray-400' : 'bg-white border-gray-300 text-gray-900'}`}
|
|
placeholder="Confirm your new password"
|
|
/>
|
|
<button
|
|
type="button"
|
|
onClick={() => togglePasswordVisibility("confirm")}
|
|
className={`absolute right-3 top-1/2 transform -translate-y-1/2 ${isDark ? 'text-gray-400 hover:text-gray-300' : 'text-gray-400 hover:text-gray-600'}`}
|
|
>
|
|
{showPasswords.confirm ? (
|
|
<EyeOff className="w-4 h-4" />
|
|
) : (
|
|
<Eye className="w-4 h-4" />
|
|
)}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="pt-2">
|
|
<Button
|
|
onClick={handlePasswordSave}
|
|
disabled={loading || !passwordData.currentPassword || !passwordData.newPassword || !passwordData.confirmPassword}
|
|
className="bg-gradient-to-r from-rose-500 to-pink-600 hover:from-rose-600 hover:to-pink-700 text-white"
|
|
>
|
|
{loading ? (
|
|
<div className="animate-spin rounded-full h-4 w-4 border-b-2 border-white mr-2"></div>
|
|
) : (
|
|
<Lock className="w-4 h-4 mr-2" />
|
|
)}
|
|
Update Password
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|
|
|