David Khourshid
David Khourshid
Not sure what the implementation details are @erikras, but in RRF I had to: - map `onChangeText` (React Native) to `onChangeText` - map `onChange` (React Native) to `noop` Otherwise, you...
As the name suggests, side-effects should not be executed inside of `actions.pure`. The pure action is used to determine which actions will be executed in a pure way (returning an...
If you (or anyone else) feels like adding this as a feature; e.g., as a toggle in the Settings panel, this is the relevant part of the code that deals...
> This shows the limits of the current eval-like approach. It's basically impossible to cover common scenarios correctly without static analysis The other solution here is to opt into reading...
> > The other solution here is to opt into reading from inspect(someMachine).start(), then interpreted machines can be visualized the same as how inspected machines are. > > Yes, we...
Yes, those features will make their way back. There are actually 3 representations: - Guard false (transition will not be taken due to context) - Guard true (transition will be...
Thanks for the contribution Judicael! We'll take a look soon.
@farskid @Andarist Besides tests, what are the remaining changes here?
Just for reference, here's how you can use XState with hooks today: https://xstate.js.org/docs/recipes/react.html#hooks Would be great to see this implemented into react-automata too!
Will prioritize this, thanks for the report!