File

src/services/collection.service.ts

Index

Methods

Constructor

constructor(contentService: ContentService, commonUtilService: CommonUtilService)
Parameters :
Name Type Optional
contentService ContentService No
commonUtilService CommonUtilService No

Methods

Async fetchCollectionData
fetchCollectionData(id, objectType)
Parameters :
Name Optional
id No
objectType No
Returns : Promise<Content>
Private Async getChildContents
getChildContents(id)
Parameters :
Name Optional
id No
Returns : Promise<Content>
Private Async getCourseHierarchy
getCourseHierarchy(request: ContentDetailRequest)
Parameters :
Name Type Optional
request ContentDetailRequest No
Returns : Promise<Content>
import { Inject, Injectable } from '@angular/core';
import { CommonUtilService } from '@app/services';
import { ChildContentRequest, Content, ContentDetailRequest, ContentService } from 'sunbird-sdk';

@Injectable()
export class CollectionService {

  constructor(
    @Inject('CONTENT_SERVICE') private contentService: ContentService,
    private commonUtilService: CommonUtilService
  ) {
  }

  async fetchCollectionData(id, objectType): Promise<Content> {
    const option: ContentDetailRequest = {
      contentId: id,
      objectType,
      attachFeedback: true,
      emitUpdateIfAny: true,
      attachContentAccess: true
    };

    try {
      const data = await this.contentService.getContentDetails(option).toPromise();
      if (this.commonUtilService.networkInfo.isNetworkAvailable || !data.isAvailableLocally) {
        return this.getCourseHierarchy(option);
      } else {
        return this.getChildContents(id);
      }
    } catch (e) {
      console.error(e);
      throw e;
    }
  }

  private async getCourseHierarchy(request: ContentDetailRequest): Promise<Content> {
    return this.contentService.getContentHeirarchy(request).toPromise();
  }

  private async getChildContents(id): Promise<Content> {
    const option: ChildContentRequest = {
      contentId: id,
      hierarchyInfo: null
    };
    return this.contentService.getChildContents(option).toPromise();
  }

}

results matching ""

    No results matching ""