src/app/manage-learn/programs/solution-listing/solution-listing.component.ts
selector | app-solution-listing |
styleUrls | ./solution-listing.component.scss |
templateUrl | ./solution-listing.component.html |
Properties |
Methods |
constructor(activatedRoute: ActivatedRoute, utils: UtilsService, kendraService: KendraApiService, loader: LoaderService, location: Location, router: Router, surveyProvider: SurveyProviderService, headerService: AppHeaderService, platform: Platform, toast: ToastService, ulsdp: UpdateLocalSchoolDataService, deeplinkActionHandler: SplaschreenDeeplinkActionHandlerDelegate, localStorage: LocalStorageService)
|
||||||||||||||||||||||||||||||||||||||||||
Parameters :
|
courseRedirect | ||||
courseRedirect(data)
|
||||
Parameters :
Returns :
void
|
Async getSolutions |
getSolutions()
|
Returns :
any
|
goBack |
goBack()
|
Returns :
void
|
Private handleBackButton |
handleBackButton()
|
Returns :
void
|
ionViewWillEnter |
ionViewWillEnter()
|
Returns :
void
|
ionViewWillLeave |
ionViewWillLeave()
|
Returns :
void
|
loadMore |
loadMore()
|
Returns :
void
|
onSurveyClick | ||||
onSurveyClick(data)
|
||||
Parameters :
Returns :
void
|
redirect | ||||||
redirect(submissionId: any)
|
||||||
Parameters :
Returns :
void
|
redirectObservaiton | ||||
redirectObservaiton(data)
|
||||
Parameters :
Returns :
void
|
redirectProject | ||||
redirectProject(data)
|
||||
Parameters :
Returns :
void
|
selectedSolution | ||||
selectedSolution(data)
|
||||
Parameters :
Returns :
void
|
storeRedirect | ||||
storeRedirect(survey)
|
||||
Parameters :
Returns :
void
|
surveyRedirect | ||||
surveyRedirect(data)
|
||||
Parameters :
Returns :
void
|
Private backButtonFunc |
Type : Subscription
|
count |
Type : number
|
Default value : 0
|
description |
headerConfig |
Type : object
|
Default value : {
showHeader: true,
showBurgerMenu: false,
actionButtons: [],
}
|
limit |
Type : number
|
Default value : 25
|
page |
Type : number
|
Default value : 1
|
programId |
Type : any
|
programName |
Type : any
|
solutions |
import { Location } from '@angular/common';
import { Component } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';
import { KendraApiService } from '../../core/services/kendra-api.service';
import { urlConstants } from '../../core/constants/urlConstants';
import { ToastService, UtilsService, LoaderService, LocalStorageService } from '../../core';
import { RouterLinks } from '@app/app/app.constant';
import { SurveyProviderService } from '../../core/services/survey-provider.service';
import { Subscription } from 'rxjs';
import { AppHeaderService } from '@app/services';
import { Platform } from '@ionic/angular';
import { UpdateLocalSchoolDataService } from '../../core/services/update-local-school-data.service';
import { SplaschreenDeeplinkActionHandlerDelegate } from '@app/services/sunbird-splashscreen/splaschreen-deeplink-action-handler-delegate';
import { storageKeys } from '../../storageKeys';
@Component({
selector: 'app-solution-listing',
templateUrl: './solution-listing.component.html',
styleUrls: ['./solution-listing.component.scss'],
})
export class SolutionListingComponent {
programId: any;
solutions;
description;
count = 0;
limit = 25;
page = 1;
programName: any;
headerConfig = {
showHeader: true,
showBurgerMenu: false,
actionButtons: [],
};
private backButtonFunc: Subscription;
constructor(
private activatedRoute: ActivatedRoute,
private utils: UtilsService,
private kendraService: KendraApiService,
private loader: LoaderService,
private location: Location,
private router: Router,
private surveyProvider: SurveyProviderService,
private headerService: AppHeaderService,
private platform: Platform,
private toast: ToastService,
private ulsdp: UpdateLocalSchoolDataService,
private deeplinkActionHandler: SplaschreenDeeplinkActionHandlerDelegate,
private localStorage: LocalStorageService
) {
activatedRoute.params.subscribe((param) => {
this.programId = param.id;
this.solutions=[];
this.getSolutions();
});
}
ionViewWillEnter() {
this.headerConfig = this.headerService.getDefaultPageConfig();
this.headerConfig.actionButtons = [];
this.headerConfig.showHeader = true;
this.headerConfig.showBurgerMenu = false;
this.headerService.updatePageConfig(this.headerConfig);
this.handleBackButton();
}
ionViewWillLeave() {
if (this.backButtonFunc) {
this.backButtonFunc.unsubscribe();
}
}
private handleBackButton() {
this.backButtonFunc = this.platform.backButton.subscribeWithPriority(11, () => {
this.location.back();
});
}
selectedSolution(data) {
switch (data.type) {
case 'observation':
this.redirectObservaiton(data);
break;
case 'improvementProject':
this.redirectProject(data);
break;
case 'survey':
this.onSurveyClick(data);
break;
case 'course':
this.courseRedirect(data);
break;
default:
break;
}
}
onSurveyClick(data) {
if (data.submissionId && data.submissionId.length) {
this.localStorage
.getLocalStorage(storageKeys.submissionIdArray)
.then((allId) => {
if (allId.includes(data.submissionId)) {
this.redirect(data.submissionId);
} else {
this.surveyRedirect(data);
}
})
.catch(error => {
this.surveyRedirect(data);
})
} else {
this.surveyRedirect(data);
}
}
surveyRedirect(data) {
let surveyId = '';
if (data.surveyId) {
surveyId = data.surveyId;
}
this.surveyProvider
.getDetailsById(surveyId, data._id)
.then((res) => {
if (res.result && res.result.status == 'completed') {
// this.toast.openToast(res.message)
this.surveyProvider.showMsg('surveyCompleted');
return;
}
const survey = res.result;
this.ulsdp.mapSubmissionDataToQuestion(survey, false, true);
this.storeRedirect(survey);
})
.catch((err) => {
console.log(err);
});
}
storeRedirect(survey): void {
this.surveyProvider
.storeSurvey(survey.assessment.submissionId, survey)
.then((survey) => this.redirect(survey.assessment.submissionId));
}
redirect(submissionId: any): void {
this.router.navigate([RouterLinks.QUESTIONNAIRE], {
queryParams: {
submisssionId: submissionId,
evidenceIndex: 0,
sectionIndex: 0,
isSurvey:true
// schoolName: 'sample',
},
});
}
redirectProject(data) {
let projectId = '';
if (data.projectId) {
projectId = data.projectId;
}
if (!projectId) {
this.router.navigate([`${RouterLinks.PROJECT}/${RouterLinks.PROJECT_TEMPLATE}`, data._id], {
queryParams: {
programId: this.programId,
solutionId: data._id,
type: 'assignedToMe',
listing: 'program'
},
});
} else {
this.router.navigate([`${RouterLinks.PROJECT}/${RouterLinks.DETAILS}`], {
queryParams: {
projectId: projectId,
programId: this.programId,
solutionId: data._id,
type: 'assignedToMe'
},
});
}
}
redirectObservaiton(data) {
let observationId = '';
if (data.observationId) {
observationId = data.observationId;
}
this.router.navigate(
[`/${RouterLinks.OBSERVATION}/${RouterLinks.OBSERVATION_DETAILS}`],
{
queryParams: {
programId: this.programId,
solutionId: data._id,
observationId: observationId,
solutionName: data.name,
entityType: data.entityType ? data.entityType : ''
},
}
);
}
async getSolutions() {
this.loader.startLoader();
let payload = await this.utils.getProfileInfo();
if (payload) {
const config = {
url:
urlConstants.API_URLS.SOLUTIONS_LISTING +
this.programId +
'?page=' +
this.page +
'&limit=' +
this.limit +
'&search=',
payload: payload,
};
this.kendraService.post(config).subscribe(
(success) => {
this.loader.stopLoader();
if (success.result.data) {
this.solutions = this.solutions.concat(success.result.data);
this.count = success.result.count;
this.description = success.result.description;
this.programName = success.result.programName;
}
},
(error) => {
this.loader.stopLoader();
this.solutions = [];
}
);
} else {
this.loader.stopLoader();
}
}
goBack() {
this.location.back();
}
courseRedirect(data) {
let link = data.link
let identifier = link.substr(link.lastIndexOf('/')+1)
this.deeplinkActionHandler.navigateContent(identifier)
}
loadMore() {
this.page = this.page + 1;
this.getSolutions();
}
}
<ion-content fullscreen>
<ion-list>
<ion-item lines="none">
<div style="margin-top: 15px">
<ion-label>
<div class="title">{{ programName }}</div>
<div>
<div class="desc">{{ "PROGRAMS_DESC" | translate }}</div>
</div>
</ion-label>
</div>
</ion-item>
</ion-list>
<app-item-list-card [title]="data?.name"
[subTitle]="data?.type == 'improvementProject'? 'Improvement project' : data?.type"
[description]="data?.description"
[id]="data?.id"
(click)="selectedSolution(data)"
*ngFor="let data of solutions">
<div class="certificate-tag" certificate *ngIf="data?.certificateTemplateId">
{{'CERTIFICATE' | translate}}
</div>
<ion-icon class="clr-primary" name="arrow-forward" arrow></ion-icon>
</app-item-list-card>
<app-no-data *ngIf="!solutions?.length"></app-no-data>
</ion-content>
<div class="px-5">
<ion-button expand="block" class="custom-btn-txt-transform-none"
(click)="loadMore()" *ngIf="solutions?.length && count > solutions?.length">{{ "FRMELEMNTS_BTN_VIEW_MORE" | translate }}
</ion-button>
</div>
./solution-listing.component.scss
.desc {
color: #555;
white-space: normal;
padding: 5px 0px 30px 0px;
margin-bottom: 10px;
font-size: 1rem;
}
.title{
font-size: 1rem;
font-weight: bold;
color: black;
// margin: 16px 16px 8px;
}
.list-md {
padding-top: 0px !important;
padding-bottom: 0px !important;
}