src/app/notification/notification.page.ts
OnInit
selector | app-notification |
styleUrls | ./notification.page.scss |
templateUrl | ./notification.page.html |
Properties |
|
Methods |
|
constructor(notificationService: NotificationService, headerService: AppHeaderService, telemetryGeneratorService: TelemetryGeneratorService, platform: Platform, location: Location, commonUtilService: CommonUtilService, events: Events)
|
||||||||||||||||||||||||
Defined in src/app/notification/notification.page.ts:41
|
||||||||||||||||||||||||
Parameters :
|
Async clearAllNotifications |
clearAllNotifications()
|
Defined in src/app/notification/notification.page.ts:90
|
Returns :
any
|
Private Async fetchNotificationList |
fetchNotificationList()
|
Defined in src/app/notification/notification.page.ts:71
|
Returns :
any
|
Private generateClickInteractEvent | ||||||
generateClickInteractEvent(valuesMap, interactSubType)
|
||||||
Parameters :
Returns :
void
|
Private handleHeaderEvents | ||||
handleHeaderEvents(event)
|
||||
Parameters :
Returns :
void
|
handleTelemetry | ||||
handleTelemetry(event)
|
||||
Parameters :
Returns :
void
|
ionViewWillEnter |
ionViewWillEnter()
|
Defined in src/app/notification/notification.page.ts:53
|
Returns :
void
|
ionViewWillLeave |
ionViewWillLeave()
|
Returns :
void
|
ngOnInit |
ngOnInit()
|
Defined in src/app/notification/notification.page.ts:64
|
Returns :
void
|
Async removeNotification | |||||||||
removeNotification(notification: Notification, swipeDirection: string)
|
|||||||||
Parameters :
Returns :
any
|
Private headerObservable |
Type : Subscription
|
Defined in src/app/notification/notification.page.ts:32
|
inAppNotificationConfig |
Type : object
|
Default value : {
title: 'Notification',
subTitle: ' New Notification (s)',
clearText: 'Clear',
moreText: 'See more',
lessText: 'See less',
minNotificationViewCount: 5
}
|
Defined in src/app/notification/notification.page.ts:34
|
Private Optional loader |
Type : any
|
Defined in src/app/notification/notification.page.ts:33
|
notificationList |
Type : []
|
Default value : []
|
Defined in src/app/notification/notification.page.ts:29
|
unreadNotificationList |
Type : []
|
Default value : []
|
Defined in src/app/notification/notification.page.ts:30
|
Private unregisterBackButton |
Type : Subscription
|
Defined in src/app/notification/notification.page.ts:31
|
import { ImpressionSubtype } from './../../services/telemetry-constants';
import { Component, OnInit } from '@angular/core';
import { Platform } from '@ionic/angular';
import { Location } from '@angular/common';
import { Notification, UserFeedStatus } from 'sunbird-sdk';
import { Subscription } from 'rxjs';
import { AppHeaderService } from '@app/services/app-header.service';
import { CommonUtilService } from '@app/services/common-util.service';
import { TelemetryGeneratorService } from '@app/services/telemetry-generator.service';
import {
InteractType,
Environment,
PageId,
InteractSubtype,
ImpressionType
} from '@app/services/telemetry-constants';
import { NotificationService } from '../../services/notification.service';
import { Events } from '@app/util/events';
import { EventTopics } from '../app.constant';
@Component({
selector: 'app-notification',
templateUrl: './notification.page.html',
styleUrls: ['./notification.page.scss'],
})
export class NotificationPage implements OnInit {
notificationList = [] ;
unreadNotificationList = [];
private unregisterBackButton: Subscription;
private headerObservable: Subscription;
private loader?: any;
inAppNotificationConfig = {
title: 'Notification',
subTitle: ' New Notification (s)',
clearText: 'Clear',
moreText: 'See more',
lessText: 'See less',
minNotificationViewCount: 5
}
constructor(
private notificationService: NotificationService,
private headerService: AppHeaderService,
private telemetryGeneratorService: TelemetryGeneratorService,
private platform: Platform,
private location: Location,
private commonUtilService: CommonUtilService,
private events: Events
) { }
ionViewWillEnter() {
this.unregisterBackButton = this.platform.backButton.subscribeWithPriority(10, () => {
this.telemetryGeneratorService.generateBackClickedTelemetry(PageId.NOTIFICATION, Environment.NOTIFICATION, false);
this.location.back();
});
this.headerService.showHeaderWithBackButton();
this.headerObservable = this.headerService.headerEventEmitted$.subscribe(eventName => {
this.handleHeaderEvents(eventName);
});
}
ngOnInit() {
this.fetchNotificationList();
this.events.subscribe(EventTopics.NOTIFICATION_REFRESH, () => {
this.fetchNotificationList();
});
}
private async fetchNotificationList() {
this.loader = await this.commonUtilService.getLoader();
this.loader.present();
await this.notificationService.fetchNotificationList().then((data) => {
this.loader.dismiss();
this.notificationList = data.feeds;
console.log('notification list', this.notificationList);
this.unreadNotificationList = this.notificationList.filter((n: any) => n.status === UserFeedStatus.UNREAD);
this.inAppNotificationConfig.subTitle = this.unreadNotificationList.length + ' New Notification (s)';
})
this.telemetryGeneratorService.generateImpressionTelemetry(
ImpressionType.PAGE_LOADED,
ImpressionSubtype.HOME,
PageId.NOTIFICATION,
Environment.HOME, '', '', '', undefined
);
}
async clearAllNotifications() {
if (!this.loader) {
this.loader = await this.commonUtilService.getLoader();
await this.loader.present();
}
const valuesMap = new Map();
valuesMap['clearAllNotifications'] = true;
this.generateClickInteractEvent(valuesMap, InteractSubtype.CLEAR_NOTIFICATIONS_CLICKED);
await this.notificationService.clearAllNotifications();
}
async removeNotification(notification: Notification, swipeDirection: string) {
console.log('removeNotification clicked')
if (!this.loader) {
this.loader = await this.commonUtilService.getLoader();
await this.loader.present();
}
const valuesMap = new Map();
valuesMap['deleteNotificationId'] = notification.id;
valuesMap['swipeDirection'] = swipeDirection;
this.generateClickInteractEvent(valuesMap, InteractSubtype.CLEAR_NOTIFICATIONS_CLICKED);
this.notificationService.deleteNotification({ event: {}, data: notification });
}
handleTelemetry(event) {
this.generateClickInteractEvent(event.valuesMap, event.interactSubType);
}
private generateClickInteractEvent(valuesMap, interactSubType) {
this.telemetryGeneratorService.generateInteractTelemetry(
InteractType.TOUCH,
interactSubType,
Environment.NOTIFICATION,
PageId.NOTIFICATION,
undefined,
valuesMap
);
}
ionViewWillLeave() {
if (this.unregisterBackButton) {
this.unregisterBackButton.unsubscribe();
}
if (this.headerObservable) {
this.headerObservable.unsubscribe();
}
this.events.publish(EventTopics.NOTIFICATION_REFRESH);
}
private handleHeaderEvents(event) {
if(event.name === 'back')
{
this.telemetryGeneratorService.generateBackClickedTelemetry(PageId.NOTIFICATION, Environment.NOTIFICATION, true);
}
}
}
<ion-content overflow-scroll="true">
<div class="notification-container" *ngIf="notificationList.length">
<sb-notification
[notificationList]="notificationList"
[inAppNotificationConfig]="inAppNotificationConfig"
(showMore)="handleShowMore($event)"
(showLess)="handleShowLess($event)"
></sb-notification>
</div>
<div class="oval-wrapper" *ngIf="!notificationList.length">
<div class="oval">
<img src="./assets/imgs/no_notification.svg" alt="delete" aria-hidden="true" />
</div>
<h4>{{'MSG_NO_NEW_NOTIFICATION' | translate}}</h4>
</div>
</ion-content>
./notification.page.scss
@import "src/assets/styles/base/_variables.scss";
@import "src/assets/styles/_custom-mixins";
@import "src/assets/styles/_variables.scss";
:host {
.notification-container {
padding: 16px;
}
.clear-btn {
@include rtl {
float: left !important;
}
@include ltr {
float: right !important;
}
padding-top: 10px;
color: #e0005a
}
.sb-view-all-title {
width: inherit;
}
.scroll-content {
padding-bottom: 80px;
}
ion-list.list-md {
margin-top: 0 !important;
background: inherit;
ion-item {
--padding-bottom: 8px;
}
}
.oval {
background: $white;
width: 6.25rem;
height: 6.25rem;
border-radius: 50%;
white-space: nowrap;
text-align: center;
margin: 1em 0;
position: relative;
}
.oval img {
position: absolute;
top: 50%;
left: 50%;
width: 3.75rem;
height: 3.75rem;
margin-top: -30px; /*50% of the height*/
margin-left: -30px;
}
.oval-wrapper {
display: flex;
justify-content: center;
flex: 1 1 auto;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
margin-top: 5vh;
h4 {
height: 1.375rem;
color: $gray-200;
font-family: "Noto Sans", sans-serif;
font-size: 1rem;
font-weight: bold;
line-height: 1.375rem;
text-align: center;
}
p {
text-align: center;
width: 80vw;
}
}
.delete-button-left {
height: auto;
margin: 0 !important;
--border-radius: 0 0.5rem 0.5rem 0 !important;
}
.delete-button-right {
height: auto;
margin: 0 !important;
--border-radius: 0.5rem 0 0 0.5rem !important;
}
}