2020-01-06 09:59:17 -05:00
|
|
|
import { Subject, Subscription } from 'rxjs'
|
2019-01-08 05:26:41 -05:00
|
|
|
import { filter } from 'rxjs/operators'
|
2020-08-17 04:13:31 -04:00
|
|
|
import { Component, EventEmitter, Input, Output, OnDestroy, OnInit, ViewChild } from '@angular/core'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { NavigationEnd, Router } from '@angular/router'
|
2020-09-25 04:04:21 -04:00
|
|
|
import { Notifier, User, PeerTubeSocket } from '@app/core'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { UserNotificationService } from '@app/shared/shared-main'
|
|
|
|
import { NgbPopover } from '@ng-bootstrap/ng-bootstrap'
|
2019-01-08 05:26:41 -05:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-avatar-notification',
|
|
|
|
templateUrl: './avatar-notification.component.html',
|
|
|
|
styleUrls: [ './avatar-notification.component.scss' ]
|
|
|
|
})
|
|
|
|
export class AvatarNotificationComponent implements OnInit, OnDestroy {
|
2019-07-24 10:05:59 -04:00
|
|
|
@ViewChild('popover', { static: true }) popover: NgbPopover
|
2020-01-06 09:59:17 -05:00
|
|
|
|
2019-01-08 05:26:41 -05:00
|
|
|
@Input() user: User
|
2020-08-17 04:13:31 -04:00
|
|
|
@Output() navigate = new EventEmitter<HTMLAnchorElement>()
|
2019-01-08 05:26:41 -05:00
|
|
|
|
|
|
|
unreadNotifications = 0
|
2019-02-20 04:16:04 -05:00
|
|
|
loaded = false
|
2019-01-08 05:26:41 -05:00
|
|
|
|
2020-01-06 09:59:17 -05:00
|
|
|
markAllAsReadSubject = new Subject<boolean>()
|
|
|
|
|
2019-01-08 05:26:41 -05:00
|
|
|
private notificationSub: Subscription
|
|
|
|
private routeSub: Subscription
|
|
|
|
|
|
|
|
constructor (
|
|
|
|
private userNotificationService: UserNotificationService,
|
2020-09-25 04:04:21 -04:00
|
|
|
private peertubeSocket: PeerTubeSocket,
|
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-20 04:16:04 -05:00
|
|
|
onPopoverHidden () {
|
|
|
|
this.loaded = false
|
|
|
|
}
|
|
|
|
|
|
|
|
onNotificationLoaded () {
|
|
|
|
this.loaded = true
|
|
|
|
}
|
|
|
|
|
2020-08-17 04:13:31 -04:00
|
|
|
onNavigate (link: HTMLAnchorElement) {
|
|
|
|
this.navigate.emit(link)
|
|
|
|
}
|
|
|
|
|
2019-12-19 08:51:35 -05:00
|
|
|
markAllAsRead () {
|
2020-01-06 09:59:17 -05:00
|
|
|
this.markAllAsReadSubject.next(true)
|
2019-12-19 08:51:35 -05:00
|
|
|
}
|
|
|
|
|
2019-02-15 09:52:18 -05:00
|
|
|
private async subscribeToNotifications () {
|
2020-09-25 04:04:21 -04:00
|
|
|
const obs = await this.peertubeSocket.getMyNotificationsSocket()
|
2019-02-15 09:52:18 -05:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
}
|