File

src/app/manage-learn/reports/reports-listing/reports-listing.component.ts

Metadata

Index

Properties
Methods

Constructor

constructor(location: Location, headerService: AppHeaderService, platform: Platform, router: Router)
Parameters :
Name Type Optional
location Location No
headerService AppHeaderService No
platform Platform No
router Router No

Methods

Private handleBackButton
handleBackButton()
Returns : void
handleNavBackButton
handleNavBackButton()
Returns : void
ionViewWillEnter
ionViewWillEnter()
Returns : void
ionViewWillLeave
ionViewWillLeave()
Returns : void
onReportClick
onReportClick(item)
Parameters :
Name Optional
item No
Returns : void

Properties

Private backButtonFunc
Type : Subscription
headerConfig
Type : object
Default value : { showHeader: true, showBurgerMenu: false, actionButtons: [], }
reportsArray
Type : []
Default value : [ { title: 'FRMELEMNTS_LBL_OBSERVATION_REPORTS', subTitle: 'FRMELEMNTS_LBL_OBSERVATION_REPORTS_DEC', link:`${RouterLinks.REPORTS}/${RouterLinks.OBSERVATION_SOLUTION_LISTING}` // link: RouterLinks.OBSERVATION, }, { title: 'FRMELEMNTS_LBL_SURVEY_REPORTS', subTitle: 'FRMELEMNTS_LBL_SURVEY_REPORTS_DESC', link: RouterLinks.SURVEY, }, { title: 'FRMELEMNTS_LBL_IMPROVEMENT_REPORTS', subTitle: 'FRMELEMNTS_LBL_IMPROVEMENT_REPORTS_DESC', link: RouterLinks.PROJECT_REPORT, }, ]
import { Component } from '@angular/core';
import { AppHeaderService } from '@app/services';
import { Platform } from '@ionic/angular';
import { Subscription } from 'rxjs';
import { Location } from '@angular/common';
import { Router} from '@angular/router';
import { RouterLinks } from '@app/app/app.constant';

@Component({
  selector: 'app-reports-listing',
  templateUrl: './reports-listing.component.html',
  styleUrls: ['./reports-listing.component.scss'],
})
export class ReportsListingComponent {
  private backButtonFunc: Subscription;
  headerConfig = {
    showHeader: true,
    showBurgerMenu: false,
    actionButtons: [],
  };

  reportsArray = [
    {
      title: 'FRMELEMNTS_LBL_OBSERVATION_REPORTS',
      subTitle: 'FRMELEMNTS_LBL_OBSERVATION_REPORTS_DEC',
      link:`${RouterLinks.REPORTS}/${RouterLinks.OBSERVATION_SOLUTION_LISTING}`
      // link: RouterLinks.OBSERVATION,
    },
    {
      title: 'FRMELEMNTS_LBL_SURVEY_REPORTS',
      subTitle: 'FRMELEMNTS_LBL_SURVEY_REPORTS_DESC',
      link: RouterLinks.SURVEY,
    },
    {
      title: 'FRMELEMNTS_LBL_IMPROVEMENT_REPORTS',
      subTitle: 'FRMELEMNTS_LBL_IMPROVEMENT_REPORTS_DESC',
      link: RouterLinks.PROJECT_REPORT,
    },
  ];

  constructor(
    private location: Location,
    private headerService: AppHeaderService,
    private platform: Platform,
    private router: Router
  ) {}


  ionViewWillEnter() {
    this.headerConfig = this.headerService.getDefaultPageConfig();
    this.headerConfig.actionButtons = [];
    this.headerConfig.showHeader = true;
    this.headerConfig.showBurgerMenu = false;
    this.headerService.updatePageConfig(this.headerConfig);
    this.handleBackButton();
  }

  ionViewWillLeave() {
    if (this.backButtonFunc) {
      this.backButtonFunc.unsubscribe();
    }
  }

  private handleBackButton() {
    this.backButtonFunc = this.platform.backButton.subscribeWithPriority(10, () => {
      this.location.back();
      this.backButtonFunc.unsubscribe();
    });
  }

  handleNavBackButton() {
    this.location.back();
  }
  onReportClick(item) {
    if (item.link != "survey") {
      this.router.navigate([item.link]);
      return;
    }

    const extras = {
      state: {
        data: {
          report: true,
        },
      },
    };
    this.router.navigate([item.link],extras);
 }
}
<ion-content fullscreen>
  <app-common-header
    title="{{ 'FRMELEMNTS_LBL_REPORTS' | translate }}"
    subTitle="{{ 'FRMELEMNTS_LBL_REPORTS_DESC' | translate }}"
  ></app-common-header>
  <section>
    <app-item-list-card
      title="{{ item?.title | translate }}"
      subTitle="{{ item?.subTitle | translate }}"
      (cardSelect)="onReportClick(item)"
      *ngFor="let item of reportsArray"
    >
      <span class="dot" color></span>
      <ion-icon arrow class="mg-popup-btn-icon" name="arrow-forward"></ion-icon>
    </app-item-list-card>
  </section>
</ion-content>

./reports-listing.component.scss

@import "src/assets/styles/_variables.scss";
.dot {
  height: 3.125rem;
  width: 3.125rem;
  display: inline-block;
  margin: 0 6.2px;
  background-color: $gray-100;
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""