aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/notification/user-notification-socket.service.ts
blob: 37f0bc32c11dea6ea39536c96e8c330c37f498a3 (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
43
44
import { Subject } from 'rxjs'
import { Injectable, NgZone } from '@angular/core'
import { UserNotification as UserNotificationServer } from '@shared/models'
import { environment } from '../../../environments/environment'
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,
    private ngZone: NgZone
  ) {}

  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.ngZone.runOutsideAngular(() => {
      this.socket = io(environment.apiUrl + '/user-notifications', {
        query: { accessToken: this.auth.getAccessToken() }
      })

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