File

src/app/components/popups/upgrade-popover/upgrade-popover.component.ts

Metadata

Index

Properties
Methods
Inputs

Constructor

constructor(utilityService: UtilityService, popCtrl: PopoverController, navParams: NavParams, telemetryGeneratorService: TelemetryGeneratorService, appVersion: AppVersion)
Parameters :
Name Type Optional
utilityService UtilityService No
popCtrl PopoverController No
navParams NavParams No
telemetryGeneratorService TelemetryGeneratorService No
appVersion AppVersion No

Inputs

type
Type : any

Methods

cancel
cancel()
Returns : void
Async init
init()
Returns : any
upgradeApp
upgradeApp(link)
Parameters :
Name Optional
link No
Returns : void

Properties

actionButtonNo
Type : any
actionButtonYes
Type : any
appName
Type : string
isMandatoryUpgrade
Default value : false
pageId
Type : PageId
upgradeType
Type : any
import { Component, Input } from '@angular/core';
import { UtilityService } from '@app/services/utility-service';
import { NavParams, PopoverController } from '@ionic/angular';
import {
  Environment, ID,
  ImpressionSubtype,
  ImpressionType,
  InteractSubtype,
  InteractType,
  PageId,
} from '@app/services';
import { TelemetryGeneratorService } from '../../../../services/telemetry-generator.service';
import { AppVersion } from '@ionic-native/app-version/ngx';

declare const cordova;


@Component({
  selector: 'app-upgrade-popover',
  templateUrl: './upgrade-popover.component.html',
  styleUrls: ['./upgrade-popover.component.scss'],
})
export class UpgradePopoverComponent {

  upgradeType: any;
  isMandatoryUpgrade = false;
  pageId: PageId;
  appName: string;
  actionButtonYes: any;
  actionButtonNo: any;

  @Input() type;
  constructor(
    private utilityService: UtilityService,
    private popCtrl: PopoverController,
    private navParams: NavParams,
    private telemetryGeneratorService: TelemetryGeneratorService,
    private appVersion: AppVersion,
  ) {
    this.init();
  }

  async init() {
    const values = {};
    this.appName = await this.appVersion.getAppName();
    this.upgradeType = this.navParams.get('upgrade');
    if (this.upgradeType.type === 'force' || this.upgradeType.type === 'forced') {
      this.isMandatoryUpgrade = true;
      values['minVersionCode'] = this.upgradeType.minVersionCode;
      values['maxVersionCode'] = this.upgradeType.maxVersionCode;
    }
    values['currentAppVersionCode'] = this.upgradeType.currentAppVersionCode;
    values['requiredVersionCode'] = this.upgradeType.requiredVersionCode;
    const impressionSubtype: string = this.upgradeType.requiredVersionCode ? ImpressionSubtype.DEEPLINK : ImpressionSubtype.UPGRADE_POPUP;
    if (this.upgradeType.actionButtons) {
      for (const actionButton of this.upgradeType.actionButtons) {
        if (actionButton.action === 'yes') {
          this.actionButtonYes = actionButton;
        } else if (actionButton.action === 'no') {
          this.actionButtonNo = actionButton;
        }
      }
    }
    const interactSubType: string = this.upgradeType.type === 'force' || this.upgradeType.type === 'forced'
        ? InteractSubtype.FORCE_UPGRADE_INFO : this.upgradeType.type === 'optional' &&
        this.upgradeType.isFromDeeplink ? InteractSubtype.DEEPLINK_UPGRADE : InteractSubtype.OPTIONAL_UPGRADE;

    this.telemetryGeneratorService.generateImpressionTelemetry(
      ImpressionType.VIEW,
      impressionSubtype,
      PageId.UPGRADE_POPUP,
      this.upgradeType.isOnboardingCompleted ? Environment.HOME : Environment.ONBOARDING
    );
    this.telemetryGeneratorService.generateInteractTelemetry(
      InteractType.OTHER,
      interactSubType,
      this.upgradeType.isOnboardingCompleted ? Environment.HOME : Environment.ONBOARDING,
      PageId.UPGRADE_POPUP,
      undefined,
      values
    );
  }

  cancel() {
    this.popCtrl.dismiss();
    this.telemetryGeneratorService.generateInteractTelemetry(
        InteractType.OTHER,
        '',
        this.upgradeType.isOnboardingCompleted ? Environment.HOME : Environment.ONBOARDING,
        PageId.UPGRADE_POPUP,
        undefined,
        undefined,
        undefined,
        undefined,
        ID.CANCEL_CLICKED
    );
  }

  upgradeApp(link) {
    // for in app update
    cordova.plugins.InAppUpdateManager.checkForImmediateUpdate(
        () => {},
        () => {}
    );
    this.telemetryGeneratorService.generateInteractTelemetry(
      InteractType.TOUCH,
      InteractSubtype.UPGRADE_CLICKED,
      Environment.HOME,
      PageId.UPGRADE_POPUP
    );
    if (this.upgradeType.type === 'optional') {
      this.popCtrl.dismiss();
    }
  }
}
<div class="close-container">
    <ion-icon *ngIf="!isMandatoryUpgrade" name="close" class="sb-modal-close"
        (click)="cancel(); $event.preventDefault(); $event.stopPropagation();"></ion-icon>
</div>

<ion-content class="ion-padding-top ion-padding-horizontal">
    <div class="ion-text-center">
        <img src="assets/imgs/ic_launcher.png" alt="app" height="70" width="70" />
        <h6>
            <strong>{{upgradeType?.title | translate: {'app_name': appName} }}</strong>
        </h6>
        <p class="scroll">{{upgradeType?.desc | translate }}</p>
    </div>
</ion-content>
<ion-footer class="ion-no-border ion-padding">
    <ion-button *ngIf="!isMandatoryUpgrade && actionButtonNo" expand="block" fill="outline" size="small"
        (click)="cancel() ">
        {{ actionButtonNo.label | translate }}
    </ion-button>
    <ion-button *ngIf="actionButtonYes" expand="block" size="small" (click)="upgradeApp(actionButtonYes.link)">
        {{ actionButtonYes.label | translate }}
    </ion-button>
</ion-footer>

./upgrade-popover.component.scss

@import "src/assets/styles/_custom-mixins.scss";

:host {
  .close-container {
    position: relative;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    .sb-modal-close {
      position: absolute;
      right: 1rem;
      width: 1.25rem;
      height: 1.25rem;
    }
  }
  .scroll {
    height: 15vh;
    overflow: scroll;
    overflow-y: visible;
  }
  ion-app.md [padding-horizontal] .scroll-content {
    @include padding(null, 0 !important);
  }
  ion-app.md [padding-top] .scroll-content {
    padding-top: 0 !important;
  }
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""