File

src/services/quml-player/quml-player.service.ts

Index

Methods

Constructor

constructor(contentService: ContentService)
Parameters :
Name Type Optional
contentService ContentService No

Methods

getAllQuestionSet
getAllQuestionSet(identifiers: string[])
Parameters :
Name Type Optional
identifiers string[] No
Returns : any
getQuestion
getQuestion(questionId: string)
Parameters :
Name Type Optional
questionId string No
Returns : Observable<any>
getQuestions
getQuestions(questionIds: string[], parentId: string)
Parameters :
Name Type Optional
questionIds string[] No
parentId string No
Returns : Observable<any>
getQuestionSet
getQuestionSet(identifier: string)
Parameters :
Name Type Optional
identifier string No
Returns : any
getQuestionSetHierarchy
getQuestionSetHierarchy(data)
Parameters :
Name Optional
data No
Returns : any
import { Inject, Injectable } from '@angular/core';
import { QuestionCursor } from '@project-sunbird/sunbird-quml-player-v9';
import { ContentService } from '@project-sunbird/sunbird-sdk';
import { Observable, of } from 'rxjs';

@Injectable({
  providedIn: 'root'
})
export class QumlPlayerService implements QuestionCursor {

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

  getQuestion(questionId: string): Observable<any> {
    return this.contentService.getQuestionList([questionId]);
  }

  getQuestions(questionIds: string[], parentId: string): Observable<any> {
    return this.contentService.getQuestionList(questionIds, parentId);
  }

  getQuestionSetHierarchy(data) {
    return this.contentService.getQuestionSetHierarchy(data);
  }

  getQuestionSet(identifier: string) {
    return this.contentService.getQuestionSetHierarchy(identifier);
  }

  getAllQuestionSet(identifiers: string[]) {
    return of({});
  }
}


results matching ""

    No results matching ""