Skip to content

Instantly share code, notes, and snippets.

@hnordt
Last active May 30, 2020 15:01
Show Gist options
  • Save hnordt/8474760e5a0ac569474f0815bba5a7c7 to your computer and use it in GitHub Desktop.
Save hnordt/8474760e5a0ac569474f0815bba5a7c7 to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
Machine({
id: 'app',
context: {},
initial: 'workouts',
states: {
workouts: {
on: {
NEW_WORKOUT: {
target: "newWorkout"
}
}
},
newWorkout: {
initial: "editing",
states: {
editing: {
on: {
ADD_EXERCISES: {
target: "editingExercises"
},
EXERCISE: {
target: "editingExercise"
}
}
},
editingExercises: {
on: {
SAVE: {
target: "editing"
},
CANCEL: {
target: "editing"
}
}
},
editingExercise: {}
},
on: {
CANCEL: {
target: "workouts"
}
}
},
workout: {},
updateWorkout: {},
findTrainer: {},
config: {}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment