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

Move autorunWithStore / derivedWithStore into autorun/derived + reader.store #245114

Open
hediet opened this issue Mar 31, 2025 · 0 comments
Open
Assignees
Labels
debt Code quality issues
Milestone

Comments

@hediet
Copy link
Member

hediet commented Mar 31, 2025

Instead of

autorunWithStore((reader, store) => {
  const val = obs.read(reader);
  store.add(...)
});

We could make this work:

autorun(reader => {
  const val = obs.read(reader);
  reader.store.add(...)
});

The reader of autorun/derived would be of type

interface IReaderWithStore extends IReader {
   get store(): DisposableStore;
}

The implementation would only create the underlying disposable store on first access of store to avoid overhead in all the cases the store is not needed.

@hediet hediet self-assigned this Mar 31, 2025
@hediet hediet added the debt Code quality issues label Mar 31, 2025
@hediet hediet added this to the On Deck milestone Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
debt Code quality issues
Projects
None yet
Development

No branches or pull requests

1 participant