Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Created December 25, 2019 21:10
Show Gist options
  • Save RafalFilipek/c994583125eb33d89f3e3dbc5402102d to your computer and use it in GitHub Desktop.
Save RafalFilipek/c994583125eb33d89f3e3dbc5402102d to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
const suffMachine = Machine({
id: 'stuff',
initial: 'idle',
context: {
/**
*This value is provied from external sourcre.
*/
isLogged: false
},
states: {
idle: {
on: {
FIRST_ACTION: 'first'
}
},
first: {
on: {
SECON_ACTION: [
{
cond: 'isLogged',
target: 'form'
},
{
target: 'login'
}
]
}
},
form: {
type: 'final'
},
login: {
on: {
SUCCESS: 'form'
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment