186 lines
6.7 KiB
TypeScript
186 lines
6.7 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useRef, useState } from "react";
|
|
import { KeyRound, LogOut, Settings, UserCircle2 } from "lucide-react";
|
|
import { api } from "@/lib/api-client";
|
|
|
|
export function ProfileMenu({
|
|
username,
|
|
onOpenHouseholdSettings,
|
|
}: {
|
|
username: string;
|
|
onOpenHouseholdSettings: () => void;
|
|
}) {
|
|
const [open, setOpen] = useState(false);
|
|
const [showPasswordDialog, setShowPasswordDialog] = useState(false);
|
|
const menuRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
useEffect(() => {
|
|
function handleClickOutside(e: MouseEvent) {
|
|
if (menuRef.current && !menuRef.current.contains(e.target as Node)) {
|
|
setOpen(false);
|
|
}
|
|
}
|
|
document.addEventListener("mousedown", handleClickOutside);
|
|
return () => document.removeEventListener("mousedown", handleClickOutside);
|
|
}, []);
|
|
|
|
return (
|
|
<div className="relative" ref={menuRef}>
|
|
<button
|
|
type="button"
|
|
onClick={() => setOpen((v) => !v)}
|
|
className="flex items-center gap-2 rounded-full border border-zinc-200 bg-white py-1 pl-1 pr-3 text-sm shadow-sm hover:bg-zinc-50 dark:border-zinc-700 dark:bg-zinc-800 dark:hover:bg-zinc-700"
|
|
>
|
|
<span className="flex h-7 w-7 items-center justify-center rounded-full bg-indigo-100 text-xs font-semibold uppercase text-indigo-700 dark:bg-indigo-500/20 dark:text-indigo-300">
|
|
{username.slice(0, 2)}
|
|
</span>
|
|
<span className="hidden font-medium text-zinc-700 sm:inline dark:text-zinc-200">{username}</span>
|
|
</button>
|
|
|
|
{open && (
|
|
<div className="absolute right-0 top-11 z-30 w-56 overflow-hidden rounded-xl border border-zinc-200 bg-white shadow-lg dark:border-zinc-700 dark:bg-zinc-800">
|
|
<div className="border-b border-zinc-100 px-4 py-3 dark:border-zinc-700">
|
|
<div className="flex items-center gap-2">
|
|
<UserCircle2 className="h-4 w-4 text-indigo-500 dark:text-indigo-400" />
|
|
<span className="text-sm font-medium text-zinc-800 dark:text-zinc-100">{username}</span>
|
|
</div>
|
|
</div>
|
|
<MenuItem
|
|
icon={<Settings className="h-4 w-4" />}
|
|
label="Grundprofil bearbeiten"
|
|
onClick={() => {
|
|
setOpen(false);
|
|
onOpenHouseholdSettings();
|
|
}}
|
|
/>
|
|
<MenuItem
|
|
icon={<KeyRound className="h-4 w-4" />}
|
|
label="Passwort aendern"
|
|
onClick={() => {
|
|
setOpen(false);
|
|
setShowPasswordDialog(true);
|
|
}}
|
|
/>
|
|
<MenuItem
|
|
icon={<LogOut className="h-4 w-4" />}
|
|
label="Abmelden"
|
|
onClick={async () => {
|
|
await api.post("/api/auth/logout");
|
|
window.location.href = "/login";
|
|
}}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{showPasswordDialog && <ChangePasswordDialog onClose={() => setShowPasswordDialog(false)} />}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function MenuItem({
|
|
icon,
|
|
label,
|
|
onClick,
|
|
}: {
|
|
icon: React.ReactNode;
|
|
label: string;
|
|
onClick: () => void;
|
|
}) {
|
|
return (
|
|
<button
|
|
type="button"
|
|
onClick={onClick}
|
|
className="flex w-full items-center gap-2.5 px-4 py-2.5 text-left text-sm text-zinc-700 hover:bg-indigo-50 hover:text-indigo-700 dark:text-zinc-200 dark:hover:bg-indigo-500/10 dark:hover:text-indigo-300"
|
|
>
|
|
{icon}
|
|
{label}
|
|
</button>
|
|
);
|
|
}
|
|
|
|
function ChangePasswordDialog({ onClose }: { onClose: () => void }) {
|
|
const [currentPassword, setCurrentPassword] = useState("");
|
|
const [newPassword, setNewPassword] = useState("");
|
|
const [newPasswordConfirm, setNewPasswordConfirm] = useState("");
|
|
const [error, setError] = useState<string | null>(null);
|
|
const [saving, setSaving] = useState(false);
|
|
const [done, setDone] = useState(false);
|
|
|
|
async function handleSubmit(e: React.FormEvent) {
|
|
e.preventDefault();
|
|
setError(null);
|
|
if (newPassword !== newPasswordConfirm) {
|
|
setError("Die neuen Passwoerter stimmen nicht ueberein.");
|
|
return;
|
|
}
|
|
setSaving(true);
|
|
try {
|
|
await api.post("/api/auth/change-password", { currentPassword, newPassword });
|
|
setDone(true);
|
|
setTimeout(onClose, 1200);
|
|
} catch (err) {
|
|
setError(err instanceof Error ? err.message : "Passwort aendern fehlgeschlagen.");
|
|
} finally {
|
|
setSaving(false);
|
|
}
|
|
}
|
|
|
|
const inputClass =
|
|
"w-full rounded-lg border border-zinc-300 bg-white px-3 py-2 text-sm text-zinc-900 shadow-sm focus:border-indigo-500 focus:outline-none focus:ring-2 focus:ring-indigo-500/20 dark:border-zinc-700 dark:bg-zinc-950 dark:text-zinc-100";
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-40 flex items-center justify-center bg-black/40 px-4" onClick={onClose}>
|
|
<form
|
|
onSubmit={handleSubmit}
|
|
onClick={(e) => e.stopPropagation()}
|
|
className="flex w-full max-w-sm flex-col gap-3 rounded-2xl border border-zinc-200 bg-white p-6 shadow-xl dark:border-zinc-700 dark:bg-zinc-900"
|
|
>
|
|
<h2 className="text-base font-semibold text-zinc-900 dark:text-zinc-50">Passwort aendern</h2>
|
|
<input
|
|
type="password"
|
|
placeholder="Aktuelles Passwort"
|
|
autoComplete="current-password"
|
|
value={currentPassword}
|
|
onChange={(e) => setCurrentPassword(e.target.value)}
|
|
className={inputClass}
|
|
/>
|
|
<input
|
|
type="password"
|
|
placeholder="Neues Passwort"
|
|
autoComplete="new-password"
|
|
value={newPassword}
|
|
onChange={(e) => setNewPassword(e.target.value)}
|
|
className={inputClass}
|
|
/>
|
|
<input
|
|
type="password"
|
|
placeholder="Neues Passwort bestaetigen"
|
|
autoComplete="new-password"
|
|
value={newPasswordConfirm}
|
|
onChange={(e) => setNewPasswordConfirm(e.target.value)}
|
|
className={inputClass}
|
|
/>
|
|
{error && <p className="text-sm text-red-600 dark:text-red-400">{error}</p>}
|
|
{done && <p className="text-sm text-emerald-600 dark:text-emerald-400">Passwort geaendert.</p>}
|
|
<div className="flex gap-2 pt-1">
|
|
<button
|
|
type="submit"
|
|
disabled={saving}
|
|
className="rounded-lg bg-indigo-600 px-4 py-2 text-sm font-medium text-white shadow-sm hover:bg-indigo-500 disabled:opacity-50 dark:bg-indigo-500 dark:hover:bg-indigo-400"
|
|
>
|
|
{saving ? "..." : "Speichern"}
|
|
</button>
|
|
<button
|
|
type="button"
|
|
onClick={onClose}
|
|
className="rounded-lg border border-zinc-300 px-4 py-2 text-sm font-medium text-zinc-700 hover:bg-zinc-50 dark:border-zinc-700 dark:text-zinc-200 dark:hover:bg-zinc-800"
|
|
>
|
|
Abbrechen
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
);
|
|
}
|