Skip to content

Instantly share code, notes, and snippets.

@i1skn
Last active December 11, 2020 18:10
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 i1skn/3ca0bec09d940e6452f21e4685d4fbbf to your computer and use it in GitHub Desktop.
Save i1skn/3ca0bec09d940e6452f21e4685d4fbbf 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 isPepperCached = (context, event) => {
return !!context.pepper
};
const odisStates = {
initial: 'idle',
context: {
pepper: null
},
states: {
idle: {
on: {
'': [{
target: 'pepperLoaded',
cond: (context, event) => !!context.pepper
},{
target: 'pepperLoading',
}]
}
},
pepperLoading: {
on: {
SUCCESS:
{
target: '#main.loadedAttestationsStatus',
actions: assign({
pepper: (context, event) => 'pepper'
})
},
FAILURE: 'failure'
}
},
pepperLoaded: {
},
failure: {
on: {
RETRY: 'pepperLoading',
}
}
}
};
const mainMachine = Machine({
key: 'main',
id: 'main',
initial: 'idle',
context: {
},
states: {
idle: {
on: {
FETCH: 'loadingAttestationsStatus'
}
},
loadingAttestationsStatus: {
on: {
SUCCESS: 'loadedAttestationsStatus',
FAILURE: 'failure'
},
...odisStates
},
loadedAttestationsStatus: {
type: 'final',
},
failure: {
type: 'final'
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment