-
Notifications
You must be signed in to change notification settings - Fork 112
feat(core,react): pause activity transition for React.Suspense
#579
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
|
Open in Stackblitz • @stackflow/demo commit: |
React.SuspenseReact.Suspense
React.SuspenseReact.Suspense
| return { | ||
| ...stack, | ||
| globalTransitionState: "paused", | ||
| pausedEvents: stack.pausedEvents ?? [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bug fix
| const globalTransitionState = calculateGlobalTransitionState( | ||
| activities, | ||
| stack.globalTransitionState, | ||
| ); | ||
|
|
||
| const globalTransitionState = | ||
| stack.globalTransitionState === "paused" | ||
| ? "paused" | ||
| : isLoading | ||
| ? "loading" | ||
| : "idle"; | ||
| const result = reducer( | ||
| { ...stack, activities, globalTransitionState }, | ||
| event, | ||
| ); | ||
|
|
||
| const updatedGlobalTransitionState = calculateGlobalTransitionState( | ||
| result.activities, | ||
| result.globalTransitionState, | ||
| ); | ||
|
|
||
| return reducer({ ...stack, activities, globalTransitionState }, event); | ||
| return { | ||
| ...result, | ||
| globalTransitionState: updatedGlobalTransitionState, | ||
| }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
global transition state should be evaluated latest (another with hof?)
No description provided.