68 lines
3.1 KiB
TypeScript
68 lines
3.1 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import { Sun, Moon, ChevronDown, LogOut } from "lucide-react";
|
|
import { useAuth } from "@abe-kap/appshell-sdk/react";
|
|
import { Icon } from "./ui";
|
|
import { user } from "./account-data";
|
|
|
|
function initialsOf(name: string): string {
|
|
return name.split(/\s+/).filter(Boolean).slice(0, 2).map((p) => p[0]).join("").toUpperCase() || "?";
|
|
}
|
|
|
|
export function Topbar({ theme, onToggle, title, subtitle }: { theme: "dark" | "light"; onToggle: () => void; title: string; subtitle: string }) {
|
|
// When signed in through the Shell, show the real identity from the App Context
|
|
// Envelope; otherwise fall back to the static demo user.
|
|
const router = useRouter();
|
|
const { user: me, logout, context } = useAuth();
|
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
const roleLabel = context?.scope?.role ? context.scope.role.charAt(0).toUpperCase() + context.scope.role.slice(1) : "";
|
|
const name = me?.displayName || user.name;
|
|
const initials = me ? initialsOf(me.displayName) : user.initials;
|
|
const secondary = me?.email || roleLabel || user.role;
|
|
|
|
async function signOut() {
|
|
setMenuOpen(false);
|
|
try { await logout(); } catch { /* ignore */ }
|
|
router.replace("/portal/login");
|
|
}
|
|
|
|
return (
|
|
<header className="dash-topbar">
|
|
<div className="dash-title">
|
|
<h1>{title}</h1>
|
|
<p>{subtitle}</p>
|
|
</div>
|
|
<div className="top-actions">
|
|
<button className="ic-btn" aria-label="Search"><Icon name="search" size={18} /></button>
|
|
<button className="ic-btn" aria-label="Toggle theme" onClick={onToggle}>
|
|
{theme === "dark" ? <Moon size={18} /> : <Sun size={18} />}
|
|
</button>
|
|
<button className="ic-btn" aria-label="Notifications" style={{ position: "relative" }}>
|
|
<Icon name="bell" size={18} />
|
|
<span style={{ position: "absolute", top: 9, right: 10, width: 7, height: 7, borderRadius: 99, background: "var(--orange)", border: "2px solid var(--panel)" }} />
|
|
</button>
|
|
<div className="top-user-wrap" style={{ position: "relative" }}>
|
|
<button className="top-user" onClick={() => setMenuOpen((o) => !o)} aria-haspopup="menu" aria-expanded={menuOpen}>
|
|
<span className="av" style={{ background: user.avatarGradient, display: "grid", placeItems: "center", color: "#fff", fontWeight: 700, fontSize: 12 }}>{initials}</span>
|
|
<div style={{ textAlign: "left", minWidth: 0 }}>
|
|
<div className="nm">{name}</div>
|
|
<div className="rl" style={{ overflow: "hidden", textOverflow: "ellipsis", whiteSpace: "nowrap", maxWidth: 150 }}>{secondary}</div>
|
|
</div>
|
|
<ChevronDown size={16} />
|
|
</button>
|
|
{menuOpen && (
|
|
<>
|
|
<div className="tm-menu-scrim" onClick={() => setMenuOpen(false)} />
|
|
<div className="tm-menu-pop" role="menu">
|
|
<button className="danger" onClick={signOut}><LogOut size={15} /> Sign out</button>
|
|
</div>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|