import { useQuery } from '@tanstack/react-query';
import { fetchUnreadCount } from '@/features/notifications/services/notificationService';

export const unreadCountQueryKey = ['notifications', 'unread-count'] as const;

export function useUnreadCount(enabled = true) {
  return useQuery({
    queryKey: unreadCountQueryKey,
    queryFn: fetchUnreadCount,
    enabled,
    staleTime: 15_000,
  });
}
