File
Implements
Index
Properties
|
|
Methods
|
|
Inputs
|
|
certificateDetails
|
Type : any
|
|
content
|
Type : ContentData
|
|
corRelationList
|
Type : Array<CorrelationData>
|
|
Methods
Private
certificateSectionClicked
|
certificateSectionClicked(params)
|
|
|
showCertificate
|
showCertificate()
|
|
|
meritCertPercent
|
Type : any
|
|
showCompletionCertificate
|
Default value : false
|
|
showCredits
|
Default value : false
|
|
showMeritCertificate
|
Default value : false
|
|
import {Component, Input, OnInit} from '@angular/core';
import {ContentData, CorrelationData, Rollup, TelemetryObject} from 'sunbird-sdk';
import {CommonUtilService, ID, InteractType, PageId, TelemetryGeneratorService} from '@app/services';
@Component({
selector: 'app-show-certificate-component',
templateUrl: './show-certificate-component.component.html',
styleUrls: ['./show-certificate-component.component.scss'],
})
export class ShowCertificateComponent implements OnInit {
showCredits = false;
@Input() content: ContentData;
@Input() objRollup: Rollup;
@Input() corRelationList: Array<CorrelationData>;
@Input() pageId: PageId;
@Input() certificateDetails: any;
private objId;
private objVer;
private objType;
showCompletionCertificate = false;
showMeritCertificate = false;
meritCertPercent : any ;
criteria : any;
constructor(
private telemetryGeneratorService: TelemetryGeneratorService,
private commonUtilService: CommonUtilService
) {
}
ngOnInit() {
this.objId = this.content.identifier;
this.objType = this.content.contentType;
this.objVer = this.content.pkgVersion;
for(let key in this.certificateDetails) {
const certCriteria = this.certificateDetails[key]['criteria'];
if(typeof(certCriteria)== 'string') {
this.criteria = JSON.parse(certCriteria);
this.showCompletionCertificate = this.criteria.enrollment && this.criteria.enrollment.status === 2 ? true : false;
this.showMeritCertificate = this.criteria.assessment && this.criteria.assessment.score ? true : false;
this.meritCertPercent = this.criteria.assessment && this.criteria.assessment.score['>='];
}
else if (certCriteria) {
this.showCompletionCertificate = certCriteria.enrollment && certCriteria.enrollment.status === 2 ? true : false;
this.showMeritCertificate = certCriteria.assessment && certCriteria.assessment.score ? true : false;
this.meritCertPercent = certCriteria.assessment && certCriteria.assessment.score['>='];
}
}
}
showCertificate() {
this.showCredits = !this.showCredits;
if (this.showCredits) {
this.certificateSectionClicked('expanded');
} else {
this.certificateSectionClicked('collapsed');
}
}
private certificateSectionClicked(params) {
const telemetryObject = new TelemetryObject(this.objId, this.objType, this.objVer);
this.telemetryGeneratorService.generateInteractTelemetry(
params === 'expanded' ? InteractType.CERTIFICATE_CARD_EXPANDED : InteractType.CERTIFICATE_CARD_COLLAPSED,
'',
undefined,
this.pageId,
telemetryObject,
undefined,
this.objRollup,
this.corRelationList,
ID.CERTIFICATE_SECTION
);
}
}
<ion-card *ngIf="certificateDetails" class="ion-no-margin">
<ion-card-content class="ion-no-padding">
<div>
<div>
<div class="ion-padding">
<div class="font-14-new view-credits my-8" role="heading" aria-level="1" (click)="showCertificate()">
<span>
<strong>{{'FRMELEMNTS_LBL_EARNCERT' | translate}}</strong>
</span>
<span *ngIf="showCredits">
<ion-icon name="arrow-up"></ion-icon>
</span>
<span *ngIf="!showCredits">
<ion-icon name="arrow-down"></ion-icon>
</span>
</div>
</div>
<div *ngIf="showCredits" class="showCertificate">
<div class="ion-padding">
<div>
<ion-card-title class="font-12 subtitle-color label-margin-bottom">
<p *ngIf="showCompletionCertificate"><span style="font-size: 150%" style="color:gray"> > </span> {{'FRMELEMNTS_LBL_EARNYOURCERT' | translate}}</p>
<p *ngIf="showMeritCertificate"><span style="font-size: 150%" style="color:gray"> > </span> {{'FRMELEMNTS_LBL_EARNMCERT' | translate: {'percent': meritCertPercent} }}</p>
</ion-card-title>
</div>
</div>
</div>
</div>
</div>
</ion-card-content>
</ion-card>
@import "src/assets/styles/variables";
@import "src/assets/styles/_variables.scss";
.view-credits{
margin-left: 0;
span{
color: $blue;
ion-icon{
padding: 0 0 4px 8px;
vertical-align: middle;
font-size: 1.5rem;
float: right;
}
}
}
.showCertificate{
p{
margin-bottom: 16px;
}
ion-card-title{
strong{
font-size: .75rem;
}
}
}
.label-margin-bottom {
margin-bottom: 3px !important;
}
.subtitle-color{
color: map-get($colors, granite_gray);
}
.font-12 {
font-size: 0.75rem !important;
}
Legend
Html element with directive