File

src/app/components/popups/group-guidelines-popup/group-guidelines-popup.component.ts

Implements

OnInit OnDestroy

Metadata

Index

Properties
Methods
Inputs

Constructor

constructor(popoverCtrl: PopoverController, platform: Platform, utilityService: UtilityService, commonUtilService: CommonUtilService, location: Location)
Parameters :
Name Type Optional
popoverCtrl PopoverController No
platform Platform No
utilityService UtilityService No
commonUtilService CommonUtilService No
location Location No

Inputs

shouldUpdateUserLevelGroupTnc
Type : any

Methods

closePopover
closePopover()
Returns : void
continue
continue()
Returns : void
ngOnDestroy
ngOnDestroy()
Returns : void
Async ngOnInit
ngOnInit()
Returns : any
Async openTermsOfUse
openTermsOfUse()
Returns : any

Properties

agreedToGroupGuidelines
Default value : false
appName
Type : string
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>

./group-guidelines-popup.component.scss

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

results matching ""

    No results matching ""