Skip to content

Instantly share code, notes, and snippets.

@thorgas
thorgas / machine.js
Last active August 8, 2021 10:35
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@thorgas
thorgas / machine.js
Created April 21, 2021 19:44
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@thorgas
thorgas / machine.js
Created April 21, 2021 19:19
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@thorgas
thorgas / machine.js
Last active April 6, 2021 15:34
Generated by XState Viz: https://xstate.js.org/viz
const walletMachine = Machine({
id: 'wallet',
initial: 'loadingMangoInfo',
states: {
idle: {
on: { LOAD_MANGO_INFO: 'loadingMangoInfo' },
},
loadingMangoInfo: {
on: {
CREAT_ACCOUNT: 'createAccount',
@thorgas
thorgas / machine.js
Created March 29, 2021 20:10
Generated by XState Viz: https://xstate.js.org/viz
const fetchProducts = (productCategory) => {
return Promise.resolve([
{
name: 'Cheese',
price: 250,
},
{
name: 'Crisps',
price: 300,
},
@thorgas
thorgas / machine.js
Created February 13, 2021 12:43
Generated by XState Viz: https://xstate.js.org/viz
const paymentAuthorizationMachine = Machine(
{
id: "paymentAuthorization",
initial: "checkPrerequisites",
// we will track payment authorization details in the machine's context
context: {
paymentAuthorizationId: null,
expiresOn: null,
// ...more fields
},
@thorgas
thorgas / machine.js
Last active May 9, 2020 07:51
Generated by XState Viz: https://xstate.js.org/viz
const firestoreFetchMachine = Machine({
id: "myMachine",
initial: "idle",
context: { doc: { products: "a product" } },
states: {
idle: {
on: {
INIT: "init"
}
},
@thorgas
thorgas / cloudSettings
Last active December 19, 2021 11:22
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-12-19T11:22:07.544Z","extensionVersion":"v3.4.3"}