Code Monkey home page Code Monkey logo

Comments (4)

voliva avatar voliva commented on May 25, 2024 1

That's a nice discussion. On distinctShareReplay, I also wondered the same thing. Is it really needed if people can use connectObservable or connectFactoryObservable and get the "distinctShareReplay"ed observable that can be used to build other streams?

What's the use case where distinctShareReplay would be useful for a consumer?

If we expose it, I like shareLatest name, but I wouldn't make it apply distinctUntilChanged. From a consumer PoV the useful bit of shareLatest would be on how it shares the source stream - distinctUntilChanged can be added if needed.

from react-rxjs.

josepot avatar josepot commented on May 25, 2024

I've been thinking a lot about this and I think that I've finally realized what the issue is here. I will try to summarize it:

  • distinctShareReplay should not be exposed. Further more, the internal one should not have the distinctUntilChanged behavior baked in it.
  • connectObservable and connectFactoryObservable should not take the compareFn option at all.
  • The internal react-enhancer can (and should) apply a distinctUntilChanged(Object.is) in order to prevent unnecessary React.setState calls.
  • An enhancer that we could name shareLatest could (and I think that should) be exposed. Its behavior would be the equivalent of:
const shareLatest = <T>() => (
  source$: Observable<T>,
): Observable<T> =>
  source$.pipe(
    multicast(() => new ReplaySubject<T>(1)),
    refCount(),
  )

I'm working on that... I can't wait to get that done!

FTR: @voliva it was your comment that helped me see the light! Thanks a lot! Also, how do you feel about this stuff ^^

from react-rxjs.

voliva avatar voliva commented on May 25, 2024

Go for it, sounds good 🎉. The distinct part makes sense to only apply in the react hook.

from react-rxjs.

josepot avatar josepot commented on May 25, 2024

I'm closing this because I'm really happy with the latest alpha release. I will create separate issues for the other stuff. Also, I will try to make those issues more organized (and less chaotic).

from react-rxjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.