All files / src/viewmodels/notifications useNotificationsViewModel.ts

74.54% Statements 82/110
51.42% Branches 18/35
90.47% Functions 19/21
77.89% Lines 74/95

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 2291x 1x   1x 1x             1x                                                           2x       2x       2x             1x 1x   1x 1x 1x 1x     1x       20x     1x 20x   20x 20x 20x 20x 20x 20x 20x   20x         8x                     8x 8x 8x   8x   8x 8x         8x 8x       8x 8x               8x 8x 8x           20x 7x     20x       20x 1x 1x     20x   2x   2x 2x 2x 2x                   2x 2x   1x 1x           20x 2x   2x 2x 2x 2x             2x 2x   1x 1x       20x   1x   1x 1x 1x     1x 1x                 20x                              
import { useCallback, useEffect, useState } from 'react';
import { useAuth } from '@/contexts/AuthContext';
import type { NotificationItem } from '@/models/notification';
import { ApiError } from '@/services/api';
import {
  deleteNotification,
  listNotifications,
  markAllNotificationsRead,
  markNotificationRead,
} from '@/services/notificationService';
 
const NOTIFICATION_PAGE_SIZE = 25;
 
export interface NotificationsViewModel {
  notifications: NotificationItem[];
  unreadCount: number;
  isLoading: boolean;
  isRefreshing: boolean;
  isLoadingMore: boolean;
  hasMore: boolean;
  apiError: string | null;
  refresh: () => Promise<void>;
  loadMore: () => Promise<void>;
  markRead: (notificationId: string) => Promise<void>;
  markAllRead: () => Promise<void>;
  removeNotification: (notificationId: string) => Promise<void>;
}
 
function getLoadErrorMessage(error: unknown): string {
  Iif (error instanceof ApiError && error.status === 401) {
    return 'You must be logged in to view notifications.';
  }
 
  Iif (error instanceof ApiError) {
    return error.message;
  }
 
  return 'Failed to load notifications. Please try again.';
}
 
function getMutationErrorMessage(error: unknown): string {
  Iif (error instanceof ApiError && error.status === 401) {
    return 'You must be logged in to manage notifications.';
  }
 
  Iif (error instanceof ApiError) {
    return error.message;
  }
 
  return 'Failed to update notifications. Please try again.';
}
 
function mergeNotifications(
  current: NotificationItem[],
  incoming: NotificationItem[],
): NotificationItem[] {
  const seen = new Set(current.map((item) => item.id));
  const merged = [...current];
 
  for (const item of incoming) {
    Iif (seen.has(item.id)) continue;
    seen.add(item.id);
    merged.push(item);
  }
 
  return merged;
}
 
function countUnread(notifications: NotificationItem[]): number {
  return notifications.filter((notification) => !notification.is_read).length;
}
 
export function useNotificationsViewModel(): NotificationsViewModel {
  const { token } = useAuth();
 
  const [notifications, setNotifications] = useState<NotificationItem[]>([]);
  const [nextCursor, setNextCursor] = useState<string | null>(null);
  const [hasMore, setHasMore] = useState(false);
  const [isLoading, setIsLoading] = useState(true);
  const [isRefreshing, setIsRefreshing] = useState(false);
  const [isLoadingMore, setIsLoadingMore] = useState(false);
  const [apiError, setApiError] = useState<string | null>(null);
 
  const fetchNotifications = useCallback(
    async (
      mode: 'initial' | 'refresh' | 'more',
      cursor: string | null = null,
    ) => {
      Iif (!token) {
        setNotifications([]);
        setNextCursor(null);
        setHasMore(false);
        setApiError('You must be logged in to view notifications.');
        setIsLoading(false);
        setIsRefreshing(false);
        setIsLoadingMore(false);
        return;
      }
 
      if (mode === 'initial') setIsLoading(true);
      Iif (mode === 'refresh') setIsRefreshing(true);
      if (mode === 'more') setIsLoadingMore(true);
 
      setApiError(null);
 
      try {
        const response = await listNotifications(token, {
          limit: NOTIFICATION_PAGE_SIZE,
          cursor: mode === 'more' ? cursor : null,
        });
 
        setNotifications((current) =>
          mode === 'more'
            ? mergeNotifications(current, response.items)
            : response.items,
        );
        setNextCursor(response.page_info.next_cursor);
        setHasMore(response.page_info.has_next);
      } catch (error) {
        Iif (mode === 'initial') {
          setNotifications([]);
        }
 
        setApiError(getLoadErrorMessage(error));
      } finally {
        if (mode === 'initial') setIsLoading(false);
        Iif (mode === 'refresh') setIsRefreshing(false);
        if (mode === 'more') setIsLoadingMore(false);
      }
    },
    [token],
  );
 
  useEffect(() => {
    void fetchNotifications('initial');
  }, [fetchNotifications]);
 
  const refresh = useCallback(async () => {
    await fetchNotifications('refresh');
  }, [fetchNotifications]);
 
  const loadMore = useCallback(async () => {
    Iif (!hasMore || isLoadingMore || !nextCursor) return;
    await fetchNotifications('more', nextCursor);
  }, [fetchNotifications, hasMore, isLoadingMore, nextCursor]);
 
  const markRead = useCallback(
    async (notificationId: string) => {
      Iif (!token) return;
 
      const previous = notifications;
      setNotifications((current) =>
        current.map((notification) =>
          notification.id === notificationId
            ? {
                ...notification,
                is_read: true,
                read_at: notification.read_at ?? new Date().toISOString(),
              }
            : notification,
        ),
      );
 
      try {
        await markNotificationRead(notificationId, token);
      } catch (error) {
        setNotifications(previous);
        setApiError(getMutationErrorMessage(error));
      }
    },
    [notifications, token],
  );
 
  const markAllRead = useCallback(async () => {
    Iif (!token) return;
 
    const previous = notifications;
    const readAt = new Date().toISOString();
    setNotifications((current) =>
      current.map((notification) => ({
        ...notification,
        is_read: true,
        read_at: notification.read_at ?? readAt,
      })),
    );
 
    try {
      await markAllNotificationsRead(token);
    } catch (error) {
      setNotifications(previous);
      setApiError(getMutationErrorMessage(error));
    }
  }, [notifications, token]);
 
  const removeNotification = useCallback(
    async (notificationId: string) => {
      Iif (!token) return;
 
      const previous = notifications;
      setNotifications((current) =>
        current.filter((notification) => notification.id !== notificationId),
      );
 
      try {
        await deleteNotification(notificationId, token);
      } catch (error) {
        setNotifications(previous);
        setApiError(getMutationErrorMessage(error));
      }
    },
    [notifications, token],
  );
 
  return {
    notifications,
    unreadCount: countUnread(notifications),
    isLoading,
    isRefreshing,
    isLoadingMore,
    hasMore,
    apiError,
    refresh,
    loadMore,
    markRead,
    markAllRead,
    removeNotification,
  };
}