All files / web/src/hooks usePracticeNotifications.ts

0% Statements 0/55
0% Branches 0/1
0% Functions 0/1
0% Lines 0/55

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                                                                                                               
'use client'

import { useEffect, useRef } from 'react'
import { useRouter } from 'next/navigation'
import type { Socket } from 'socket.io-client'
import { createSocket } from '@/lib/socket'
import { useToast } from '@/components/common/ToastContext'
import type { GenericNotificationEvent } from '@/lib/classroom/socket-events'

/**
 * Hook that listens for notification events on the user's Socket.IO channel
 * and shows in-app toasts.
 *
 * Should be mounted once in a layout that wraps authenticated pages.
 *
 * @param userId - The authenticated user's ID (null/undefined to disable)
 */
export function usePracticeNotifications(userId: string | undefined): void {
  const socketRef = useRef<Socket | null>(null)
  const router = useRouter()
  const { showToast } = useToast()

  useEffect(() => {
    if (!userId) return

    const socket = createSocket({ reconnection: true })
    socketRef.current = socket

    socket.on('connect', () => {
      socket.emit('join-user-channel', { userId })
    })

    socket.on('notification', (data: GenericNotificationEvent) => {
      console.log('[Notifications] %s: %s', data.type, data.title)

      showToast({
        type: 'info',
        title: data.title,
        description: data.body,
        duration: 10000,
        action: data.url
          ? {
              label: 'View',
              onClick: () => router.push(data.url),
            }
          : undefined,
      })
    })

    return () => {
      socket.disconnect()
      socketRef.current = null
    }
  }, [userId, router, showToast])
}