657 lines
22 KiB
TypeScript
657 lines
22 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Separator } from "@/components/ui/separator";
|
|
import { Switch } from "@/components/ui/switch";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
|
import {
|
|
IconBell,
|
|
IconKey,
|
|
IconLock,
|
|
IconShield,
|
|
IconUpload,
|
|
IconUser,
|
|
} from "@tabler/icons-react";
|
|
import { toast } from "sonner";
|
|
import {
|
|
updateUserProfile,
|
|
changePassword,
|
|
getUserSettings,
|
|
updateUserSettings,
|
|
deleteUserAccount,
|
|
exportUserData,
|
|
} from "@/lib/actions/settings-actions";
|
|
|
|
type User = {
|
|
id: string;
|
|
name: string;
|
|
email: string;
|
|
phone?: string | null;
|
|
image?: string | null;
|
|
dateOfBirth?: Date | null;
|
|
address?: string | null;
|
|
role?: string;
|
|
};
|
|
|
|
type UserSettingsContentProps = {
|
|
user: User;
|
|
};
|
|
|
|
export function UserSettingsContent({ user }: UserSettingsContentProps) {
|
|
const [isLoading, setIsLoading] = React.useState(false);
|
|
|
|
// Profile State
|
|
const [name, setName] = React.useState(user.name);
|
|
const [email, setEmail] = React.useState(user.email);
|
|
const [phone, setPhone] = React.useState(user.phone || "");
|
|
const [address, setAddress] = React.useState(user.address || "");
|
|
const [dateOfBirth, setDateOfBirth] = React.useState(
|
|
user.dateOfBirth
|
|
? new Date(user.dateOfBirth).toISOString().split("T")[0]
|
|
: ""
|
|
);
|
|
|
|
// Password State
|
|
const [currentPassword, setCurrentPassword] = React.useState("");
|
|
const [newPassword, setNewPassword] = React.useState("");
|
|
const [confirmPassword, setConfirmPassword] = React.useState("");
|
|
|
|
// Notification Settings
|
|
const [emailNotifications, setEmailNotifications] = React.useState(true);
|
|
const [smsNotifications, setSmsNotifications] = React.useState(true);
|
|
const [appointmentReminders, setAppointmentReminders] = React.useState(true);
|
|
const [promotionalEmails, setPromotionalEmails] = React.useState(false);
|
|
const [reminderTiming, setReminderTiming] = React.useState("24");
|
|
|
|
// Privacy Settings
|
|
const [profileVisibility, setProfileVisibility] = React.useState("private");
|
|
const [shareData, setShareData] = React.useState(false);
|
|
const [twoFactorAuth, setTwoFactorAuth] = React.useState(false);
|
|
|
|
// Load settings on mount
|
|
React.useEffect(() => {
|
|
const loadSettings = async () => {
|
|
try {
|
|
const settings = await getUserSettings(user.id);
|
|
if (settings) {
|
|
setEmailNotifications(settings.emailNotifications);
|
|
setSmsNotifications(settings.smsNotifications);
|
|
setAppointmentReminders(settings.appointmentReminders);
|
|
setPromotionalEmails(settings.promotionalEmails);
|
|
setReminderTiming(settings.reminderTiming);
|
|
setProfileVisibility(settings.profileVisibility);
|
|
setShareData(settings.shareData);
|
|
setTwoFactorAuth(settings.twoFactorAuth);
|
|
}
|
|
} catch (error) {
|
|
console.error("Failed to load settings:", error);
|
|
}
|
|
};
|
|
loadSettings();
|
|
}, [user.id]);
|
|
|
|
const handleSaveProfile = async () => {
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await updateUserProfile({
|
|
name,
|
|
email,
|
|
phone,
|
|
address,
|
|
dateOfBirth,
|
|
});
|
|
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
} else {
|
|
toast.error(result.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error("Failed to update profile");
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleChangePassword = async () => {
|
|
if (newPassword !== confirmPassword) {
|
|
toast.error("Passwords do not match");
|
|
return;
|
|
}
|
|
if (newPassword.length < 8) {
|
|
toast.error("Password must be at least 8 characters");
|
|
return;
|
|
}
|
|
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await changePassword({
|
|
currentPassword,
|
|
newPassword,
|
|
});
|
|
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
setCurrentPassword("");
|
|
setNewPassword("");
|
|
setConfirmPassword("");
|
|
} else {
|
|
toast.error(result.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error("Failed to change password");
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleSaveNotifications = async () => {
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await updateUserSettings({
|
|
emailNotifications,
|
|
smsNotifications,
|
|
appointmentReminders,
|
|
promotionalEmails,
|
|
reminderTiming,
|
|
});
|
|
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
} else {
|
|
toast.error(result.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error("Failed to save notification settings");
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleSavePrivacy = async () => {
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await updateUserSettings({
|
|
profileVisibility,
|
|
shareData,
|
|
twoFactorAuth,
|
|
});
|
|
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
} else {
|
|
toast.error(result.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error("Failed to save privacy settings");
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleDeleteAccount = async () => {
|
|
if (
|
|
!confirm(
|
|
"Are you sure you want to delete your account? This action cannot be undone."
|
|
)
|
|
) {
|
|
return;
|
|
}
|
|
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await deleteUserAccount();
|
|
if (result.success) {
|
|
toast.success(result.message);
|
|
// Redirect to logout or home
|
|
window.location.href = "/";
|
|
} else {
|
|
toast.error(result.message);
|
|
}
|
|
} catch (error) {
|
|
toast.error("Failed to delete account");
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const handleExportData = async () => {
|
|
setIsLoading(true);
|
|
try {
|
|
const result = await exportUserData();
|
|
if (result.success && result.data) {
|
|
// Create a blob and download
|
|
const blob = new Blob([result.data], { type: "application/json" });
|
|
const url = URL.createObjectURL(blob);
|
|
const a = document.createElement("a");
|
|
a.href = url;
|
|
a.download = `user-data-${user.id}-${new Date().toISOString()}.json`;
|
|
document.body.appendChild(a);
|
|
a.click();
|
|
document.body.removeChild(a);
|
|
URL.revokeObjectURL(url);
|
|
toast.success(result.message);
|
|
} else {
|
|
toast.error(result.message || "Failed to export data");
|
|
}
|
|
} catch (error) {
|
|
toast.error("Failed to export data");
|
|
console.error(error);
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
};
|
|
|
|
const getInitials = (name: string) => {
|
|
return name
|
|
.split(" ")
|
|
.map((n) => n[0])
|
|
.join("")
|
|
.toUpperCase()
|
|
.slice(0, 2);
|
|
};
|
|
|
|
return (
|
|
<div className="flex flex-1 flex-col gap-4 p-4 md:gap-6 md:p-6">
|
|
<div className="flex items-center justify-between">
|
|
<div>
|
|
<h1 className="text-2xl font-bold">Settings</h1>
|
|
<p className="text-sm text-muted-foreground">
|
|
Manage your account settings and preferences
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<Tabs defaultValue="profile" className="space-y-4">
|
|
<TabsList className="grid w-full grid-cols-2 lg:grid-cols-4">
|
|
<TabsTrigger value="profile" className="gap-2">
|
|
<IconUser className="size-4" />
|
|
<span className="hidden sm:inline">Profile</span>
|
|
</TabsTrigger>
|
|
<TabsTrigger value="security" className="gap-2">
|
|
<IconLock className="size-4" />
|
|
<span className="hidden sm:inline">Security</span>
|
|
</TabsTrigger>
|
|
<TabsTrigger value="notifications" className="gap-2">
|
|
<IconBell className="size-4" />
|
|
<span className="hidden sm:inline">Notifications</span>
|
|
</TabsTrigger>
|
|
<TabsTrigger value="privacy" className="gap-2">
|
|
<IconShield className="size-4" />
|
|
<span className="hidden sm:inline">Privacy</span>
|
|
</TabsTrigger>
|
|
</TabsList>
|
|
|
|
{/* Profile Settings */}
|
|
<TabsContent value="profile" className="space-y-4">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Profile Information</CardTitle>
|
|
<CardDescription>
|
|
Update your personal information and profile picture
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-6">
|
|
<div className="flex items-center gap-4">
|
|
<Avatar className="size-20">
|
|
<AvatarImage src={user.image || undefined} alt={user.name} />
|
|
<AvatarFallback>{getInitials(user.name)}</AvatarFallback>
|
|
</Avatar>
|
|
<div className="space-y-2">
|
|
<Button variant="outline" size="sm" className="gap-2">
|
|
<IconUpload className="size-4" />
|
|
Upload Photo
|
|
</Button>
|
|
<p className="text-xs text-muted-foreground">
|
|
JPG, PNG or GIF. Max size 2MB
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div className="grid gap-4 md:grid-cols-2">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Full Name</Label>
|
|
<Input
|
|
id="name"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
placeholder="John Doe"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email Address</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="john@example.com"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="phone">Phone Number</Label>
|
|
<Input
|
|
id="phone"
|
|
value={phone}
|
|
onChange={(e) => setPhone(e.target.value)}
|
|
placeholder="+1 (555) 123-4567"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="dob">Date of Birth</Label>
|
|
<Input
|
|
id="dob"
|
|
type="date"
|
|
value={dateOfBirth}
|
|
onChange={(e) => setDateOfBirth(e.target.value)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="address">Address</Label>
|
|
<Textarea
|
|
id="address"
|
|
value={address}
|
|
onChange={(e) => setAddress(e.target.value)}
|
|
placeholder="123 Main Street, City, State, ZIP"
|
|
rows={3}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex justify-end">
|
|
<Button onClick={handleSaveProfile} disabled={isLoading}>
|
|
{isLoading ? "Saving..." : "Save Changes"}
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
{/* Security Settings */}
|
|
<TabsContent value="security" className="space-y-4">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Change Password</CardTitle>
|
|
<CardDescription>
|
|
Update your password to keep your account secure
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="current-password">Current Password</Label>
|
|
<Input
|
|
id="current-password"
|
|
type="password"
|
|
value={currentPassword}
|
|
onChange={(e) => setCurrentPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="new-password">New Password</Label>
|
|
<Input
|
|
id="new-password"
|
|
type="password"
|
|
value={newPassword}
|
|
onChange={(e) => setNewPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<Label htmlFor="confirm-password">Confirm New Password</Label>
|
|
<Input
|
|
id="confirm-password"
|
|
type="password"
|
|
value={confirmPassword}
|
|
onChange={(e) => setConfirmPassword(e.target.value)}
|
|
placeholder="••••••••"
|
|
/>
|
|
</div>
|
|
<div className="rounded-lg bg-muted p-3">
|
|
<p className="text-sm">
|
|
<strong>Password requirements:</strong>
|
|
</p>
|
|
<ul className="mt-2 space-y-1 text-sm text-muted-foreground">
|
|
<li>• At least 8 characters long</li>
|
|
<li>• Include uppercase and lowercase letters</li>
|
|
<li>• Include at least one number</li>
|
|
<li>• Include at least one special character</li>
|
|
</ul>
|
|
</div>
|
|
<div className="flex justify-end">
|
|
<Button onClick={handleChangePassword} disabled={isLoading}>
|
|
{isLoading ? "Changing..." : "Change Password"}
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Two-Factor Authentication</CardTitle>
|
|
<CardDescription>
|
|
Add an extra layer of security to your account
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-0.5">
|
|
<Label>Enable 2FA</Label>
|
|
<p className="text-sm text-muted-foreground">
|
|
Require a verification code in addition to your password
|
|
</p>
|
|
</div>
|
|
<Switch
|
|
checked={twoFactorAuth}
|
|
onCheckedChange={setTwoFactorAuth}
|
|
/>
|
|
</div>
|
|
{twoFactorAuth && (
|
|
<div className="rounded-lg border p-4">
|
|
<p className="text-sm font-medium">Setup 2FA</p>
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
|
Scan the QR code with your authenticator app or enter the
|
|
code manually
|
|
</p>
|
|
<Button variant="outline" size="sm" className="mt-3">
|
|
Configure 2FA
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
{/* Notifications Settings */}
|
|
<TabsContent value="notifications" className="space-y-4">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Notification Preferences</CardTitle>
|
|
<CardDescription>
|
|
Choose how you want to receive notifications
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-0.5">
|
|
<Label>Email Notifications</Label>
|
|
<p className="text-sm text-muted-foreground">
|
|
Receive updates via email
|
|
</p>
|
|
</div>
|
|
<Switch
|
|
checked={emailNotifications}
|
|
onCheckedChange={setEmailNotifications}
|
|
/>
|
|
</div>
|
|
<Separator />
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-0.5">
|
|
<Label>SMS Notifications</Label>
|
|
<p className="text-sm text-muted-foreground">
|
|
Receive updates via text message
|
|
</p>
|
|
</div>
|
|
<Switch
|
|
checked={smsNotifications}
|
|
onCheckedChange={setSmsNotifications}
|
|
/>
|
|
</div>
|
|
<Separator />
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-0.5">
|
|
<Label>Appointment Reminders</Label>
|
|
<p className="text-sm text-muted-foreground">
|
|
Get reminded before your appointments
|
|
</p>
|
|
</div>
|
|
<Switch
|
|
checked={appointmentReminders}
|
|
onCheckedChange={setAppointmentReminders}
|
|
/>
|
|
</div>
|
|
{appointmentReminders && (
|
|
<div className="ml-6 space-y-2">
|
|
<Label htmlFor="reminder-timing">Reminder timing</Label>
|
|
<Select
|
|
value={reminderTiming}
|
|
onValueChange={setReminderTiming}
|
|
>
|
|
<SelectTrigger id="reminder-timing">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="2">2 hours before</SelectItem>
|
|
<SelectItem value="4">4 hours before</SelectItem>
|
|
<SelectItem value="12">12 hours before</SelectItem>
|
|
<SelectItem value="24">24 hours before</SelectItem>
|
|
<SelectItem value="48">48 hours before</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
)}
|
|
<Separator />
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-0.5">
|
|
<Label>Promotional Emails</Label>
|
|
<p className="text-sm text-muted-foreground">
|
|
Receive news, offers, and updates
|
|
</p>
|
|
</div>
|
|
<Switch
|
|
checked={promotionalEmails}
|
|
onCheckedChange={setPromotionalEmails}
|
|
/>
|
|
</div>
|
|
<div className="flex justify-end">
|
|
<Button onClick={handleSaveNotifications} disabled={isLoading}>
|
|
{isLoading ? "Saving..." : "Save Changes"}
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
{/* Privacy Settings */}
|
|
<TabsContent value="privacy" className="space-y-4">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Privacy Settings</CardTitle>
|
|
<CardDescription>
|
|
Control your privacy and data sharing preferences
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="profile-visibility">Profile Visibility</Label>
|
|
<Select
|
|
value={profileVisibility}
|
|
onValueChange={setProfileVisibility}
|
|
>
|
|
<SelectTrigger id="profile-visibility">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="public">Public</SelectItem>
|
|
<SelectItem value="private">Private</SelectItem>
|
|
<SelectItem value="contacts">Contacts only</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
<p className="text-sm text-muted-foreground">
|
|
Control who can see your profile information
|
|
</p>
|
|
</div>
|
|
<Separator />
|
|
<div className="flex items-center justify-between">
|
|
<div className="space-y-0.5">
|
|
<Label>Share Data for Improvements</Label>
|
|
<p className="text-sm text-muted-foreground">
|
|
Help us improve our services by sharing anonymous usage data
|
|
</p>
|
|
</div>
|
|
<Switch checked={shareData} onCheckedChange={setShareData} />
|
|
</div>
|
|
<Separator />
|
|
<div className="space-y-2">
|
|
<Label className="text-base">Data Management</Label>
|
|
<div className="space-y-2">
|
|
<Button
|
|
variant="outline"
|
|
className="w-full justify-start"
|
|
onClick={handleExportData}
|
|
disabled={isLoading}
|
|
>
|
|
<IconKey className="mr-2 size-4" />
|
|
Download Your Data
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
className="w-full justify-start text-destructive hover:text-destructive"
|
|
onClick={handleDeleteAccount}
|
|
disabled={isLoading}
|
|
>
|
|
<IconShield className="mr-2 size-4" />
|
|
Delete Account
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<div className="flex justify-end">
|
|
<Button onClick={handleSavePrivacy} disabled={isLoading}>
|
|
{isLoading ? "Saving..." : "Save Changes"}
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
</Tabs>
|
|
</div>
|
|
);
|
|
}
|