Last active
December 3, 2019 15:37
-
-
Save seanaguinaga/155329df65afce716160f3d0279b35db to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
This file contains 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 modalThatFetchesMachine = Machine({ | |
id: 'modalThatFetches', | |
initial: 'closed', | |
context: {}, | |
states: { | |
closed: { | |
on: { | |
OPEN: 'opened' | |
} | |
}, | |
opened: { | |
on: { | |
CLOSE: 'closed' | |
}, | |
initial: 'fetching', | |
states: { | |
fetching: { | |
on: { | |
SUCCESS: 'fetchSucceeded', | |
FAIL: 'fetchFailed' | |
} | |
}, | |
fetchSucceeded: { | |
initial: 'fileNotDownloaded', | |
states: { | |
fileDownloaded: { | |
type: 'final' | |
}, | |
fileNotDownloaded: { | |
on: { | |
DOWNLOAD: 'fileDownloaded' | |
} | |
} | |
} | |
}, | |
fetchFailed: { | |
on: { | |
RETRY: 'fetching' | |
} | |
} | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment