Skip to content

Instantly share code, notes, and snippets.

@seanaguinaga
Last active December 3, 2019 15:37
Show Gist options
  • Save seanaguinaga/155329df65afce716160f3d0279b35db to your computer and use it in GitHub Desktop.
Save seanaguinaga/155329df65afce716160f3d0279b35db to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
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