diff options
Diffstat (limited to 'client/src/app/menu/avatar-notification.component.html')
-rw-r--r-- | client/src/app/menu/avatar-notification.component.html | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/client/src/app/menu/avatar-notification.component.html b/client/src/app/menu/avatar-notification.component.html index 4ef3f0e89..a5ef43d42 100644 --- a/client/src/app/menu/avatar-notification.component.html +++ b/client/src/app/menu/avatar-notification.component.html | |||
@@ -1,6 +1,6 @@ | |||
1 | <div | 1 | <div |
2 | [ngbPopover]="popContent" autoClose="outside" placement="bottom-left" container="body" popoverClass="popover-notifications" | 2 | [ngbPopover]="popContent" autoClose="outside" placement="bottom-left" container="body" popoverClass="popover-notifications" |
3 | i18n-title title="View your notifications" class="notification-avatar" #popover="ngbPopover" | 3 | i18n-title title="View your notifications" class="notification-avatar" #popover="ngbPopover" (hidden)="onPopoverHidden()" |
4 | > | 4 | > |
5 | <div *ngIf="unreadNotifications > 0" class="unread-notifications">{{ unreadNotifications }}</div> | 5 | <div *ngIf="unreadNotifications > 0" class="unread-notifications">{{ unreadNotifications }}</div> |
6 | 6 | ||
@@ -8,16 +8,25 @@ | |||
8 | </div> | 8 | </div> |
9 | 9 | ||
10 | <ng-template #popContent> | 10 | <ng-template #popContent> |
11 | <div class="notifications-header"> | 11 | <div class="content" [ngClass]="{ loaded: loaded }"> |
12 | <div i18n>Notifications</div> | 12 | <div class="notifications-header"> |
13 | <div i18n>Notifications</div> | ||
13 | 14 | ||
14 | <a | 15 | <a |
15 | i18n-title title="Update your notification preferences" class="glyphicon glyphicon-cog" | 16 | i18n-title title="Update your notification preferences" class="glyphicon glyphicon-cog" |
16 | routerLink="/my-account/settings" fragment="notifications" | 17 | routerLink="/my-account/settings" fragment="notifications" |
17 | ></a> | 18 | ></a> |
18 | </div> | 19 | </div> |
20 | |||
21 | <div *ngIf="!loaded" class="loader"> | ||
22 | <my-loader [loading]="!loaded"></my-loader> | ||
23 | </div> | ||
19 | 24 | ||
20 | <my-user-notifications [ignoreLoadingBar]="true" [infiniteScroll]="false" itemsPerPage="10"></my-user-notifications> | 25 | <my-user-notifications |
26 | [ignoreLoadingBar]="true" [infiniteScroll]="false" itemsPerPage="10" | ||
27 | (notificationsLoaded)="onNotificationLoaded()" | ||
28 | ></my-user-notifications> | ||
21 | 29 | ||
22 | <a class="all-notifications" routerLink="/my-account/notifications" i18n>See all your notifications</a> | 30 | <a *ngIf="loaded" class="all-notifications" routerLink="/my-account/notifications" i18n>See all your notifications</a> |
31 | </div> | ||
23 | </ng-template> | 32 | </ng-template> |