File

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

Implements

OnInit OnDestroy

Metadata

Index

Properties
Methods

Constructor

constructor(eventsBusService: EventsBusService, telemetryGeneratorService: TelemetryGeneratorService, appGlobalService: AppGlobalService, popoverCtrl: PopoverController, platform: Platform, navParams: NavParams, fileSizePipe: FileSizePipe, zone: NgZone)
Parameters :
Name Type Optional
eventsBusService EventsBusService No
telemetryGeneratorService TelemetryGeneratorService No
appGlobalService AppGlobalService No
popoverCtrl PopoverController No
platform Platform No
navParams NavParams No
fileSizePipe FileSizePipe No
zone NgZone No

Methods

checkboxClicked
checkboxClicked(e: CustomEvent)
Parameters :
Name Type Optional
e CustomEvent No
Returns : void
closePopover
closePopover()
Returns : void
importInitiated
importInitiated()
Returns : void
ngOnDestroy
ngOnDestroy()
Returns : void
Async ngOnInit
ngOnInit()
Returns : any

Properties

backButtonFunc
Type : Subscription
currentCount
deleteChecked
Default value : false
Private eventSubscription
Type : Subscription
fileName
Type : string
filePath
fileSize
importingAndDisablingButton
Default value : false
onLoadClicked
Type : function
totalCount
import {Component, Inject, NgZone, OnDestroy, OnInit} from '@angular/core';
import {NavParams, Platform, PopoverController} from '@ionic/angular';
import {Subscription} from 'rxjs';
import {FileSizePipe} from '@app/pipes/file-size/file-size';
import {
    ContentEventType,
    EventsBusEvent,
    EventsBusService
} from 'sunbird-sdk';
import {TelemetryGeneratorService, AppGlobalService} from '@app/services';
import {
    Environment,
    ImpressionType,
    PageId,
    ID,
    InteractType
  } from '@app/services/telemetry-constants';

@Component({
    selector: 'app-import-popover',
    templateUrl: './import-popover.component.html',
    styleUrls: ['./import-popover.component.scss'],
})
export class ImportPopoverComponent implements OnInit, OnDestroy {
    backButtonFunc: Subscription;
    filePath;
    fileSize;
    deleteChecked = false;
    fileName: string;
    currentCount;
    totalCount;
    private eventSubscription: Subscription;
    importingAndDisablingButton = false;
    onLoadClicked: () => void;

    constructor(
        @Inject('EVENTS_BUS_SERVICE') private eventsBusService: EventsBusService,
        private telemetryGeneratorService: TelemetryGeneratorService,
        private appGlobalService: AppGlobalService,
        private popoverCtrl: PopoverController,
        private platform: Platform,
        private navParams: NavParams,
        private fileSizePipe: FileSizePipe,
        private zone: NgZone
    ) {
    }

    async ngOnInit() {
        this.fileName = this.navParams.get('filename');
        this.fileSize = this.navParams.get('size');
        this.onLoadClicked = this.navParams.get('onLoadClicked');
        this.fileSize = this.fileSizePipe.transform(this.fileSize, 2);
        this.backButtonFunc = this.platform.backButton.subscribeWithPriority(11, () => {
            this.popoverCtrl.dismiss();
            this.backButtonFunc.unsubscribe();
        });
        this.telemetryGeneratorService.generateImpressionTelemetry(
            ImpressionType.VIEW,
            '',
            PageId.IMPORT_CONTENT_POPUP,
            this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
        );
    }

    closePopover() {
        if (!this.importingAndDisablingButton) {
            this.popoverCtrl.dismiss();
        }
    }

    checkboxClicked(e: CustomEvent) {
        if (e.detail.checked) {
            this.deleteChecked = true;
        }
    }

    importInitiated() {
        this.importingAndDisablingButton = true;
        this.onLoadClicked();
        this.telemetryGeneratorService.generateInteractTelemetry(
            this.deleteChecked ? InteractType.DELETE_CHECKED : InteractType.DELETE_UNCHECKED, '',
            this.appGlobalService.isOnBoardingCompleted ? Environment.HOME : Environment.ONBOARDING,
            PageId.IMPORT_CONTENT_POPUP, undefined, undefined, undefined, undefined,
            ID.LOAD_CLICKED
          );
        this.eventSubscription = this.eventsBusService.events().subscribe((event: EventsBusEvent) => {
            this.zone.run(() => {
                if (event.type === ContentEventType.IMPORT_PROGRESS) {
                    this.currentCount = event.payload.currentCount;
                    this.totalCount = event.payload.totalCount;
                }

                if (event.type === ContentEventType.IMPORT_COMPLETED) {
                    if (this.deleteChecked) {
                        this.popoverCtrl.dismiss({isDeleteChecked: true});
                    } else {
                        this.popoverCtrl.dismiss({isDeleteChecked: false});
                    }
                }
            });
        });
    }
    ngOnDestroy(): void {
        if (this.eventSubscription) {
            this.eventSubscription.unsubscribe();
        }
    }
}
<ion-header class="sb-popover-header">
  <ion-toolbar class="sb-popover-toolbar">
    <ion-title class="sb-popover-title"> {{'LOAD_FILE' | translate}}
      <ion-icon name="close" class="sb-modal-close" (click)="closePopover()"></ion-icon>
    </ion-title>
  </ion-toolbar>
</ion-header>

<ion-content class="sb-popover-container ion-no-padding">
  <ion-item lines="none" *ngIf="!importingAndDisablingButton">
    <ion-label>{{'FILE_NAME' | translate: {'%s': fileName} }}</ion-label>
  </ion-item>
  <ion-item lines="none" *ngIf="importingAndDisablingButton">
    <ion-label>{{'IMPORTING' | translate}} {{currentCount}} / {{totalCount}}</ion-label>
  </ion-item>
  <ion-item lines="none">
    <p class="file-size" *ngIf="fileSize">{{'SIZE' | translate: {'%s': fileSize} }}</p>
  </ion-item>

  <ion-item lines="none">
    <ion-checkbox slot="start" [disabled]="importingAndDisablingButton" (ionChange)="checkboxClicked($event)">
    </ion-checkbox>
    <ion-label>Delete .ecar file after loading</ion-label>
  </ion-item>
</ion-content>

<ion-footer>
  <div class="sb-popover-footer">
    <button class="sb-popover-action-btn width-100 popover-color" [disabled]="importingAndDisablingButton"
      (click)="importInitiated()">{{'LOAD' | translate}}</button>
  </div>
</ion-footer>

./import-popover.component.scss

@import "../../../../assets/styles/base/variables";

.sb-popover .sb-popover-footer .sb-popover-action-btn.sb-btn-outline-info {
  color: $primary-color;
  margin: 0 10px;
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""