mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
67 lines
2.0 KiB
TypeScript
67 lines
2.0 KiB
TypeScript
"use client";
|
|
|
|
import { RiNotification2Line } from "@remixicon/react";
|
|
import { buttonVariants } from "@/shared/components/ui/button";
|
|
import { DropdownMenuTrigger } from "@/shared/components/ui/dropdown-menu";
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from "@/shared/components/ui/tooltip";
|
|
import { cn } from "@/shared/utils/ui";
|
|
|
|
type NotificationBellTriggerProps = {
|
|
open: boolean;
|
|
hasAnySourceItems: boolean;
|
|
hasUnreadNotifications: boolean;
|
|
displayCount: string;
|
|
};
|
|
|
|
export function NotificationBellTrigger({
|
|
open,
|
|
hasAnySourceItems,
|
|
hasUnreadNotifications,
|
|
displayCount,
|
|
}: NotificationBellTriggerProps) {
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<DropdownMenuTrigger asChild>
|
|
<button
|
|
type="button"
|
|
aria-label="Notificações"
|
|
aria-expanded={open}
|
|
className={cn(
|
|
buttonVariants({ variant: "ghost", size: "icon-sm" }),
|
|
"group relative shadow-none transition-all duration-200",
|
|
"hover:border-black/20 hover:bg-black/10 hover:text-black focus-visible:ring-2 focus-visible:ring-black/20 dark:hover:border-white/20 dark:hover:bg-white/10 dark:hover:text-white dark:focus-visible:ring-white/20",
|
|
"data-[state=open]:bg-black/10 data-[state=open]:text-black dark:data-[state=open]:bg-white/10 dark:data-[state=open]:text-white",
|
|
)}
|
|
>
|
|
<RiNotification2Line
|
|
className={cn(
|
|
"size-4 transition-transform duration-200",
|
|
open ? "scale-90" : "scale-100",
|
|
)}
|
|
/>
|
|
{hasUnreadNotifications ? (
|
|
<>
|
|
<span
|
|
aria-hidden
|
|
className="absolute -right-1.5 -top-1.5 inline-flex min-h-5 min-w-5 items-center justify-center rounded-full bg-destructive px-1 text-xs text-white"
|
|
>
|
|
{displayCount}
|
|
</span>
|
|
<span className="absolute -right-1.5 -top-1.5 size-5 animate-ping rounded-full bg-destructive/5 repeat-3" />
|
|
</>
|
|
) : null}
|
|
</button>
|
|
</DropdownMenuTrigger>
|
|
</TooltipTrigger>
|
|
<TooltipContent side="bottom" sideOffset={8}>
|
|
Notificações
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
);
|
|
}
|