Skip to content

Instantly share code, notes, and snippets.

@darrenjennings
Last active June 9, 2020 18:39
Show Gist options
  • Save darrenjennings/5b162d8b83213f0ceb9c5bd8e7fa3c67 to your computer and use it in GitHub Desktop.
Save darrenjennings/5b162d8b83213f0ceb9c5bd8e7fa3c67 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_CP: 'loading'
}
},
loading: {
on: {
RESOLVE_FAILED: 'failed',
RESOLVE_MODIFYING: 'warning',
RESOLVE_DEPLOYED: 'cards.idle'
}
},
warning: {
type: 'final'
},
failed: {
type: 'final'
},
cards: {
initial: 'idle',
states: {
idle: {
on: {
FETCH: 'loading'
}
},
loading: {
on: {
RESOLVE: 'success',
}
},
success: {
type: 'final'
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment