forked from EVOgeek/Vmeda.Online
91 lines
5.1 KiB
HTML
91 lines
5.1 KiB
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<ion-back-button [text]="'core.back' | translate" />
|
|
</ion-buttons>
|
|
<ion-title>
|
|
<h1>{{ 'addon.notifications.notifications' | translate }}</h1>
|
|
</ion-title>
|
|
<ion-buttons slot="end">
|
|
<core-user-menu-button />
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
<ion-content>
|
|
<core-split-view>
|
|
<ion-refresher slot="fixed" [disabled]="!notifications.loaded" (ionRefresh)="refreshNotifications($event.target)">
|
|
<ion-refresher-content pullingText="{{ 'core.pulltorefresh' | translate }}" />
|
|
</ion-refresher>
|
|
<core-loading [hideUntil]="notifications.loaded">
|
|
<ion-card class="core-warning-card core-card-with-buttons" *ngIf="!hasNotificationsPermission && !permissionWarningHidden">
|
|
<ion-item class="ion-text-wrap">
|
|
<ion-icon name="fas-circle-info" slot="start" aria-hidden="true" />
|
|
<ion-label>
|
|
<p><strong>{{ 'core.turnonnotifications' | translate }}</strong></p>
|
|
<p>{{ 'core.turnonnotificationsmessage' | translate }}</p>
|
|
</ion-label>
|
|
</ion-item>
|
|
<div class="core-card-buttons">
|
|
<ion-button fill="clear" (click)="hidePermissionWarning()">
|
|
{{ 'core.dontshowagain' | translate | coreNoPeriod }}
|
|
</ion-button>
|
|
<ion-button fill="outline" (click)="openSettings()">{{ 'core.turnon' | translate }}</ion-button>
|
|
</div>
|
|
</ion-card>
|
|
|
|
<ion-item *ngFor="let notification of notifications.items" class="ion-text-wrap addon-notification-item"
|
|
[attr.aria-current]="notifications.getItemAriaCurrent(notification)" (click)="notifications.select(notification)" button
|
|
[detail]="false" lines="full">
|
|
|
|
<core-user-avatar *ngIf="notification.useridfrom > 0" [user]="notification" slot="start"
|
|
[profileUrl]="notification.profileimageurlfrom" [fullname]="notification.userfromfullname"
|
|
[userId]="notification.useridfrom">
|
|
<div class="core-avatar-extra-img" *ngIf="notification.iconurl">
|
|
<img [src]="notification.iconurl" alt="" role="presentation">
|
|
</div>
|
|
</core-user-avatar>
|
|
|
|
<ng-container *ngIf="notification.useridfrom <= 0">
|
|
<img *ngIf="notification.imgUrl" class="core-notification-img" [src]="notification.imgUrl" core-external-content alt=""
|
|
role="presentation" slot="start">
|
|
<div class="core-notification-icon" *ngIf="!notification.imgUrl" slot="start">
|
|
<img *ngIf="notification.iconurl" [src]="notification.iconurl" core-external-content alt="" role="presentation">
|
|
<ion-icon *ngIf="!notification.iconurl" name="fas-bell" aria-hidden="true" />
|
|
</div>
|
|
</ng-container>
|
|
|
|
<ion-label>
|
|
<p class="item-heading" [attr.aria-label]="
|
|
notification.timeread
|
|
? notification.subject
|
|
: 'addon.notifications.unreadnotification' | translate: {$a: notification.subject}">
|
|
<core-format-text [text]="notification.subject" contextLevel="system" [contextInstanceId]="0"
|
|
[wsNotFiltered]="true" />
|
|
</p>
|
|
<p>{{ notification.timecreated | coreTimeAgo }}<ng-container *ngIf="notification.useridfrom > 0"> · {{
|
|
notification.userfromfullname }}</ng-container>
|
|
</p>
|
|
</ion-label>
|
|
<ion-note slot="end" *ngIf="!notification.timeread">
|
|
<ion-icon name="fas-circle" color="primary" aria-hidden="true" />
|
|
</ion-note>
|
|
</ion-item>
|
|
|
|
<core-empty-box *ngIf="!notifications || notifications.empty" icon="far-bell"
|
|
[message]="'addon.notifications.therearentnotificationsyet' | translate" />
|
|
<core-infinite-loading [enabled]="notifications.loaded && !notifications.completed" (action)="fetchMoreNotifications($event)"
|
|
[error]="fetchMoreNotificationsFailed" />
|
|
</core-loading>
|
|
|
|
|
|
<div class="mark-all-as-read" slot="fixed" collapsible-footer appearOnBottom>
|
|
<ion-chip *ngIf="notifications.loaded && canMarkAllNotificationsAsRead" [disabled]="loadingMarkAllNotificationsAsRead"
|
|
color="info" class="clickable fab-chip" (click)="markAllNotificationsAsRead()">
|
|
<ion-icon name="fas-eye" aria-hidden="true" *ngIf="!loadingMarkAllNotificationsAsRead" />
|
|
<ion-spinner [attr.aria-label]="'core.loading' | translate" *ngIf="loadingMarkAllNotificationsAsRead" />
|
|
{{ 'addon.notifications.markallread' | translate }}
|
|
</ion-chip>
|
|
</div>
|
|
</core-split-view>
|
|
</ion-content>
|