'use client' /** * @file Notification center: bell icon with dropdown of recent notifications. */ import { useEffect, useState, useRef, useCallback } from 'react' import { createPortal } from 'react-dom' import Link from 'next/link' import { listNotifications, markNotificationRead, markAllNotificationsRead, type Notification } from '@/lib/api/notifications' import { getAuthErrorMessage } from '@ciphera-net/ui' import { formatTimeAgo, getTypeIcon } from '@/lib/utils/notifications' import { SettingsIcon } from '@ciphera-net/ui' import { SkeletonLine, SkeletonCircle } from '@/components/skeletons' // * Bell icon (simple SVG, no extra deps) function BellIcon({ className }: { className?: string }) { return ( ) } const LOADING_DELAY_MS = 250 const POLL_INTERVAL_MS = 90_000 interface NotificationCenterProps { /** Where the dropdown opens. 'right' uses fixed positioning to escape overflow:hidden containers. */ anchor?: 'bottom' | 'right' /** Render variant. 'sidebar' matches NavLink styling. */ variant?: 'default' | 'sidebar' /** Optional label content rendered after the icon (useful for sidebar variant with fading labels). */ children?: React.ReactNode } export default function NotificationCenter({ anchor = 'bottom', variant = 'default', children }: NotificationCenterProps) { const [open, setOpen] = useState(false) const [notifications, setNotifications] = useState([]) const [unreadCount, setUnreadCount] = useState(0) const [loading, setLoading] = useState(false) const [error, setError] = useState(null) const dropdownRef = useRef(null) const panelRef = useRef(null) const buttonRef = useRef(null) const [fixedPos, setFixedPos] = useState<{ left: number; top?: number; bottom?: number } | null>(null) const updatePosition = useCallback(() => { if (anchor === 'right' && buttonRef.current) { const rect = buttonRef.current.getBoundingClientRect() const left = rect.right + 8 if (rect.top > window.innerHeight / 2) { setFixedPos({ left, bottom: window.innerHeight - rect.bottom }) } else { setFixedPos({ left, top: rect.top }) } } }, [anchor]) const fetchUnreadCount = async () => { try { const res = await listNotifications({ limit: 1 }) setUnreadCount(typeof res?.unread_count === 'number' ? res.unread_count : 0) } catch { // Ignore polling errors } } const fetchNotifications = async () => { setError(null) const loadingTimer = setTimeout(() => setLoading(true), LOADING_DELAY_MS) try { const res = await listNotifications({}) setNotifications(Array.isArray(res?.notifications) ? res.notifications : []) setUnreadCount(typeof res?.unread_count === 'number' ? res.unread_count : 0) } catch (err) { setError(getAuthErrorMessage(err as Error) || 'Failed to load notifications') setNotifications([]) setUnreadCount(0) } finally { clearTimeout(loadingTimer) setLoading(false) } } useEffect(() => { if (open) { fetchNotifications() updatePosition() } }, [open, updatePosition]) // * Poll unread count in background (when authenticated) useEffect(() => { fetchUnreadCount() const id = setInterval(fetchUnreadCount, POLL_INTERVAL_MS) return () => clearInterval(id) }, []) // * Close dropdown when clicking outside or pressing Escape useEffect(() => { if (!open) return function handleClickOutside(e: MouseEvent) { const target = e.target as Node if ( dropdownRef.current && !dropdownRef.current.contains(target) && (!panelRef.current || !panelRef.current.contains(target)) ) { setOpen(false) } } function handleKeyDown(e: KeyboardEvent) { if (e.key === 'Escape') setOpen(false) } document.addEventListener('mousedown', handleClickOutside) document.addEventListener('keydown', handleKeyDown) return () => { document.removeEventListener('mousedown', handleClickOutside) document.removeEventListener('keydown', handleKeyDown) } }, [open]) const handleMarkRead = async (id: string) => { try { await markNotificationRead(id) setNotifications((prev) => prev.map((n) => (n.id === id ? { ...n, read: true } : n))) setUnreadCount((c) => Math.max(0, c - 1)) } catch { // Ignore; user can retry } } const handleMarkAllRead = async () => { try { await markAllNotificationsRead() setNotifications((prev) => prev.map((n) => ({ ...n, read: true }))) setUnreadCount(0) } catch { // Ignore } } const handleNotificationClick = (n: Notification) => { if (!n.read) { handleMarkRead(n.id) } setOpen(false) } const isSidebar = variant === 'sidebar' return (
{(() => { const panel = open ? ( ) : null return anchor === 'right' && panel && typeof document !== 'undefined' ? createPortal(panel, document.body) : panel })()}
) }