Skip to content

Instantly share code, notes, and snippets.

@toddmoy
Last active September 11, 2020 22:50
Show Gist options
  • Save toddmoy/72dba43f7a057500ef937f6f3ad5e5fb to your computer and use it in GitHub Desktop.
Save toddmoy/72dba43f7a057500ef937f6f3ad5e5fb to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
// const fetchMachine = Machine({
// id: 'fetch',
// initial: 'idle',
// context: {
// retries: 0
// },
// states: {
// idle: {
// on: {
// FETCH: 'loading'
// }
// },
// loading: {
// on: {
// RESOLVE: 'success',
// REJECT: 'failure'
// }
// },
// success: {
// type: 'final'
// },
// failure: {
// on: {
// RETRY: {
// target: 'loading',
// actions: assign({
// retries: (context, event) => context.retries + 1
// })
// }
// }
// }
// }
// });
const fieldMachine = Machine({
id: 'field',
initial: 'idle',
states: {
idle: {},
focused: {},
error: {}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment