File

src/app/notification/notification.page.ts

Implements

OnInit

Metadata

Index

Properties
Methods

Constructor

constructor(notificationService: NotificationService, headerService: AppHeaderService, telemetryGeneratorService: TelemetryGeneratorService, platform: Platform, location: Location, commonUtilService: CommonUtilService, events: Events)
Parameters :
Name Type Optional
notificationService NotificationService No
headerService AppHeaderService No
telemetryGeneratorService TelemetryGeneratorService No
platform Platform No
location Location No
commonUtilService CommonUtilService No
events Events No

Methods

Async clearAllNotifications
clearAllNotifications()
Returns : any
Private Async fetchNotificationList
fetchNotificationList()
Returns : any
Private generateClickInteractEvent
generateClickInteractEvent(valuesMap, interactSubType)
Parameters :
Name Optional
valuesMap No
interactSubType No
Returns : void
Private handleHeaderEvents
handleHeaderEvents(event)
Parameters :
Name Optional
event No
Returns : void
handleTelemetry
handleTelemetry(event)
Parameters :
Name Optional
event No
Returns : void
ionViewWillEnter
ionViewWillEnter()
Returns : void
ionViewWillLeave
ionViewWillLeave()
Returns : void
ngOnInit
ngOnInit()
Returns : void
Async removeNotification
removeNotification(notification: Notification, swipeDirection: string)
Parameters :
Name Type Optional
notification Notification No
swipeDirection string No
Returns : any

Properties

Private headerObservable
Type : Subscription
inAppNotificationConfig
Type : object
Default value : { title: 'Notification', subTitle: ' New Notification (s)', clearText: 'Clear', moreText: 'See more', lessText: 'See less', minNotificationViewCount: 5 }
Private Optional loader
Type : any
notificationList
Type : []
Default value : []
unreadNotificationList
Type : []
Default value : []
Private unregisterBackButton
Type : Subscription
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;
  }
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""