File

src/app/faq-report-issue/faq-report-issue.page.ts

Implements

OnInit OnDestroy

Metadata

Index

Properties
Methods

Constructor

constructor(router: Router, preferences: SharedPreferences, profileService: ProfileService, contentService: ContentService, deviceInfo: DeviceInfo, frameworkService: FrameworkService, frameworkUtilService: FrameworkUtilService, telemetryService: TelemetryService, telemetryGeneratorService: TelemetryGeneratorService, appGlobalService: AppGlobalService, commonUtilService: CommonUtilService, headerService: AppHeaderService, location: Location, socialSharing: SocialSharing, appVersion: AppVersion, translate: TranslateService, modalCtrl: ModalController, zone: NgZone, formAndFrameworkUtilService: FormAndFrameworkUtilService, frameworkCommonFormConfigBuilder: FrameworkCommonFormConfigBuilder, aliasBoardName: AliasBoardName)
Parameters :
Name Type Optional
router Router No
preferences SharedPreferences No
profileService ProfileService No
contentService ContentService No
deviceInfo DeviceInfo No
frameworkService FrameworkService No
frameworkUtilService FrameworkUtilService No
telemetryService TelemetryService No
telemetryGeneratorService TelemetryGeneratorService No
appGlobalService AppGlobalService No
commonUtilService CommonUtilService No
headerService AppHeaderService No
location Location No
socialSharing SocialSharing No
appVersion AppVersion No
translate TranslateService No
modalCtrl ModalController No
zone NgZone No
formAndFrameworkUtilService FormAndFrameworkUtilService No
frameworkCommonFormConfigBuilder FrameworkCommonFormConfigBuilder No
aliasBoardName AliasBoardName No

Methods

ackknowledgeResponse
ackknowledgeResponse()
Returns : void
arrayListHandling
arrayListHandling(arr, action?)
Parameters :
Name Optional
arr No
action Yes
Returns : void
checkDataSrc
checkDataSrc(obj)
Parameters :
Name Optional
obj No
Returns : void
converDataSrcToClosure
converDataSrcToClosure(templateOptions)
Parameters :
Name Optional
templateOptions No
Returns : void
Async dataLoadStatus
dataLoadStatus($event)
Parameters :
Name Optional
$event No
Returns : any
extractPrepareFieldStr
extractPrepareFieldStr(field)
Parameters :
Name Optional
field No
Returns : any
generateInteractEvent
generateInteractEvent(interactType: string, subtype: string, size: number, corRelationList?)
Parameters :
Name Type Optional
interactType string No
subtype string No
size number No
corRelationList Yes
Returns : void
generateInteractTelemetry
generateInteractTelemetry(interactSubtype, values)
Parameters :
Name Optional
interactSubtype No
values No
Returns : void
Private generateLogTelemetry
generateLogTelemetry()
Returns : void
Async getBoardDetails
getBoardDetails()
Returns : any
getBoardMediumGrade
getBoardMediumGrade(mailBody: string)
Parameters :
Name Type Optional
mailBody string No
Returns : string
getClosure
getClosure(type: string)
Parameters :
Name Type Optional
type string No
Returns : any
getStringFromArray
getStringFromArray(arr)
Parameters :
Name Optional
arr No
Returns : any
handleBackButton
handleBackButton()
Returns : void
Private handleHeaderEvents
handleHeaderEvents($event)
Parameters :
Name Optional
$event No
Returns : void
Async initiateEmailAction
initiateEmailAction()
Returns : any
ngOnDestroy
ngOnDestroy()
Returns : void
ngOnInit
ngOnInit()
Returns : void
Async openExploreBooksComponent
openExploreBooksComponent()
Returns : any
prepareEmailContent
prepareEmailContent(formValue)
Parameters :
Name Optional
formValue No
Returns : void
prepareTelemetryCorrelation
prepareTelemetryCorrelation()
Returns : Array<CorrelationData>
receiveMessage
receiveMessage(event)
Parameters :
Name Optional
event No
Returns : void
responseSubmitted
responseSubmitted()
Returns : void
Async sendMessage
sendMessage(message: string)
Parameters :
Name Type Optional
message string No
Returns : any
Async showContactBoard
showContactBoard()
Returns : any
statusChanged
statusChanged($event)
Parameters :
Name Optional
$event No
Returns : void
submit
submit()
Returns : boolean
Async syncTelemetry
syncTelemetry()
Returns : any
takeAction
takeAction(action?: string)
Parameters :
Name Type Optional
action string Yes
Returns : void
valueChanged
valueChanged($event)
Parameters :
Name Optional
$event No
Returns : void

Properties

appName
Type : string
bmgsString
Type : any
boardContact
Type : literal type
boardValue
Type : string
btnColor
Type : string
Default value : '#8FC4FF'
callToAction
Type : any
Default value : {}
categories
Type : any
charEntered
Type : boolean
charsLeft
Type : any
cnotextasdas
Type : literal type
Private corRelationList
Type : Array<CorrelationData>
data
Type : any
deviceId
Type : string
emailContent
Type : any
fileUrl
Type : string
formConfig
Type : any
formContext
Type : any
formValues
Type : any
Public gradeList
Type : literal type[]
Default value : []
gradeValue
Type : string
headerObservable
Type : any
isFormValid
Type : boolean
len
Type : any
loader
Type : any
Public mediumList
Type : literal type[]
Default value : []
mediumtValue
Type : string
Private messageListener
Type : function
preFillData
Type : any
profile
Type : any
Default value : { board: [], medium: [], grade: [], subject: [] }
relevantTerms
Type : any
showSupportContact
Type : boolean
showThanksResponse
Type : boolean
subcategory
Type : any
subjectDetails
Type : string
Public subjectList
Type : literal type[]
Default value : []
subjectValue
Type : string
supportEmail
Type : any
Public syllabusList
Type : literal type[]
Default value : []
value
Type : any
Public zone
Type : NgZone
import { Component, OnInit, Inject, OnDestroy, NgZone } from '@angular/core';
import { Router } from '@angular/router';
import { TelemetryGeneratorService } from '@app/services/telemetry-generator.service';
import { AudienceFilter, ProfileConstants, FormConfigSubcategories, PrimaryCategory } from '../app.constant';
import {
  ProfileService,
  ContentService,
  DeviceInfo,
  Profile,
  GetAllProfileRequest,
  ContentRequest,
  SharedPreferences,
  FrameworkUtilService,
  GetSuggestedFrameworksRequest,
  CachedItemRequestSourceFrom,
  FrameworkCategoryCodesGroup,
  Framework,
  FrameworkService,
  TelemetryService,
  TelemetrySyncStat,
  CorrelationData,
  LogLevel
} from 'sunbird-sdk';
import {
  Environment,
  InteractType,
  PageId,
  ImpressionType,
  InteractSubtype,
  CorReleationDataType,
  ID
} from '@app/services/telemetry-constants';
import { AppGlobalService } from '@app/services/app-global-service.service';
import { CommonUtilService } from '@app/services/common-util.service';
import { SocialSharing } from '@ionic-native/social-sharing/ngx';
import { AppVersion } from '@ionic-native/app-version/ngx';
import { map } from 'rxjs/operators';
import { TranslateService } from '@ngx-translate/core';
import { AppHeaderService, FormAndFrameworkUtilService } from '@app/services';
import { Location } from '@angular/common';
import { ExploreBooksSortComponent } from '../resources/explore-books-sort/explore-books-sort.component';
import { ModalController } from '@ionic/angular';
import { FrameworkCommonFormConfigBuilder } from '@app/services/common-form-config-builders/framework-common-form-config-builder';
import {AliasBoardName} from '@app/pipes/alias-board-name/alias-board-name';

const KEY_SUNBIRD_CONFIG_FILE_PATH = 'sunbird_config_file_path';
const SUBJECT_NAME = 'support request';

@Component({
  selector: 'app-faq-report-issue',
  templateUrl: './faq-report-issue.page.html',
  styleUrls: ['./faq-report-issue.page.scss']
})
export class FaqReportIssuePage implements OnInit, OnDestroy {

  data: any;
  private messageListener: (evt: Event) => void;
  deviceId: string;
  fileUrl: string;
  subjectDetails: string;
  appName: string;
  value: any;
  emailContent: any;
  charsLeft: any;
  len: any;
  charEntered: boolean;
  loader: any;
  profile: any = {
    board: [],
    medium: [],
    grade: [],
    subject: []
  };
  boardValue: string;
  mediumtValue: string;
  gradeValue: string;
  subjectValue: string;

  public syllabusList: { name: string, code: string }[] = [];
  public mediumList: { name: string, code: string }[] = [];
  public gradeList: { name: string, code: string }[] = [];
  public subjectList: { name: string, code: string }[] = [];

  btnColor = '#8FC4FF';
  preFillData: any;
  subcategory: any;
  formConfig: any;

  headerObservable: any;
  isFormValid: boolean;
  formValues: any;
  boardContact: { code: string; name: string; message: string; contactinfo: { number: string; email: any; }; };
  bmgsString: any;
  categories: any;
  cnotextasdas: { [key: string]: { code: string; path?: string[]; }[]; };
  callToAction: any = {};
  showSupportContact: boolean;
  showThanksResponse: boolean;
  formContext: any;
  supportEmail: any;
  relevantTerms: any;
  private corRelationList: Array<CorrelationData>;

  constructor(
    private router: Router,
    @Inject('SHARED_PREFERENCES') private preferences: SharedPreferences,
    @Inject('PROFILE_SERVICE') private profileService: ProfileService,
    @Inject('CONTENT_SERVICE') private contentService: ContentService,
    @Inject('DEVICE_INFO') private deviceInfo: DeviceInfo,
    @Inject('FRAMEWORK_SERVICE') private frameworkService: FrameworkService,
    @Inject('FRAMEWORK_UTIL_SERVICE') private frameworkUtilService: FrameworkUtilService,
    @Inject('TELEMETRY_SERVICE') private telemetryService: TelemetryService,
    private telemetryGeneratorService: TelemetryGeneratorService,
    private appGlobalService: AppGlobalService,
    private commonUtilService: CommonUtilService,
    private headerService: AppHeaderService,
    private location: Location,
    private socialSharing: SocialSharing,
    private appVersion: AppVersion,
    private translate: TranslateService,
    private modalCtrl: ModalController,
    public zone: NgZone,
    private formAndFrameworkUtilService: FormAndFrameworkUtilService,
    private frameworkCommonFormConfigBuilder: FrameworkCommonFormConfigBuilder,
    private aliasBoardName: AliasBoardName
  ) {
    if (this.router.getCurrentNavigation().extras.state) {
      this.data = this.router.getCurrentNavigation().extras.state.data;
      this.formContext = this.router.getCurrentNavigation().extras.state.formCnotext;
      this.corRelationList = this.router.getCurrentNavigation().extras.state.corRelation || [];
      if (this.router.getCurrentNavigation().extras.state.showHeader) {
        this.headerService.showHeaderWithBackButton();
        this.headerObservable = this.headerService.headerEventEmitted$.subscribe(eventName => {
          this.handleHeaderEvents(eventName);
        });
      }
      this.formConfig = this.appGlobalService.formConfig;
      this.arrayListHandling(this.formConfig);
    }
    this.profileService.getActiveSessionProfile({ requiredFields: ProfileConstants.REQUIRED_FIELDS }).toPromise()
      .then((res: any) => {
        this.profile = res;
      })
      .catch(async () => {
        await this.loader.dismiss();
      });
  }

  private handleHeaderEvents($event) {
    if($event.name === 'back'){
      setTimeout(() => {
        this.handleBackButton();
      }, 100);
    }
  }

  handleBackButton() {
    this.location.back();
  }

  async getBoardDetails() {
    this.loader = await this.commonUtilService.getLoader();
    await this.loader.present();

    const getSuggestedFrameworksRequest: GetSuggestedFrameworksRequest = {
      from: CachedItemRequestSourceFrom.SERVER,
      language: this.translate.currentLang,
      requiredCategories: FrameworkCategoryCodesGroup.DEFAULT_FRAMEWORK_CATEGORIES
    };

    this.frameworkUtilService.getActiveChannelSuggestedFrameworkList(getSuggestedFrameworksRequest).toPromise()
      .then(async (frameworks: Framework[]) => {
        if (!frameworks || !frameworks.length) {
          await this.loader.dismiss();
          this.commonUtilService.showToast('NO_DATA_FOUND');
          return;
        }
        this.syllabusList = frameworks.map(r => ({ name: r.name, code: r.identifier }));
        await this.loader.dismiss();
      });
  }

  ngOnInit() {
    this.appVersion.getAppName()
      .then((appName) => {
        this.appName = appName;
        console.log('AppName', this.appName);
      }
    );
    this.messageListener = (event) => {
      this.receiveMessage(event);
    };
    window.addEventListener('message', this.messageListener, false);
    this.telemetryGeneratorService.generateImpressionTelemetry(
      ImpressionType.VIEW,
      '',
      PageId.FAQ_REPORT_ISSUE,
      Environment.USER,
      undefined,
      undefined,
      undefined,
      undefined,
      this.corRelationList
    );
  }

  ngOnDestroy() {
    window.removeEventListener('message', this.messageListener);
    if (this.headerObservable) {
      this.headerObservable.unsubscribe();
    }
    this.appGlobalService.formConfig = undefined;
  }

  receiveMessage(event) {
    const values = new Map();
    values['values'] = event.data;
    // send telemetry for all events except Initiate-Email
    if (event.data && event.data.action && event.data.action !== 'initiate-email-clicked') {
      this.generateInteractTelemetry(event.data.action, values);
    } else {
      event.data.initiateEmailBody = this.getBoardMediumGrade(event.data.initiateEmailBody) + event.data.initiateEmailBody;
      this.generateInteractTelemetry(event.data.action, values);
      // launch email sharing
      this.sendMessage(event.data.initiateEmailBody);
    }
  }

  async sendMessage(message: string) {
    const allUserProfileRequest: GetAllProfileRequest = {
      local: true,
      server: true
    };
    const contentRequest: ContentRequest = {
      primaryCategories: PrimaryCategory.FOR_DOWNLOADED_TAB,
      audience: AudienceFilter.GUEST_TEACHER
    };
    const getUserCount = await this.profileService.getAllProfiles(allUserProfileRequest).pipe(
      map((profile) => profile.length)
    )
      .toPromise();
    const getLocalContentCount = await this.contentService.getContents(contentRequest).pipe(
      map((contentCount) => contentCount.length)
    )
      .toPromise();
    (<any>window).sbutility.shareSunbirdConfigurations(getUserCount, getLocalContentCount, async (result) => {
      const loader = await this.commonUtilService.getLoader();
      await loader.present();
      this.preferences.putString(KEY_SUNBIRD_CONFIG_FILE_PATH, result).toPromise()
        .then((resp) => {
          this.preferences.getString(KEY_SUNBIRD_CONFIG_FILE_PATH).toPromise()
            .then(async val => {
              await loader.dismiss();
              if (Boolean(val)) {
                this.fileUrl = 'file://' + val;
                this.subjectDetails = this.appName + ' ' + SUBJECT_NAME + ' for ' + this.categories;
                this.socialSharing.shareViaEmail(message,
                  this.subjectDetails,
                  [this.supportEmail ? this.supportEmail : this.appGlobalService.SUPPORT_EMAIL],
                  undefined,
                  undefined,
                  this.fileUrl)
                  .catch(error => {
                    console.error(error);
                  });
              }
            });
        });
    }, (error) => {
      console.error('ERROR - ' + error);
    });
  }
  generateInteractTelemetry(interactSubtype, values) {
    this.telemetryGeneratorService.generateInteractTelemetry(
      InteractType.TOUCH, interactSubtype,
      Environment.USER,
      PageId.FAQ_REPORT_ISSUE,
      undefined,
      values,
      undefined,
      this.corRelationList
    );
  }

  getBoardMediumGrade(mailBody: string): string {
    this.deviceId = this.deviceInfo.getDeviceID();
    const userProfile: Profile = this.appGlobalService.getCurrentUser();
    let ticketSummary: string;
    if (mailBody.length) {
      ticketSummary = '<br> <br> <strong>' + this.commonUtilService.translateMessage('TICKET_SUMMARY') + '</strong> <br> <br>';
    } else {
      ticketSummary = '<br> <br> <strong>' + this.commonUtilService.translateMessage('MORE_DETAILS') + '</strong> <br> <br>';
    }
    let userDetails: string;
    if (this.bmgsString) {
      userDetails = 'From: ' + userProfile.profileType[0].toUpperCase() + userProfile.profileType.slice(1) + ', ' +
        this.bmgsString;
    } else {
      let selectedBMG = this.appGlobalService.getSelectedBoardMediumGrade();
      if (!selectedBMG) {
        selectedBMG = ((userProfile.board && userProfile.board.length
          && userProfile.board[0]) ? userProfile.board[0] + ', ' : '') +
          (userProfile.medium && userProfile.medium.length
            && userProfile.medium[0]) + ' Medium, ' +
          (userProfile.grade && userProfile.grade.length && userProfile.grade[0]);
      }
      userDetails = 'From: ' + userProfile.profileType[0].toUpperCase() + userProfile.profileType.slice(1) + ', ' +
      selectedBMG + ticketSummary;
    }
    if (this.categories) {
      userDetails += '.<br> <br>' + this.commonUtilService.translateMessage('DEVICE_ID') + ': ' + this.deviceId + '<br>'
    } 
    userDetails += ticketSummary;
    return userDetails;
  }

  submit() {
    if (!this.isFormValid) {
      return false;
    }
    this.prepareEmailContent(this.formValues);

    if (this.formValues) {
      if (Object.prototype.hasOwnProperty.call(this.callToAction, this.formValues.subcategory)) {
        this.takeAction(this.callToAction[this.formValues.subcategory]);
      } else if (Object.prototype.hasOwnProperty.call(this.callToAction, this.formValues.category)) {
        this.takeAction(this.callToAction[this.formValues.category]);
      } else {
        this.takeAction();
      }
    }

    if (this.formValues && this.formValues.children && this.formValues.children.subcategory) {
      const corRelationList: Array<CorrelationData> = this.prepareTelemetryCorrelation();
      this.telemetryGeneratorService.generateInteractTelemetry(
        InteractType.SUPPORT,
        '', Environment.HOME,
        PageId.FAQ_REPORT_ISSUE,
        undefined,
        undefined,
        undefined,
        corRelationList,
        ID.SUBMIT_CLICKED
      );

      const paramsList = [];
      paramsList.push({ category : this.formValues['category']});
      paramsList.push({ subcategory : this.formValues['subcategory']});
      const subCategories = this.formValues.children.subcategory;
      Object.keys(subCategories).forEach((key) => {
        const subCategory =  subCategories[key];
        if (Array.isArray(subCategory)) {
          const params = {};
          params[key] = subCategory.map((item) => {
            return item['name'];
          });
          paramsList.push(params);
        } else if (typeof subCategory === 'object') {
          const params = {};
          params[key] = subCategory['name'];
          paramsList.push(params);
        } else {
          const params = {};
          params[key] = subCategory;
          paramsList.push(params);
        }
      });
      this.telemetryGeneratorService.generateLogEvent(LogLevel.INFO,
        PageId.FAQ,
        Environment.FAQ,
        'system',
        paramsList);
    }

    if (this.formValues && this.formValues.children && this.formValues.children.subcategory &&
      this.formValues.subcategory === 'contentavailability') {
      const corRelationList: Array<CorrelationData> = this.prepareTelemetryCorrelation();
      if (this.formValues && this.formValues.children && this.formValues.children.subcategory &&
        this.formValues.children.subcategory.notify) {
        corRelationList.push({ id: 'true', type: 'Notify' });
      }
      this.telemetryGeneratorService.generateInteractTelemetry(
        InteractType.SUPPORT,
        '', Environment.HOME,
        PageId.FAQ_REPORT_ISSUE,
        undefined,
        undefined,
        undefined,
        corRelationList,
        ID.NOTIFICATION_REQUEST
      );
    }
    this.syncTelemetry();
  }
  
  private generateLogTelemetry(){
     
  }

  takeAction(action?: string) {
    switch (action) {
      case 'contactBoard':
        this.showContactBoard();
        break;
      case 'initiateEmail':
        this.initiateEmailAction();
        break;
      default:
        if (this.formContext === FormConfigSubcategories.CONTENT_AVAILABILITY) {
          this.openExploreBooksComponent();
        } else {
          this.ackknowledgeResponse();
        }
    }
  }

  extractPrepareFieldStr(field) {
    if (this.formValues.children && this.formValues.children.subcategory && this.formValues.children.subcategory[field]) {
      if (typeof this.formValues.children.subcategory[field] === 'object' && this.formValues.children.subcategory[field].length) {
        return this.getStringFromArray(this.formValues.children.subcategory[field]);
      } else if(this.formValues.children.subcategory[field].name) {
        return this.formValues.children.subcategory[field].name
      } else if (typeof this.formValues.children.subcategory[field] === 'string') {
        return this.formValues.children.subcategory[field];
      }
      return undefined;
    } else if (this.profile) {
    }
  }

  async openExploreBooksComponent() {
    // generate telemetry and send class, medium and subject data to next page
    const props = {
      boardList: this.extractPrepareFieldStr('borad'),
      mediumList: this.extractPrepareFieldStr('medium'),
      geadeList: this.extractPrepareFieldStr('grade'),
      subjectList: this.extractPrepareFieldStr('subject'),
      relevantTerms: this.relevantTerms,
      curLang: this.translate.currentLang
    };
    const sortOptionsModal = await this.modalCtrl.create({
      component: ExploreBooksSortComponent,
      componentProps: props
    });
    this.location.back();
    await sortOptionsModal.present();
  }

  ackknowledgeResponse() {
    // show acknowdelgement message
    this.showThanksResponse = true;
    setTimeout(() => {
      this.showThanksResponse = false;
    }, 3000);
  }

  async initiateEmailAction() {
    const stateContactList = await this.formAndFrameworkUtilService.getStateContactList();
    this.supportEmail = undefined;
    stateContactList.forEach(element => {
      if (this.formValues.children.subcategory && this.formValues.children.subcategory.board &&
        this.formValues.children.subcategory.board.code === element.id && element.contactinfo &&
        element.contactinfo.email) {
        this.supportEmail = element.contactinfo.email;
      }
    });
    if (!this.showSupportContact && this.isFormValid) {
      this.value = {};
      this.value.action = 'initiate-email-clicked';
      this.value.value = {};
      if (this.formValues.children && this.formValues.children.subcategory && this.formValues.children.subcategory) {
        this.value.initiateEmailBody = this.formValues.children.subcategory.details
      } else if (this.formValues.children && this.formValues.children.category && this.formValues.children.category) {
        this.value.initiateEmailBody = this.formValues.children.category.details;
      }
    }
    this.ackknowledgeResponse();
    setTimeout(() => {
      this.location.back();
    }, 3000);
  }

  async showContactBoard() {
    const stateContactList = await this.formAndFrameworkUtilService.getStateContactList();
    let boardCode: string;
    if (this.formValues.children &&
    this.formValues.children.subcategory &&
    this.formValues.children.subcategory.board &&
    this.formValues.children.subcategory.board.code) {
      boardCode = this.formValues.children.subcategory.board.code;
    } else if (this.profile && this.profile.board && this.profile.board.length) {
      boardCode = this.profile.board[0];
    }

    stateContactList.forEach(element => {
      if (boardCode === element.id) {
        if (this.isFormValid && element.contactinfo && element.contactinfo.number) {
          this.boardContact = element;
          this.showSupportContact = true;
        }
      }
    });
    this.initiateEmailAction();
  }

  prepareTelemetryCorrelation(): Array<CorrelationData> {
    let correlationlist: Array<CorrelationData> =  [];
    correlationlist =  [...correlationlist, ...(this.corRelationList || [])];
    // Category
    if (this.formValues && this.formValues.category) {
      correlationlist.push({ id: this.formValues.category, type: CorReleationDataType.CATEGORY });
    }
    // SubCategory
    if (this.formValues && this.formValues.subcategory) {
      correlationlist.push({ id: this.formValues.subcategory, type: CorReleationDataType.SUBCATEGORY });
    }
    if (this.formValues && this.formValues.children && this.formValues.children.subcategory) {
      // Board
      correlationlist.push({ id: this.extractPrepareFieldStr('board') || '', type: CorReleationDataType.BOARD });
      // Medium
      correlationlist.push({ id: this.extractPrepareFieldStr('medium') || '', type: CorReleationDataType.MEDIUM });
      // Grade
      correlationlist.push({ id: this.extractPrepareFieldStr('grade') || '', type: CorReleationDataType.CLASS });
      // Subject
      correlationlist.push({ id: this.extractPrepareFieldStr('subject') || '', type: CorReleationDataType.SUBJECT });
      // Content Type
      correlationlist.push({ id: this.extractPrepareFieldStr('contenttype') || '', type: CorReleationDataType.CONTENT_TYPE });
      // Content name
      correlationlist.push({ id: this.extractPrepareFieldStr('contentname') || '', type: CorReleationDataType.CONTENT_NAME });
    }

    return correlationlist ? correlationlist : undefined;
  }

  async syncTelemetry() {
    const that = this;
    const loader = await this.commonUtilService.getLoader();
    await loader.present();
    const correlationlist: Array<CorrelationData> = this.prepareTelemetryCorrelation();

    this.generateInteractEvent(InteractType.TOUCH, InteractSubtype.MANUALSYNC_INITIATED, undefined);
    this.telemetryService.sync({
      ignoreAutoSyncMode: true,
      ignoreSyncThreshold: true
    }).subscribe((syncStat: TelemetrySyncStat) => {
      that.zone.run(async () => {
        if (syncStat.error) {
          await loader.dismiss();
          return;
        } else if (!syncStat.syncedEventCount) {
          await loader.dismiss();
          return;
        }

        this.generateInteractEvent(InteractType.OTHER, InteractSubtype.MANUALSYNC_SUCCESS, syncStat.syncedFileSize, correlationlist);
        await loader.dismiss();
      });
    }, async (error) => {
      await loader.dismiss();
      console.error('Telemetry Data Sync Error: ', error);
    });
  }

  generateInteractEvent(interactType: string, subtype: string, size: number, corRelationList?) {
    if (size) {
      this.telemetryGeneratorService.generateInteractTelemetry(
        interactType,
        subtype,
        Environment.USER,
        PageId.FAQ_REPORT_ISSUE,
        undefined,
        {
          SizeOfFileInKB: (size / 1000) + ''
        },
        undefined,
        corRelationList
      );
    }
  }

  // checks for dataSrc property
  checkDataSrc(obj) {
    if (obj && Object.prototype.hasOwnProperty.call(obj, 'dataSrc')) {
      // attaching closure to options preperty
      this.converDataSrcToClosure(obj);
    } else if (obj) {
      for (const key in obj) {
        if (Array.isArray(obj[key])) {
          this.arrayListHandling(obj[key]);
        } else if (typeof obj[key] === 'object') {
          this.checkDataSrc(obj[key]);
        }
      }
    }
  }

  arrayListHandling(arr, action?) {
    arr.forEach(element => {
      if (arr && Array.isArray(element)) {
        this.arrayListHandling(element);
      } else if (typeof element === 'object') {
        if (typeof action === 'function') {
          action(element);
        } else {
          this.checkDataSrc(element);
        }
      }
    });
  }

  converDataSrcToClosure(templateOptions) { // type definition
    const dataSrc = templateOptions.dataSrc;
    switch (dataSrc.marker) {
      case 'ACTIVE_CHANNEL.SUGGESTED_FRAMEWORK_LIST.MAPPED_TO_FRAMEWORKCATEGORIES':
        templateOptions.options = this.getClosure('board');
        break;
      case 'FRAMEWORK_CATEGORY_TERMS':
        templateOptions.options = this.getClosure(dataSrc.params.categoryCode);
        break;
    }
    if (dataSrc && dataSrc.action) {
      this.callToAction[templateOptions.value] = dataSrc.action;
    }
    if (dataSrc && dataSrc.params && dataSrc.params.relevantTerms) {
      this.relevantTerms = dataSrc.params.relevantTerms;
    }
    delete templateOptions.dataSrc;
  }

  getClosure(type: string) {
    switch (type) {
      case 'board':
        return this.frameworkCommonFormConfigBuilder.getBoardConfigOptionsBuilder(this.profile);
      case 'medium':
        return this.frameworkCommonFormConfigBuilder.getMediumConfigOptionsBuilder(this.profile);
      case 'grade':
        return this.frameworkCommonFormConfigBuilder.getGradeConfigOptionsBuilder(this.profile);
      case 'subject':
        return this.frameworkCommonFormConfigBuilder.getSubjectConfigOptionsBuilder(this.profile);
    }
  }

  valueChanged($event) {
    this.formValues = $event;
    if (!this.formContext && $event.category === 'otherissues') {
      this.formConfig[1].templateOptions.hidden = true;
    } else if (!this.formContext) {
      this.formConfig[1].templateOptions.hidden = false;
    }
  }

  getStringFromArray(arr) {
    return arr.reduce((acc, ele) => {
      if(!acc) {
        acc = ele.name ? ele.name : ele;
      } else {
        acc += ', ' + (ele.name ? ele.name : ele);
      }
      return acc;
    }, '');
  }

  prepareEmailContent(formValue) {
    this.bmgsString = undefined;
    this.categories = undefined;
    const bmgskeys = ['board', 'medium', 'grade', 'subject', 'contentname', 'contenttype'];
    const categorykeys = ['category', 'subcategory'];
    let fields = [];
    if (formValue.children.subcategory) {
      fields = formValue.children.subcategory;
    } else if (formValue.children) {
      fields = formValue.children;
    }
    bmgskeys.forEach(element => {
      if (Object.prototype.hasOwnProperty.call(fields, element)) {
        if (!this.bmgsString) {
          if (fields[element] && typeof fields[element] === 'object' && fields[element].length) {
            this.bmgsString = this.getStringFromArray(fields[element]);
          } else {
            this.bmgsString = fields[element].name ? this.aliasBoardName.transform(fields[element].name) : fields[element];
          }
        } else {
          if (fields[element] && typeof fields[element] === 'object' && fields[element].length) {
            this.bmgsString += ', ' + this.getStringFromArray(fields[element]);
          } else {
            this.bmgsString += ', ' + (fields[element].name ? fields[element].name : fields[element]);
          }
        }
      }
    });
    categorykeys.forEach(element => {
      if (Object.prototype.hasOwnProperty.call(formValue, element)) {
        if (!this.categories) {
          this.categories = formValue[element] ? formValue[element] : undefined;
        } else {
          this.categories += formValue[element] ? (' - ' + formValue[element]) : undefined;
        }
      }
    });
  }

  statusChanged($event) {
    this.isFormValid = $event.isValid;
    this.btnColor = this.isFormValid ? '#006DE5' : '#8FC4FF';
  }

  async dataLoadStatus($event) {
    if (!this.loader) {
      this.loader = await this.commonUtilService.getLoader();
    }
    if ('LOADING' === $event) {
      this.loader.present();
    } else {
      this.loader.dismiss();
    }
  }

  responseSubmitted() {
    if (this.formContext !== FormConfigSubcategories.CONTENT_AVAILABILITY) {
      this.location.back();
    }
  }
}
<ion-content>
  <div *ngIf="data" class="container-focus pl-16 pr-16 pb-16">
    <h4 class="m-0"> {{data?.constants?.reportIssue}}</h4>
    <p>{{data?.constants?.explainMsg}}</p>
  </div>
  <div class="send-email-form align-left">
    <div class="report-info">{{data?.constants?.tellMoreMsg}}</div>
    <sb-form [config]='formConfig'
             [platform]="'mobile'"
             (valueChanges)="valueChanged($event)"
             (statusChanges)="statusChanged($event)"
             (dataLoadStatus)="dataLoadStatus($event)">
    </sb-form>

    <div class="initiate-email-info">
      <div class="initiate-email-info-button">
        <button id="initiate-email" (click)="submit()" class="submit-button" [ngClass]="{'':isFormValid, 'invalid-btn':!isFormValid }" >
          {{'BTN_SUBMIT' | translate}}
        </button>
      </div>
    </div>
  </div>
  <support-acknowledgement *ngIf="showSupportContact" (closeEvents)="showSupportContact = false"
  [boardContact]="boardContact"></support-acknowledgement>
  <acknowledge-response *ngIf="showThanksResponse" (popupDismiss)="responseSubmitted($event)"></acknowledge-response>

</ion-content>

./faq-report-issue.page.scss

@import "src/assets/styles/base/_variables.scss";
@import "src/assets/styles/_custom-mixins.scss";
@import "src/assets/styles/_variables.scss";
.scroll-content{
    padding: 0 !important;
}
  body{
    background-color: $light-blue;
      font-family: 'Noto Sans', sans-serif;
}

.rotate{
    -webkit-transform: rotate(180deg);  /* Chrome, Safari, Opera */
    -moz-transform: rotate(180deg);  /* Firefox */
    -ms-transform: rotate(180deg);  /* IE 9 */
    transform: rotate(180deg);  /* Standard syntax */    
}
.btn-arrow{
    padding: 4px;
    margin-top: 4px;
    margin-left: 5px;
}
P{
    font-size: 0.813rem;
}
.help-header, .help-header-send-email{
    background: $blue;
    color: map-get($colors, white);
    padding: 16px;
}
.help-header>h4,.help-header-send-email>h4{
    padding:0;
    font-weight: 700;
    max-width: 64rem;
    margin: 0 auto;
}
.help-header>p,.help-header-send-email>p{
    font-weight: 100;
    max-width: 64rem;
    margin: 0 auto;
}
.panel-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
 .info-msg{
        background-color: map-get($colors, white_fa)
    }
@media only screen and (max-width : 1024px) {

    .info-msg-send-email>p,.info-msg>p{
        padding: 8px 16px;
        max-width: 64rem;
        margin: 0 auto;
    }
   
}
@media only screen and (min-width : 1025px) {

    .info-msg-send-email>p,.info-msg>p{
        padding: 16px 0px;
        max-width: 64rem;
        margin: 0 auto;
    }
}
.icon{
    color: $blue;
    float:right;
} 
.panel{
    border-radius: 0px !important;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    box-shadow:none !important;

}

.panel-heading {
    padding: 16px 16px;
}
.panel-group{
    margin: 0 auto;
    max-width: 64rem;
}
.panel-group .panel+.panel{
    border-radius: 0;
    margin-top: 0;

}
.panel-default>.panel-heading{
    background-color: map-get($colors, white);
    border-radius: 0 !important;
}
.panel-body{
    background-color: map-get($colors, white_fa);
}
.panel-interact{
    text-align: center; 
    padding: 20px;
    height: 6.25rem;
}
.panel-interact>button{
    margin: 10px 5px 0px 5px;
    background-color: map-get($colors, white_fa);
    border-color: map-get($colors, white_fa);
    width: 5rem;
    color: $blue;
    font-size: 0.813rem;
    font-weight: 700;
    outline: none;
    height: 1.125rem;

}
.panel-interact>p{
    margin: 0px;
}
.no-clicked, .yes-clicked{
    padding:10px !important;
    margin: auto !important;
    margin-top:10px !important;
    background: map-get($colors, white_fa);
    width: 12.5rem;
    border-radius: 4px;
    color: $green;
    text-align: center;
}

.panel-info{
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}
.panel-info>h6{
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
}

.input-text{
    width: 100%;
    height: 4.375rem;
    border-radius: 5px;
    @include padding(8px 0px 0px 8px);
    resize: none;
}
.submit-button{
    width: 100%;
    color: map-get($colors, white);
    background: map-get($colors, light_blue_f5);
    height: 2.5rem;
    border-radius: 4px;
    margin: 10px 0px 16px 0px;
    outline: none;
}

@media only screen and (max-width : 1024px) {
   
    .report-button{
        min-width: 90vw;
        color: map-get($colors, white);
        background: $blue;
        height: 2.5rem;
        border-radius: 4px;
        border-style:solid;
        border-color:  $blue;
        margin-bottom: 50px;
        outline: none;
    }
    p{
        margin: 0px;
        font-weight: normal;
    }
    .panel-body{
        padding: 8px 16px;
    }
    #textareainfo{
        opacity: .5;
        position: absolute;
        bottom: -0.813rem;
        right: 0px;
        font-weight: normal;
        font-size: 0.75rem;
        padding-right: 16px;
    }
    .initiate-email-info-button {
        background: $white;
        left: 0;
        right: 0;
        position: fixed;
        top: 90vh;
        padding: 0 16px 70px 16px;
    }

    .ios .initiate-email-info-button {
        top: 85vh;
    }
}
@media only screen and (min-width : 1025px) {
    .report-button{
        min-width: 64rem;
        color: map-get($colors, white);
        background: $blue;
        height: 2.5rem;
        border-radius: 4px;
        border-style:solid;
        border-color: $blue;
        margin-bottom: 50px;
        outline: none;
    }
}
img>.report-button{
    padding-bottom: 4px;
    padding-right: 1px;
}
.send-email{
    text-align: center;
    padding: 15px;
}
.send-email-form {
    margin: 0 16px;
}
#send-email-form{
    height: 40vh;
    position: relative;
}

.send-email-info{
    padding: 10px 0px;
    font-weight: normal;
    font-size: 0.75rem;
    text-align: justify;

}
 #know-more-form{
        margin: 0px 16px;
    }
@media only screen and (min-width : 1025px) {
    .send-email-form{
        max-width: 64.063rem;
        margin: auto;
    }
    .send-email-info{
        max-width: 35.625rem;
        padding: 10px 0 !important;
        margin: initial;
        float: left;
    }
    .submit-button{
        width: 9.375rem;
        float: right;
        color: map-get($colors, white);
        background: $blue;
        border-radius: 0;
        border-style:solid;
        border-color:  $blue;
        margin: 10px 0 16px 0;
        height: 2rem;
        outline: none;
    }
    .panel-info{
        overflow: hidden;
        text-align: left;
    }
    .panel-info > h6 {
        @include margin(0px 0px 0px 15px);
    }
    .panel-info > p {
        @include margin(0px 0px 0px 15px);
    }
    #initiate-email{
    margin-top: 10px;
}

}
.input-text-form{
    width: 100%;
    height: 8rem;
    border-radius: 5px;
    box-shadow: none;
    @include padding(8px 0px 0px 8px);
    resize: none;
}
::placeholder {
  color: $gray-300;
  font-size: $font-size-base;
  font-weight: normal;
}
.initiate-email-info{
    margin-top: 10px;
    padding-bottom: 70px;
}
@media only screen and (min-width : 1025px) {
    .input-text-form{
        width: 100%;
        height: 8rem;
        border-radius: 0px;
        box-shadow: none;
        border-width: 1px;
        border-style:solid;
        border-color: map-get($colors, light_gray-c3);
        @include padding(8px 0px 0px 8px);
        margin: 0px;
        resize: none;
    }
    #textareainfo{
    opacity: .5;
    position: absolute;
    bottom: -1.5rem;
    right: 0px;
    font-weight: normal;
    font-size: 0.75rem;
    }
    
}
a{
    color: map-get($colors, primary_black);
}

a:active, a:hover{
    text-decoration: none;
    color: none;
}

#textareadiv{
    position: relative;
    padding: 20px 16px 0px 16px;
}
.item-label-stacked ion-select {
    border: 1px solid map-get($colors, thick_blue);
    border-radius: 5px;
    margin-top: 16px;
    padding-left: 8px;
    padding-right: 10px !important;
    .select-icon {
      .select-icon-inner {
        border: solid blue;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 4px;
        transform: rotate(45deg);
        animation: upDownAnimate 5s linear infinite;
        animation-duration: 0.9s;
      }
    }
    .select-placeholder {
        color: map-get($colors, thick_blue);
        padding-left: 10px;
    }
}
    // Not getting used because of shadow DOM
.select-placeholder {
  color: map-get($colors, thick_blue);
  padding-left: 10px;
}

.ge-danger{
  color: map-get($colors, danger);
}

ion-item.item-label-stacked {
    --border-width: 0;
    --highlight-background: transparent;
}

.item-select ion-label {
    color: map-get($colors, thick_blue);
}

.item-label-stacked.item-select-disabled {
    ion-label {
        color: map-get($colors, primary_black);
    }
    ion-select {
        border-color: map-get($colors, primary_black);
        // Inside Shadow DOM
        .select-icon {
          .select-icon-inner {
            border-color: map-get($colors, primary_black);
            animation: none;
          }
        }
        // Inside Shadow DOM
        .select-placeholder {
          color: map-get($colors, primary_black);
        }
      }
}
.invalid-btn{
    background: map-get($colors, light_blue_f5) !important;
}

.report-info{
    padding-top: 1rem;
    font-size: 1rem;
}

.report-submit-info{
    font-size: 0.8rem;
    color: var(--app-gray);
}

.ios .send-email-form ::ng-deep .sb-modal {
    bottom: calc(env(safe-area-inset-bottom) + 20px) !important;
}
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""