Files
openmonetis/components/header-dashboard.tsx
Felipe Coutinho 9f0585e3bb feat(header): adiciona link para changelog no dashboard
- Cria componente ChangelogLink com tooltip
- Adiciona link para /changelog ao lado do feedback
- Segue o padrão dos componentes existentes
2026-01-20 15:20:49 +00:00

40 lines
1.6 KiB
TypeScript

import { ChangelogLink } from "@/components/changelog/changelog-link";
import { FeedbackDialog } from "@/components/feedback/feedback-dialog";
import { NotificationBell } from "@/components/notificacoes/notification-bell";
import { SidebarTrigger } from "@/components/ui/sidebar";
import { getUser } from "@/lib/auth/server";
import type { DashboardNotificationsSnapshot } from "@/lib/dashboard/notifications";
import { AnimatedThemeToggler } from "./animated-theme-toggler";
import LogoutButton from "./auth/logout-button";
import { CalculatorDialogButton } from "./calculadora/calculator-dialog";
import { PrivacyModeToggle } from "./privacy-mode-toggle";
type SiteHeaderProps = {
notificationsSnapshot: DashboardNotificationsSnapshot;
};
export async function SiteHeader({ notificationsSnapshot }: SiteHeaderProps) {
const user = await getUser();
return (
<header className="border-b flex h-12 shrink-0 items-center gap-2 transition-[width,height] ease-linear group-has-data-[collapsible=icon]/sidebar-wrapper:h-12">
<div className="flex w-full items-center gap-1 px-4 lg:gap-2 lg:px-6">
<SidebarTrigger className="-ml-1" />
<div className="ml-auto flex items-center gap-2">
<NotificationBell
notifications={notificationsSnapshot.notifications}
totalCount={notificationsSnapshot.totalCount}
/>
<CalculatorDialogButton withTooltip />
<PrivacyModeToggle />
<AnimatedThemeToggler />
<span className="text-muted-foreground">|</span>
<ChangelogLink />
<FeedbackDialog />
<LogoutButton />
</div>
</div>
</header>
);
}