Created
August 11, 2019 20:39
-
-
Save abierbaum/a3f87bc8653bbad4ea6c5cde4f9e2eea 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
// Missing a reconnect | |
const countdown = Machine({ | |
id: 'count_down', | |
initial: 'idle', | |
states: { | |
idle: { | |
on: { | |
START: 'running' | |
} | |
}, | |
running: { | |
initial: 'waiting', | |
states: { | |
'waiting': { | |
after: { | |
5000: { target: '#timeout' } | |
}, | |
on: { | |
RESET: { | |
internal: false, | |
target: 'waiting' | |
} | |
} | |
} | |
}, | |
on: { | |
DISCONNECT: 'idle' | |
} | |
}, | |
timeout: { | |
id: 'timeout', | |
on: { | |
CLEAR: 'idle' | |
} | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment