File
Methods
handleBackButton
|
handleBackButton(isNavBack: boolean)
|
|
Parameters :
Name |
Type |
Optional |
isNavBack |
boolean
|
No
|
|
handleDeviceBackButton
|
handleDeviceBackButton()
|
|
|
handleHeaderEvents
|
handleHeaderEvents($event)
|
|
|
ionViewWillEnter
|
ionViewWillEnter()
|
|
|
ionViewWillLeave
|
ionViewWillLeave()
|
|
|
onCourseChange
|
onCourseChange(course?)
|
|
|
backButtonFunc
|
Default value : undefined
|
|
corRelationList
|
Type : Array<CorrelationData>
|
|
courseList
|
Type : Array<any>
|
|
headerObservable
|
Type : any
|
|
unregisterBackButton
|
Type : Subscription
|
|
import { Location } from '@angular/common';
import { AppHeaderService } from './../../../services/app-header.service';
import { Component, ViewEncapsulation } from '@angular/core';
import { Platform } from '@ionic/angular';
import { TelemetryGeneratorService } from '@app/services/telemetry-generator.service';
import {
Environment, ImpressionType, InteractSubtype,
InteractType, PageId
} from '@app/services/telemetry-constants';
import { Router } from '@angular/router';
import { AppGlobalService } from '@app/services';
import { Subscription } from 'rxjs';
import { ContentUtil } from '@app/util/content-util';
import { CorrelationData } from '@project-sunbird/sunbird-sdk';
@Component({
selector: 'activity-toc',
templateUrl: 'activity-toc.page.html',
styleUrls: ['./activity-toc.page.scss'],
encapsulation: ViewEncapsulation.None,
})
export class ActivityTocPage {
corRelationList: Array<CorrelationData>;
unregisterBackButton: Subscription;
headerObservable: any;
backButtonFunc = undefined;
courseList: Array<any>;
mainCourseName: string;
selectedId;
constructor(
private router: Router,
public headerService: AppHeaderService,
private platform: Platform,
private telemetryGeneratorService: TelemetryGeneratorService,
private location: Location,
private appGlobalService: AppGlobalService
) {
const extras = this.router.getCurrentNavigation().extras.state;
if (extras) {
this.courseList = extras.courseList;
this.mainCourseName = extras.mainCourseName;
this.corRelationList = extras.corRelation;
}
}
ionViewWillEnter() {
this.headerObservable = this.headerService.headerEventEmitted$.subscribe(eventName => {
this.handleHeaderEvents(eventName);
});
this.headerService.showHeaderWithBackButton();
this.handleDeviceBackButton();
this.selectedId = this.appGlobalService.selectedActivityCourseId;
this.telemetryGeneratorService.generateImpressionTelemetry(ImpressionType.VIEW,
'', PageId.ACTIVITY_TOC, Environment.GROUP,
undefined, undefined, undefined, undefined, this.corRelationList);
}
ionViewWillLeave() {
this.headerObservable.unsubscribe();
if (this.unregisterBackButton) {
this.unregisterBackButton.unsubscribe();
}
}
handleBackButton(isNavBack: boolean) {
this.telemetryGeneratorService.generateBackClickedTelemetry(PageId.ACTIVITY_TOC,
Environment.GROUP, isNavBack, undefined, this.corRelationList);
this.location.back();
}
handleDeviceBackButton() {
this.unregisterBackButton = this.platform.backButton.subscribeWithPriority(10, () => {
this.handleBackButton(false);
});
}
handleHeaderEvents($event) {
if($event.name === 'back')
{
this.handleBackButton(true);
}
}
onCourseChange(course?) {
if (course) {
this.telemetryGeneratorService.generateInteractTelemetry(InteractType.TOUCH,
InteractSubtype.CONTENT_CLICKED, Environment.GROUP, PageId.ACTIVITY_TOC,
ContentUtil.getTelemetryObject(course),
undefined,
ContentUtil.generateRollUp(undefined, course.identifier),
this.corRelationList);
}
this.appGlobalService.selectedActivityCourseId = course ? course.identifier : '';
this.location.back();
}
}
<ion-content class="activity-toc-container ion-no-padding">
<div class="activity-course" [ngClass]="{'active': !selectedId}" (click)="selectedId && onCourseChange()">
{{mainCourseName}}
</div>
<div class="activity-course" *ngFor="let course of courseList; let i=index"
[ngClass]="{'active': course.identifier === selectedId}"
(click)="course.identifier !== selectedId && onCourseChange(course)">
{{course.name}}
</div>
</ion-content>
@import "src/assets/styles/_variables.scss";
.activity-toc-container{
padding: 16px 0;
}
.activity-course{
padding: 16px;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
border-radius: 2px;
font-size: $font-size-base;
color: $blue;
&.active{
background-color: map-get($colors , light_gray_8c);
}
}
Legend
Html element with directive