-
```
The picture of the model vanishes.
Original order:
1. Compare the attached statecharts (default / Copy of Default)
2. Elapse the menue tree to the very bottom (attached picture)
3a. Press the bu…
-
```
The picture of the model vanishes.
Original order:
1. Compare the attached statecharts (default / Copy of Default)
2. Elapse the menue tree to the very bottom (attached picture)
3a. Press the bu…
-
I just did a quick POC to make `xstate-viz` a drop-in visualizer in a react app so that it could be toggled on and off as needed, [see it in action here](https://cl.ly/2c4ac21653a0)
Sample code bel…
-
XState has an api to ask which signals are allowed given the current state:
```js
const { initialState } = lightMachine;
console.log(initialState.nextEvents);
// => ['TIMER', 'EMERGENCY']
```…
-
Chart fetching may fail for multiple reasons: database connection lost, chart is not found from the database etc. Currently null is returned and there might be some logging, but no good way to handle …
-
There is no part for the graphical compare feature in the documentation. A documentation for versioning system support for SCT is also missing.
-
The documentation on [EventLess Transitions](https://lucywang000.github.io/clj-statecharts/docs/transitions/#eventless-transitions) describes very well what happens when in state `:s1`, event `:e12` h…
-
I looked and I could not find an API or a component that would just let me get the graph alone.
**Use-case**
We’re building our [Playwright](https://playwright.dev) tests using state machines, a…
-
1) use one function that returns an enum to determine which page is active (basically a router)
2) setup actions to determine active page transitions
3) move other stuff over
-
I'm experimenting with clj-statecharts for the purpose of using it with LibGDX. A common pattern there is for a screen instance to react to an action of a user by setting the next screen for the game …