68 lines
3.6 KiB
HTML
68 lines
3.6 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<ion-back-button [text]="'core.back' | translate"></ion-back-button>
|
|
</ion-buttons>
|
|
<h1>{{ 'addon.notifications.notifications' | translate }}</h1>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
<ion-content>
|
|
<ion-refresher slot="fixed" [disabled]="!notificationsLoaded" (ionRefresh)="refreshNotifications($event.target)">
|
|
<ion-refresher-content pullingText="{{ 'core.pulltorefresh' | translate }}"></ion-refresher-content>
|
|
</ion-refresher>
|
|
<core-loading [hideUntil]="notificationsLoaded">
|
|
<div class="ion-padding" *ngIf="canMarkAllNotificationsAsRead">
|
|
<ion-button [disabled]="loadingMarkAllNotificationsAsRead" expand="block" (click)="markAllNotificationsAsRead()"
|
|
color="light">
|
|
<ion-icon slot="start" name="fas-check" aria-hidden="true" *ngIf="!loadingMarkAllNotificationsAsRead"></ion-icon>
|
|
<ion-spinner slot="start" [attr.aria-label]="'core.loading' | translate" *ngIf="loadingMarkAllNotificationsAsRead">
|
|
</ion-spinner>
|
|
{{ 'addon.notifications.markallread' | translate }}
|
|
</ion-button>
|
|
</div>
|
|
|
|
<ion-card *ngFor="let notification of notifications">
|
|
<ion-item class="ion-text-wrap" lines="none"
|
|
[attr.aria-label]="
|
|
notification.timeread
|
|
? notification.subject
|
|
: 'addon.notifications.unreadnotification' | translate: {$a: notification.subject}">
|
|
<core-user-avatar *ngIf="notification.useridfrom > 0" [user]="notification" slot="start"
|
|
[profileUrl]="notification.profileimageurlfrom" [fullname]="notification.userfromfullname"
|
|
[userId]="notification.useridfrom" [extraIcon]="notification.iconurl"></core-user-avatar>
|
|
|
|
<img *ngIf="notification.useridfrom <= 0 && notification.iconurl" [src]="notification.iconurl" alt=""
|
|
role="presentation" class="core-notification-icon" slot="start">
|
|
|
|
<ion-label>
|
|
<p class="item-heading">{{ notification.subject }}</p>
|
|
<p *ngIf="notification.useridfrom > 0">{{ notification.userfromfullname }}</p>
|
|
</ion-label>
|
|
<ion-note slot="end" class="ion-float-end ion-text-end">
|
|
{{ notification.timecreated | coreDateDayOrTime }}
|
|
<span *ngIf="!notification.timeread">
|
|
<ion-icon name="fas-circle" color="primary" aria-hidden="true"></ion-icon>
|
|
</span>
|
|
</ion-note>
|
|
</ion-item>
|
|
<ion-item class="ion-text-wrap">
|
|
<ion-label>
|
|
<core-format-text [text]="notification.mobiletext | coreCreateLinks" contextLevel="system"
|
|
[contextInstanceId]="0" [maxHeight]="120">
|
|
</core-format-text>
|
|
</ion-label>
|
|
</ion-item>
|
|
<addon-notifications-actions [contextUrl]="notification.contexturl" [courseId]="notification.courseid"
|
|
[data]="notification.customdata">
|
|
</addon-notifications-actions>
|
|
</ion-card>
|
|
|
|
<core-empty-box *ngIf="!notifications || notifications.length <= 0" icon="far-bell"
|
|
[message]="'addon.notifications.therearentnotificationsyet' | translate">
|
|
</core-empty-box>
|
|
|
|
<core-infinite-loading [enabled]="canLoadMore" (action)="loadMoreNotifications($event)" [error]="loadMoreError">
|
|
</core-infinite-loading>
|
|
</core-loading>
|
|
</ion-content>
|