src/services/collection.service.ts
Methods |
|
constructor(contentService: ContentService, commonUtilService: CommonUtilService)
|
|||||||||
Defined in src/services/collection.service.ts:6
|
|||||||||
Parameters :
|
Async fetchCollectionData | ||||||
fetchCollectionData(id, objectType)
|
||||||
Defined in src/services/collection.service.ts:14
|
||||||
Parameters :
Returns :
Promise<Content>
|
Private Async getChildContents | ||||
getChildContents(id)
|
||||
Defined in src/services/collection.service.ts:40
|
||||
Parameters :
Returns :
Promise<Content>
|
Private Async getCourseHierarchy | ||||||
getCourseHierarchy(request: ContentDetailRequest)
|
||||||
Defined in src/services/collection.service.ts:36
|
||||||
Parameters :
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();
}
}