]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/menu/avatar-notification.component.ts
Add video import enpoint in openapi
[github/Chocobozzz/PeerTube.git] / client / src / app / menu / avatar-notification.component.ts
CommitLineData
2f1548fd
C
1import { Component, Input, OnDestroy, OnInit, ViewChild } from '@angular/core'
2import { User } from '../shared/users/user.model'
3import { UserNotificationService } from '@app/shared/users/user-notification.service'
4import { Subscription } from 'rxjs'
9a39392a 5import { Notifier, UserNotificationSocket } from '@app/core'
2f1548fd
C
6import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'
7import { NavigationEnd, Router } from '@angular/router'
8import { filter } from 'rxjs/operators'
9
10@Component({
11 selector: 'my-avatar-notification',
12 templateUrl: './avatar-notification.component.html',
13 styleUrls: [ './avatar-notification.component.scss' ]
14})
15export class AvatarNotificationComponent implements OnInit, OnDestroy {
16 @ViewChild('popover') popover: NgbPopover
17 @Input() user: User
18
19 unreadNotifications = 0
20
21 private notificationSub: Subscription
22 private routeSub: Subscription
23
24 constructor (
25 private userNotificationService: UserNotificationService,
9a39392a 26 private userNotificationSocket: UserNotificationSocket,
2f1548fd
C
27 private notifier: Notifier,
28 private router: Router
41d71344
C
29 ) {
30 }
2f1548fd
C
31
32 ngOnInit () {
33 this.userNotificationService.countUnreadNotifications()
41d71344
C
34 .subscribe(
35 result => {
36 this.unreadNotifications = Math.min(result, 99) // Limit number to 99
37 this.subscribeToNotifications()
38 },
2f1548fd 39
41d71344
C
40 err => this.notifier.error(err.message)
41 )
2f1548fd
C
42
43 this.routeSub = this.router.events
44 .pipe(filter(event => event instanceof NavigationEnd))
45 .subscribe(() => this.closePopover())
46 }
47
48 ngOnDestroy () {
49 if (this.notificationSub) this.notificationSub.unsubscribe()
50 if (this.routeSub) this.routeSub.unsubscribe()
51 }
52
53 closePopover () {
54 this.popover.close()
55 }
56
41d71344
C
57 private async subscribeToNotifications () {
58 const obs = await this.userNotificationSocket.getMyNotificationsSocket()
59
60 this.notificationSub = obs.subscribe(data => {
61 if (data.type === 'new') return this.unreadNotifications++
62 if (data.type === 'read') return this.unreadNotifications--
63 if (data.type === 'read-all') return this.unreadNotifications = 0
64 })
2f1548fd
C
65 }
66
67}