Last active
February 27, 2020 00:32
-
-
Save ivorpad/0cd907979d4bbaf1955da656883a287c to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const connectedMachine = Machine({ | |
id: 'connectedData', | |
initial: 'idle', | |
context: { | |
results: [] | |
}, | |
states: { | |
idle: { | |
on: { | |
ADD: 'pending', | |
DELETE: 'pending' | |
} | |
}, | |
pending: { | |
entry: ['fetchData'], | |
on: { | |
RESOLVE: { | |
target: 'success', | |
actions: ['setResults'] | |
}, | |
FAIL: 'failure' | |
} | |
}, | |
success: { | |
on: { | |
FETCH: 'pending' | |
} | |
}, | |
failure: { | |
on: { | |
FETCH: 'pending' | |
} | |
}, | |
} | |
}, { | |
actions: { | |
fetchData: () => console.log('fetching'), | |
setResults: () => console.log('success') | |
} | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment