-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ad06bc
commit ea7c169
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
'xstate': minor | ||
--- | ||
|
||
The `onSnapshot: { ... }` transition object is now supported for invoked machines, observables, promises, and transition functions: | ||
|
||
```ts | ||
const machine = Machine({ | ||
// ... | ||
invoke: [ | ||
{ | ||
src: createMachine({ ... }), | ||
onSnapshot: { | ||
actions: (context, event) => { | ||
event.snapshot; // machine state | ||
} | ||
} | ||
}, | ||
{ | ||
src: fromPromise(() => { ... }), | ||
onSnapshot: { | ||
actions: (context, event) => { | ||
event.snapshot; // promise value | ||
} | ||
} | ||
}, | ||
{ | ||
src: fromObservable(() => ...), | ||
onSnapshot: { | ||
actions: (context, event) => { | ||
event.snapshot; // observable value | ||
} | ||
} | ||
}, | ||
{ | ||
src: fromTransition((state, event) => { ... }, /* ... */), | ||
onSnapshot: { | ||
actions: (context, event) => { | ||
event.snapshot; // transition function return value | ||
} | ||
} | ||
} | ||
] | ||
}); | ||
``` |