Skip to content

Instantly share code, notes, and snippets.

@Hendrixer
Created October 18, 2018 04:23
Show Gist options
  • Save Hendrixer/9619b879e4ad033bd91c591e68fdc553 to your computer and use it in GitHub Desktop.
Save Hendrixer/9619b879e4ad033bd91c591e68fdc553 to your computer and use it in GitHub Desktop.
idle*
idle*
fetchSchema -> fetchingSchema
fetchDocuments -> fetchingDocuments
reset -> idle
fetchingSchema
success -> idle
failure -> error
empty -> idleEmpty
fetchingDocuments
success -> idle
failure -> error
idleEmpty
error
reset -> idle
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment