Skip to content

Instantly share code, notes, and snippets.

@franz101
Last active February 21, 2020 08:51
Show Gist options
  • Save franz101/3985a5daa0381b0710d9fd2db8ad5a20 to your computer and use it in GitHub Desktop.
Save franz101/3985a5daa0381b0710d9fd2db8ad5a20 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 orderMachine = Machine({
id: 'order',
initial: 'start',
context:
{},
states: {
start: {
on: {BUSINESS:'business.idle',
CONSUMER:'consumer.idle'
}
},
business:{
states: {
idle: {
on: {
FETCH: 'loadingQuote'
}
},
loadingQuote: {
on: {
RESOLVE: 'quote',
REJECT: 'failure'
}
},
quote: {
type: 'final'
},
failure: {
on: {
RETRY: {
target: 'loadingQuote',
actions: assign({
retries: (context, event) => context.retries + 1
})
}
}
}
}
},
consumer:{
states: {
idle: {
on: {
FETCH: 'loading'
}
},
loading: {
on: {
RESOLVE: 'quote',
REJECT: 'failure'
}
},
quote: {
typr:'final'
},
failure: {
on: {
RETRY: {
target: 'loading',
actions: assign({
retries: (context, event) => context.retries + 1
})
}
}
}
}},
business_quoting :{
states:{
order_valid:{on:{}},
get_items_tax_weight: {on:{}},
get_items_weight: {on:{}}
}
}
}
})
/* 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
})
}
}
}
}
});*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment