Skip to content
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

Untrack all dispatch operations #18

Closed
alxhub opened this issue Dec 15, 2024 · 1 comment · Fixed by #20
Closed

Untrack all dispatch operations #18

alxhub opened this issue Dec 15, 2024 · 1 comment · Fixed by #20
Labels
bug Something isn't working

Comments

@alxhub
Copy link

alxhub commented Dec 15, 2024

The read of selectedState here can end up tracked in a reactive context like an effect, if a dispatch is made inside of that context. This happens because a dispatch causes subscribers to run synchronously to receive the newly reduced state, and selectedState is read inside a subscriber.

There are 2 possible fixes here:

  1. For good reactive hygiene, ideally the wholedispatch() operation should be untracked. Nothing downstream of dispatch() makes sense to track if invoked from a reactive context.

  2. In addition to 1, linkedSignal supports equality directly so the read of selectedState in order to invoke the equality function is actually not necessary. Instead, the equality operation can be delegated to linkedSignal.

@crutchcorn crutchcorn added the bug Something isn't working label Dec 15, 2024
@crutchcorn
Copy link
Member

This is causing issues in a minimal repro I made here:

https://stackblitz.com/edit/stackblitz-starters-3iluayah?file=src%2Fmain.ts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants