File
Implements
Index
Properties
|
|
Methods
|
|
Inputs
|
|
shouldUpdateUserLevelGroupTnc
|
Type : any
|
|
Methods
closePopover
|
closePopover()
|
|
|
ngOnDestroy
|
ngOnDestroy()
|
|
|
Async
ngOnInit
|
ngOnInit()
|
|
|
Async
openTermsOfUse
|
openTermsOfUse()
|
|
|
agreedToGroupGuidelines
|
Default value : false
|
|
backButtonFunc
|
Type : Subscription
|
|
Public
popoverCtrl
|
Type : PopoverController
|
|
showGroupGuideLinesError
|
Default value : false
|
|
import { Component, Input, OnInit, OnDestroy } from '@angular/core';
import { Platform, PopoverController } from '@ionic/angular';
import { Subscription } from 'rxjs';
import { CommonUtilService, UtilityService } from '@app/services';
import { RouterLinks } from '@app/app/app.constant';
import { Location } from '@angular/common';
@Component({
selector: 'app-group-guidelines-popover',
templateUrl: 'group-guidelines-popup.component.html',
styleUrls: ['./group-guidelines-popup.component.scss'],
})
export class GroupGuideLinesPopoverComponent implements OnInit, OnDestroy {
@Input("shouldUpdateUserLevelGroupTnc") shouldUpdateUserLevelGroupTnc;
backButtonFunc: Subscription;
appName: string;
showGroupGuideLinesError = false;
agreedToGroupGuidelines = false;
constructor(
public popoverCtrl: PopoverController,
private platform: Platform,
private utilityService: UtilityService,
private commonUtilService: CommonUtilService,
private location: Location
) { }
async ngOnInit() {
this.appName = await this.commonUtilService.getAppName();
this.backButtonFunc = this.platform.backButton.subscribeWithPriority(11, () => {
this.popoverCtrl.dismiss({ isLeftButtonClicked: null });
if(this.shouldUpdateUserLevelGroupTnc) {
this.location.back();
}
this.backButtonFunc.unsubscribe();
});
}
ngOnDestroy(): void {
this.backButtonFunc.unsubscribe();
}
closePopover() {
this.popoverCtrl.dismiss({ isLeftButtonClicked: null });
}
continue() {
if (this.agreedToGroupGuidelines) {
this.popoverCtrl.dismiss({ isLeftButtonClicked: true });
} else {
this.showGroupGuideLinesError = true;
}
}
async openTermsOfUse() {
const baseUrl = await this.utilityService.getBuildConfigValue('TOU_BASE_URL');
const url = baseUrl + RouterLinks.TERM_OF_USE + '#groupGuidelines';
const options
= 'hardwareback=yes,clearcache=no,zoom=no,toolbar=yes,disallowoverscroll=yes';
(window as any).cordova.InAppBrowser.open(url, '_blank', options);
}
}
<ion-header class="sb-popover-header">
<ion-toolbar class="sb-popover-toolbar">
<ion-title class="sb-popover-title" role="heading" aria-level="2">{{'GROUP_GUIDELINES' | translate}}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="sb-popover-container ion-no-padding">
<div class="sb-popover-items">
<div class="sb-popover-content-details">
<div class="gg-terms-container">
<div class="input-item gg-input-primary" lines="none">
<ion-checkbox class="gg-terms-checkbox" color="secondary" checked="false" [(ngModel)]="agreedToGroupGuidelines"></ion-checkbox>
<p class="gg-terms-checkbox-label">
<span>{{'I_AGREE_TO' | translate: {'app_name': appName} }} </span><span class="gg-terms" (click)="openTermsOfUse()">{{'GROUP_GUIDELINES' | translate}}</span>
</p>
</div>
<p
*ngIf="showGroupGuideLinesError"
class="cr-error cr-error-checkbox"
[innerHTML]="'GROUP_TERMS_IS_REQUIRED' | translate: {'app_name': appName}" ></p>
</div>
</div>
</div>
</ion-content>
<ion-footer>
<div class="sb-popover-footer">
<button class="sb-popover-action-btn popover-color" (click)="continue()">{{'CONTINUE' | translate}}</button>
</div>
</ion-footer>
@import "src/assets/styles/_variables.scss";
.gg-terms-container{
padding: 0 16px;
font-size: $font-size-base;
.gg-terms-checkbox-label{
margin-left: 16px;
display: inline-block;
vertical-align: super;
margin-bottom: 0;
}
.gg-terms{
color: $blue;
}
}
.cr-error{
margin-top: 8px;
display: block;
font-size: 0.75rem;
color: $red;
line-height: 0.625rem;
}
Legend
Html element with directive