Code Monkey home page Code Monkey logo

Comments (2)

voliva avatar voliva commented on June 22, 2024 3

A summary of that docs section that's most relevant to the question is:

Given

const [useFoo, foo$] = bind(of(1))

When you don't have defined a default value, what should useFoo() return the first time it's run, if no one has subscribed to the shared observable (foo$) yet?

It just can't return anything. useFoo() would have to subscribe to the observable, which would violate React's rules about subscribing on render. And even if it did, there's no guarantee that the observable emits something synchronously so that it can be returned on that hook call. In this specific case it would, because it's of(1), but on most of the cases it actually won't.

So if you haven't defined a default value for that hook you need an active subscription to the underlying observable beforehand. <Subscribe> can help in two ways:

  1. It takes in a source$ property, which you can use so that it subscribes to that observable before rendering its children. (less "magic" than the other way)
  2. It takes in all the subscriptions needed by its children automatically - More powerful, but with great power comes great responsibility.

What's actually happening when useFoo() is called for the first time is (and why the error "Missing subscribe" is thrown):

  • useFoo() checks whether foo$ has an active subscription.
    • If it does, it checks whether foo$ has emitted any value previously.
      • If it has, then it returns the last value emitted.
      • If it hasn't, then it either returns the default value, or triggers suspense waiting for the first value to come through.
    • If it doesn't have an active subscription, then it checks whether it has a default value or not.
      • If it has, then it returns the default value.
      • If it hasn't, then it communicates to the nearest <Subscribe> parent (through a react context provider) for that <Subscribe> to perform a subscription to foo$. Then it triggers suspense until foo$ emits something.
      • If no parent <Subscribe> is found, then it throws the Missing Subscribe exception.

(I need to make a flow chart out of this 😅 )

The parent <Subscribe> is a component that has already been mounted, so it can handle all the subscriptions of its children even when they are getting rendered for the first time. The only thing to note is that the owner of that subscription is the <Subscribe>, not the actual child. If the child that triggered one specific subscription unmounts, the subscription will still be active. The component that will clean up that subscription is that specific <Subscribe>, its owner, once it unmounts.

That's why the second approach is powerful, reduces a lot of boilerplate, but you need to be careful - Using a <Subscribe> on the root of your application is probably a bad idea, since it will pick up every subscription of every child and keep them alive throughout the whole lifetime of your app.

We still need to add docs for this, but on a recent version we released <RemoveSubscribe> (source code), in order to prevent some children from accessing a parent <Subscribe> directly, which can be useful to work around that.

from react-rxjs.

danizord avatar danizord commented on June 22, 2024 2

@mbret you have to either use <Subscribe> or pass a default value: https://react-rxjs.org/docs/core-concepts#streams-as-state

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.