File

src/app/my-groups/activity-toc/activity-toc.page.ts

Metadata

Index

Properties
Methods

Constructor

constructor(router: Router, headerService: AppHeaderService, platform: Platform, telemetryGeneratorService: TelemetryGeneratorService, location: Location, appGlobalService: AppGlobalService)
Parameters :
Name Type Optional
router Router No
headerService AppHeaderService No
platform Platform No
telemetryGeneratorService TelemetryGeneratorService No
location Location No
appGlobalService AppGlobalService No

Methods

handleBackButton
handleBackButton(isNavBack: boolean)
Parameters :
Name Type Optional
isNavBack boolean No
Returns : void
handleDeviceBackButton
handleDeviceBackButton()
Returns : void
handleHeaderEvents
handleHeaderEvents($event)
Parameters :
Name Optional
$event No
Returns : void
ionViewWillEnter
ionViewWillEnter()
Returns : void
ionViewWillLeave
ionViewWillLeave()
Returns : void
onCourseChange
onCourseChange(course?)
Parameters :
Name Optional
course Yes
Returns : void

Properties

backButtonFunc
Default value : undefined
corRelationList
Type : Array<CorrelationData>
courseList
Type : Array<any>
headerObservable
Type : any
Public headerService
Type : AppHeaderService
mainCourseName
Type : string
selectedId
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>

./activity-toc.page.scss

@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
Component
Html element with directive

results matching ""

    No results matching ""