aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/notification/user-notification-socket.service.ts
blob: 29337d3a718add3ffcec687c483415f835b85230 (plain) (blame)
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
import { Injectable } from '@angular/core'
import { environment } from '../../../environments/environment'
import { UserNotification as UserNotificationServer } from '../../../../../shared'
import { Subject } from 'rxjs'
import * as io from 'socket.io-client'
import { AuthService } from '../auth'

export type NotificationEvent = 'new' | 'read' | 'read-all'

@Injectable()
export class UserNotificationSocket {
  private notificationSubject = new Subject<{ type: NotificationEvent, notification?: UserNotificationServer }>()

  private socket: SocketIOClient.Socket

  constructor (
    private auth: AuthService
  ) {}

  dispatch (type: NotificationEvent, notification?: UserNotificationServer) {
    this.notificationSubject.next({ type, notification })
  }

  async getMyNotificationsSocket () {
    await this.initSocket()

    return this.notificationSubject.asObservable()
  }

  private async initSocket () {
    if (this.socket) return

    // FIXME: import('..') returns a struct module, containing a "default" field corresponding to our sanitizeHtml function
    const io: typeof import ('socket.io-client') = (await import('socket.io-client') as any).default

    this.socket = io(environment.apiUrl + '/user-notifications', {
      query: { accessToken: this.auth.getAccessToken() }
    })

    this.socket.on('new-notification', (n: UserNotificationServer) => this.dispatch('new', n))
  }
}