blob: 0ec67d4016bd0c0c3019e82aa0486b2119f5a37d (
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
|
import { Component, ViewChild } from '@angular/core'
import { UserNotificationsComponent } from '@app/shared/shared-main'
type NotificationSortType = 'createdAt' | 'read'
@Component({
templateUrl: './my-account-notifications.component.html',
styleUrls: [ './my-account-notifications.component.scss' ]
})
export class MyAccountNotificationsComponent {
@ViewChild('userNotification', { static: true }) userNotification: UserNotificationsComponent
_notificationSortType: NotificationSortType = 'createdAt'
get notificationSortType () {
return !this.hasUnreadNotifications()
? 'createdAt'
: this._notificationSortType
}
set notificationSortType (type: NotificationSortType) {
this._notificationSortType = type
}
markAllAsRead () {
this.userNotification.markAllAsRead()
}
hasUnreadNotifications () {
return this.userNotification.notifications.filter(n => n.read === false).length !== 0
}
onChangeSortColumn () {
this.userNotification.changeSortColumn(this.notificationSortType)
}
}
|