import { usePrimaryPage } from '@/contexts/primary-page-context' import { usePrimaryNoteView } from '@/contexts/primary-note-view-context' import { useNostr } from '@/providers/NostrProvider' import { Bell } from 'lucide-react' import SidebarItem from './SidebarItem' export default function NotificationButton() { const { navigate, current, currentPageProps, display } = usePrimaryPage() const { primaryViewType } = usePrimaryNoteView() const { checkLogin } = useNostr() const spell = (currentPageProps as { spell?: string } | undefined)?.spell return ( checkLogin(() => navigate('spells', { spell: 'notifications' }))} active={ display && current === 'spells' && primaryViewType === null && spell === 'notifications' } > ) }