/* أيقونات تبديل السمة (شمس/قمر) */ const BnySunSvg = ( ); const BnyMoonSvg = ( ); /* Bonyan ERP — top bar with the unified smart search & voice */ function Topbar({ title, query, onQuery, listening, onVoice, showSearch = true, compact = false, user, onLogout, theme = "light", onToggleTheme, onMenu }) { const I = window.BnyIcon; const D = window.BnyData; const { SearchBar } = window.BonyanDesignSystem_ad3ca0; const initials = (user ? user.name : "").split(/[\s—-]+/).filter(Boolean).slice(0, 2).map((w) => w[0]).join("") || "؟"; const roleName = (user && (D.roles.find((r) => r.id === user.role) || {}).name) || ""; const isDark = theme === "dark"; const themeBtn = ( ); if (compact) { return (
بُنيان {showSearch ? (
) : (

{title}

)} {themeBtn}
{initials}
); } return (

{title}

{showSearch ? (
) : (
)}
{themeBtn}
{initials}
{user ? user.name : ""}
{roleName}
); } window.Topbar = Topbar;