Skip to content

Commit

Permalink
expose-correct-answer-for-testingg (#2563)
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeart authored Jan 11, 2024
1 parent 9e5c9ff commit 0aa73c0
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ import AnswerOption from 'brn/utils/answer-option';
import SingleSimpleWordTask from 'brn/models/task/single-simple-words';
export default class SingleSimpleWordsComponent extends Component<SingleSimpleWordTask> {
@tracked currentAnswer: string[] = [];
willDestroy(): void {
super.willDestroy();
if (this.audio.isPlaying) {
this.audio.stop();
}
document.body.dataset.correctAnswer = '';
}
get audioFileUrl() {
const task = this.firstUncompletedTask;
if (!task) {
Expand All @@ -21,6 +28,7 @@ export default class SingleSimpleWordsComponent extends Component<SingleSimpleWo
return null;
}
const answer = task.answer[0] as AnswerOption;
document.body.dataset.correctAnswer = answer.word;
const useGeneratedUrl =
this.args.task.usePreGeneratedAudio && answer.audioFileUrl;
const url = useGeneratedUrl
Expand Down

0 comments on commit 0aa73c0

Please sign in to comment.