2019-01-08 05:26:41 -05:00
|
|
|
import { Component, Input, OnDestroy, OnInit, ViewChild } from '@angular/core'
|
|
|
|
import { User } from '../shared/users/user.model'
|
|
|
|
import { UserNotificationService } from '@app/shared/users/user-notification.service'
|
|
|
|
import { Subscription } from 'rxjs'
|
2019-01-14 09:32:09 -05:00
|
|
|
import { Notifier, UserNotificationSocket } from '@app/core'
|
2019-01-08 05:26:41 -05:00
|
|
|
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'
|
|
|
|
import { NavigationEnd, Router } from '@angular/router'
|
|
|
|
import { filter } from 'rxjs/operators'
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-avatar-notification',
|
|
|
|
templateUrl: './avatar-notification.component.html',
|
|
|
|
styleUrls: [ './avatar-notification.component.scss' ]
|
|
|
|
})
|
|
|
|
export class AvatarNotificationComponent implements OnInit, OnDestroy {
|
|
|
|
@ViewChild('popover') popover: NgbPopover
|
|
|
|
@Input() user: User
|
|
|
|
|
|
|
|
unreadNotifications = 0
|
|
|
|
|
|
|
|
private notificationSub: Subscription
|
|
|
|
private routeSub: Subscription
|
|
|
|
|
|
|
|
constructor (
|
|
|
|
private userNotificationService: UserNotificationService,
|
2019-01-14 09:32:09 -05:00
|
|
|
private userNotificationSocket: UserNotificationSocket,
|
2019-01-08 05:26:41 -05:00
|
|
|
private notifier: Notifier,
|
|
|
|
private router: Router
|
2019-02-15 09:52:18 -05:00
|
|
|
) {
|
|
|
|
}
|
2019-01-08 05:26:41 -05:00
|
|
|
|
|
|
|
ngOnInit () {
|
|
|
|
this.userNotificationService.countUnreadNotifications()
|
2019-02-15 09:52:18 -05:00
|
|
|
.subscribe(
|
|
|
|
result => {
|
|
|
|
this.unreadNotifications = Math.min(result, 99) // Limit number to 99
|
|
|
|
this.subscribeToNotifications()
|
|
|
|
},
|
2019-01-08 05:26:41 -05:00
|
|
|
|
2019-02-15 09:52:18 -05:00
|
|
|
err => this.notifier.error(err.message)
|
|
|
|
)
|
2019-01-08 05:26:41 -05:00
|
|
|
|
|
|
|
this.routeSub = this.router.events
|
|
|
|
.pipe(filter(event => event instanceof NavigationEnd))
|
|
|
|
.subscribe(() => this.closePopover())
|
|
|
|
}
|
|
|
|
|
|
|
|
ngOnDestroy () {
|
|
|
|
if (this.notificationSub) this.notificationSub.unsubscribe()
|
|
|
|
if (this.routeSub) this.routeSub.unsubscribe()
|
|
|
|
}
|
|
|
|
|
|
|
|
closePopover () {
|
|
|
|
this.popover.close()
|
|
|
|
}
|
|
|
|
|
2019-02-15 09:52:18 -05:00
|
|
|
private async subscribeToNotifications () {
|
|
|
|
const obs = await this.userNotificationSocket.getMyNotificationsSocket()
|
|
|
|
|
|
|
|
this.notificationSub = obs.subscribe(data => {
|
|
|
|
if (data.type === 'new') return this.unreadNotifications++
|
|
|
|
if (data.type === 'read') return this.unreadNotifications--
|
|
|
|
if (data.type === 'read-all') return this.unreadNotifications = 0
|
|
|
|
})
|
2019-01-08 05:26:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|