]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/menu/notification.component.html
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / menu / notification.component.html
CommitLineData
2f1548fd 1<div
51a83970
K
2 [ngbPopover]="popContent" autoClose="outside" placement="bottom" container={this} popoverClass="popover-notifications"
3 i18n-title title="View your notifications" [ngClass]="{ 'notification-inbox-popover': true, 'shown': opened, 'hidden': isInMobileView }"
4 #popover="ngbPopover" (shown)="onPopoverShown()" (hidden)="onPopoverHidden()"
2f1548fd
C
5>
6 <div *ngIf="unreadNotifications > 0" class="unread-notifications">{{ unreadNotifications }}</div>
7
51a83970
K
8 <my-global-icon iconName="bell"></my-global-icon>
9</div>
10
11<div *ngIf="isInMobileView" i18n-title title="View your notifications" class="notification-inbox-link">
12 <div *ngIf="unreadNotifications > 0" class="unread-notifications">{{ unreadNotifications }}</div>
13
14 <a routerLink="/my-account/notifications" routerLinkActive="active" #link (click)="onNavigate(link)">
15 <my-global-icon iconName="bell"></my-global-icon>
16 </a>
2f1548fd
C
17</div>
18
19<ng-template #popContent>
b28e4e5e
C
20 <div class="content" [ngClass]="{ loaded: loaded }">
21 <div class="notifications-header">
22 <div i18n>Notifications</div>
2f1548fd 23
10475dea
RK
24 <div>
25 <button
26 *ngIf="unreadNotifications"
93c728a2 27 i18n-title title="Mark all as read" class="me-2"
10475dea 28 (click)="markAllAsRead()"
93c728a2
C
29 >
30 <my-global-icon iconName="tick"></my-global-icon>
31 </button>
32
10475dea 33 <a
93c728a2 34 i18n-title title="Update your notification preferences"
10475dea 35 routerLink="/my-account/settings" fragment="notifications"
30d55e75 36 #settingsNotifications (click)="onNavigate(settingsNotifications)"
93c728a2
C
37 >
38 <my-global-icon iconName="cog"></my-global-icon>
39 </a>
10475dea 40 </div>
b28e4e5e
C
41 </div>
42
223b24e6 43 <div *ngIf="!loaded" class="loader mt-4">
a14c1764 44 <my-loader size="xl" [loading]="!loaded"></my-loader>
b28e4e5e 45 </div>
2f1548fd 46
b28e4e5e 47 <my-user-notifications
be27ef3b 48 [ignoreLoadingBar]="true" [infiniteScroll]="false" [itemsPerPage]="10"
bc6f8863 49 [markAllAsReadSubject]="markAllAsReadSubject" (notificationsLoaded)="onNotificationLoaded()"
b28e4e5e 50 ></my-user-notifications>
2f1548fd 51
30d55e75 52 <a *ngIf="loaded" class="all-notifications" routerLink="/my-account/notifications" #notifications (click)="onNavigate(notifications)">
4c8749cb 53 <my-global-icon class="me-1" iconName="bell" aria-hidden="true"></my-global-icon>
10475dea
RK
54 <span i18n>See all your notifications</span>
55 </a>
b28e4e5e 56 </div>
2f1548fd 57</ng-template>