src/app/my-groups/add-activity-to-group/add-activity-to-group.page.ts
OnInit
OnDestroy
encapsulation | ViewEncapsulation.None |
selector | add-activity-to-group |
styleUrls | ./add-activity-to-group.page.scss |
templateUrl | add-activity-to-group.page.html |
Properties |
Methods |
constructor(router: Router, headerService: AppHeaderService, platform: Platform, telemetryGeneratorService: TelemetryGeneratorService, location: Location)
|
||||||||||||||||||
Parameters :
|
Private getflattenedActivityList |
getflattenedActivityList()
|
Returns :
void
|
handleBackButton | ||||||
handleBackButton(isNavBack: boolean)
|
||||||
Parameters :
Returns :
void
|
handleDeviceBackButton |
handleDeviceBackButton()
|
Returns :
void
|
handleHeaderEvents | ||||
handleHeaderEvents($event)
|
||||
Parameters :
Returns :
void
|
ionViewWillEnter |
ionViewWillEnter()
|
Returns :
void
|
ionViewWillLeave |
ionViewWillLeave()
|
Returns :
void
|
ngOnDestroy |
ngOnDestroy()
|
Returns :
void
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
Async search | ||||
search(data)
|
||||
Parameters :
Returns :
any
|
activityList |
corRelationList |
Type : Array<CorrelationData>
|
Private csGroupAddableBloc |
Type : CsGroupAddableBloc
|
flattenedActivityList |
Type : []
|
Default value : []
|
groupId |
Type : string
|
headerObservable |
Type : any
|
Public headerService |
Type : AppHeaderService
|
supportedActivityList |
Type : Array<any>
|
unregisterBackButton |
Type : Subscription
|
import { Location } from '@angular/common';
import { AppHeaderService } from './../../../services/app-header.service';
import {
Component, ViewEncapsulation, OnInit, OnDestroy
} from '@angular/core';
import { Platform } from '@ionic/angular';
import { TelemetryGeneratorService } from '@app/services/telemetry-generator.service';
import {
Environment, ImpressionType, InteractSubtype, InteractType,
PageId, CorReleationDataType, ID
} from '@app/services/telemetry-constants';
import { Router } from '@angular/router';
import { Subscription } from 'rxjs';
import { RouterLinks } from '@app/app/app.constant';
import { CsGroupAddableBloc } from '@project-sunbird/client-services/blocs';
import { CorrelationData } from '@project-sunbird/sunbird-sdk';
@Component({
selector: 'add-activity-to-group',
templateUrl: 'add-activity-to-group.page.html',
styleUrls: ['./add-activity-to-group.page.scss'],
encapsulation: ViewEncapsulation.None,
})
export class AddActivityToGroupPage implements OnInit, OnDestroy {
corRelationList: Array<CorrelationData>;
unregisterBackButton: Subscription;
headerObservable: any;
supportedActivityList: Array<any>;
groupId: string;
activityList;
flattenedActivityList = [];
private csGroupAddableBloc: CsGroupAddableBloc;
constructor(
private router: Router,
public headerService: AppHeaderService,
private platform: Platform,
private telemetryGeneratorService: TelemetryGeneratorService,
private location: Location,
) {
const extras = this.router.getCurrentNavigation().extras.state;
if (extras) {
this.corRelationList = extras.corRelation;
this.supportedActivityList = extras.supportedActivityList;
this.groupId = extras.groupId;
this.activityList = extras.activityList;
}
this.csGroupAddableBloc = CsGroupAddableBloc.instance;
}
ngOnInit() {
if (!this.csGroupAddableBloc.initialised) {
this.csGroupAddableBloc.init();
}
}
ionViewWillEnter() {
this.headerObservable = this.headerService.headerEventEmitted$.subscribe(eventName => {
this.handleHeaderEvents(eventName);
});
this.headerService.showHeaderWithBackButton();
this.handleDeviceBackButton();
this.telemetryGeneratorService.generateImpressionTelemetry(
ImpressionType.VIEW,
'',
PageId.ADD_ACTIVITY_TO_GROUP,
Environment.GROUP,
undefined, undefined, undefined, undefined, this.corRelationList);
this.getflattenedActivityList();
}
ionViewWillLeave() {
this.headerObservable.unsubscribe();
if (this.unregisterBackButton) {
this.unregisterBackButton.unsubscribe();
}
}
ngOnDestroy() {
this.csGroupAddableBloc.dispose();
}
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);
}
}
private getflattenedActivityList() {
this.flattenedActivityList = [];
this.activityList.forEach(e => {
this.flattenedActivityList = [...this.flattenedActivityList, ...e.items];
});
}
async search(data) {
// Which activity type
if (!this.corRelationList) {
this.corRelationList = [];
}
const activityTypeCData = this.corRelationList.find(cData => (cData.type === CorReleationDataType.ACTIVITY_TYPE));
if (activityTypeCData) {
activityTypeCData.id = data.activityType;
} else {
this.corRelationList.push({ id: data.activityType, type: CorReleationDataType.ACTIVITY_TYPE });
}
this.telemetryGeneratorService.generateInteractTelemetry(InteractType.SELECT_CATEGORY,
InteractSubtype.ACTIVITY_TYPE_CLICKED, Environment.GROUP, PageId.ADD_ACTIVITY_TO_GROUP,
undefined, undefined, undefined, this.corRelationList, ID.SELECT_CATEGORY);
this.csGroupAddableBloc.updateState({
pageIds: [],
groupId: this.groupId,
params: {
activityList: this.flattenedActivityList,
corRelation: this.corRelationList
}
});
this.router.navigate([RouterLinks.SEARCH], {
state: {
activityTypeData: data,
source: PageId.GROUP_DETAIL,
groupId: this.groupId,
activityList: this.flattenedActivityList,
corRelation: this.corRelationList
}
});
}
}
<ion-content class="activity-toc-container ion-no-padding">
<h3 class="activity-toc-title">{{ 'SELECT_ACTIVITY' | translate}}</h3>
<div class="add-activity-container">
<div class="add-activity-content" [ngClass]="{'disabled-activity': !activity.isEnabled}" *ngFor="let activity of supportedActivityList; let i = index;">
<sb-course-curiculum-card [isActivityTypeCard]="true" [cardData]="activity" [index]="i"
(click)="activity.isEnabled && search(activity)"></sb-course-curiculum-card>
</div>
</div>
</ion-content>
./add-activity-to-group.page.scss
.activity-toc-title{
font-size: 1rem;
margin: 0;
font-weight: bold;
padding: 16px;
color: var(--app-black)
}
.add-activity-container{
display: flex;
flex-direction: row;
flex-wrap: wrap;
.add-activity-content{
&.disabled-activity{
opacity: .5;
}
&:nth-child(odd){
padding: 0 4px 4px 16px;
}
&:nth-child(even){
padding: 0 16px 4px 4px;
}
flex: 50%;
flex-grow: 0;
flex-shrink: 0;
}
}