Skip to content

Instantly share code, notes, and snippets.

@darraghoriordan
Last active April 14, 2020 04:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darraghoriordan/65e80467a8efee3d36afed5809a178f9 to your computer and use it in GitHub Desktop.
Save darraghoriordan/65e80467a8efee3d36afed5809a178f9 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: 'taskMachine',
initial: 'idle',
context: {
},
states: {
idle: {
on: {
ABANDON: 'abandoned',
ACCEPT: 'todo'
}
},
todo: {
on: {
START: 'doing',
ABANDON: 'abandoned',
COMPLETE: 'done'
}
},
doing: {
on: {
ABANDON: 'abandoned',
COMPLETE: 'done',
FAILURE: 'failed'
}
}
,
done: {
on: {
REMOVE: 'removed'
}
},
abandoned: {
on: {
REMOVE: 'removed'
}
},
failed: {
on: {
RETRY: 'doing',
REMOVE: 'removed'
}
}
,
removed: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment