const questions: QuestionModel[] = [];
return interval(300)
.pipe(
mergeMap(() => this.api.getQuestion()),
map(res => {
if (questions.findIndex(value => value.question === res.question) === -1) {
questions.push({
id: questions.length,
question: res.question,
correctAnswer: res.correctAnswer,
incorrectAnswers: res.incorrectAnswers,
timeOut: 20,
strikes: 3,
closedQuestion: false,
active: false,
allAnswers: [
res.correctAnswer,
...res.incorrectAnswers
].map(value => ({ value, sort: Math.random() }))
.sort((
a,
b) => a.sort - b.sort)
.map(({ value }) => value)
});
}
return res as QuestionModel;
}),
takeWhile(() => questions.length < 10),
toArray(),
finalize(() => {
this.triviaStore.set(questions);
this.triviaStore.setLoading(false);
})
);
}
на самом деле сложно немного, так как много чего делает
https://rxjs.dev/guide/testing/marble-testing
это так же можно переделать без создание массива сверху, просто используя оператор distinct
Обсуждают сегодня