Skip to content

Instantly share code, notes, and snippets.

@DevanB
Created October 9, 2019 02:31
Show Gist options
  • Save DevanB/3abe97296e6d6cebcbda9c903d6da068 to your computer and use it in GitHub Desktop.
Save DevanB/3abe97296e6d6cebcbda9c903d6da068 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const fetchQuizData = () =>
fetch(
`https://opentdb.com/api.php?amount=10&difficulty=hard&type=boolean`,
).then(response => response.json())
const normalizeQuizData = (data) =>
data.reduce(
(acc, obj) => [
...acc,
{
category: obj.category,
question: obj.question,
correctAnswer: obj.correct_answer === 'True' ? true : false,
userAnswer: undefined,
correct: undefined,
},
],
[],
)
const fetchAndNormalizeQuizData = () =>
new Promise(async (resolve, reject) => {
try {
const data = await fetchQuizData()
resolve(normalizeQuizData(data.results))
} catch (error) {
reject(error)
}
})
const machine = Machine(
{
id: 'Machine',
initial: 'welcome',
context: {
currentQuestion: 0,
currentQuestionDisplay: 1,
questions: [],
totalCorrectAnswers: 0,
},
states: {
welcome: {
on: {
START_QUIZ: 'loading',
},
},
loading: {
invoke: {
id: 'getQuizData',
src: 'fetchAndNormalizeQuizData',
onDone: {
target: 'quiz',
actions: assign({
questions: (_, event) => (event.data)
}),
},
onError: {
target: 'failure',
},
},
},
failure: {
on: {
RETRY: 'loading',
START_OVER: 'welcome',
},
},
quiz: {
on: {
'': {
target: 'results',
actions: [],
cond: 'allQuestionsAnswered',
},
ANSWER_FALSE: {
actions: 'updateAnswer',
},
ANSWER_TRUE: {
actions: 'updateAnswer',
},
},
},
results: {
on: {
PLAY_AGAIN: 'welcome',
},
exit: 'resetGame',
},
},
},
{
actions: {
resetGame: assign({
currentQuestion: 0,
currentQuestionDisplay: 1,
questions: [],
totalCorrectAnswers: 0,
}),
updateAnswer: assign((ctx, event) => ({
questions: [
...ctx.questions.slice(0, ctx.currentQuestion),
{
...ctx.questions[ctx.currentQuestion],
userAnswer: event.answer,
correct:
ctx.questions[ctx.currentQuestion].correctAnswer === event.answer,
},
...ctx.questions.slice(ctx.currentQuestion + 1),
],
totalCorrectAnswers:
ctx.questions[ctx.currentQuestion].correctAnswer === event.answer
? (ctx.totalCorrectAnswers += 1)
: ctx.totalCorrectAnswers,
currentQuestion: ctx.currentQuestion += 1,
currentQuestionDisplay: ctx.currentQuestionDisplay += 1,
})),
},
guards: {
allQuestionsAnswered: ctx => {
return (
ctx.questions.filter(
question => question.correct !== undefined,
).length === ctx.questions.length && true
)
},
},
services: {
fetchAndNormalizeQuizData: () => fetchAndNormalizeQuizData()
}
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment