Coder Social home page Coder Social logo

Comments (5)

crimx avatar crimx commented on May 16, 2024 1

Unfortunately as I had explained in the docs performing synchronous side effects is not safe in concurrent mode.

It might be okay if just a Behaviour Subject but users may create all kinds of observable pipelines. If you have for example an initial remote data fetching, this could be triggered multiple times if the subscription happens in render phase.

from observable-hooks.

crimx avatar crimx commented on May 16, 2024

When we toggle the element the subscription is still alive.

The observable is auto-unsubscribed when the component unmounts. For your situation the <h1> and the observable should move to a new component. You can also control subscription manually with useSubscription but that's not a good fit for this scenario.

Btw, I also get a type error:

useObservableState<string, React.MouseEvent<HTMLHeadingElement>> or useObservableState<string, unknown> if you want arbitrary argument.

from observable-hooks.

ArielGueta avatar ArielGueta commented on May 16, 2024

What about passing the show property to useObservableState and it will unsubscribe when it's false and resubscribe when it's true. It's a bit of overhead to create a component for this.

from observable-hooks.

crimx avatar crimx commented on May 16, 2024

If creating a component is a overhead then it is safe to just leave the observable as it is. There is close to no impact in terms of CPU and memory footprint.

What about passing the show property to useObservableState and it will unsubscribe when it's false and resubscribe when it's true.

Patterns like this will create unnecessary complication IMO. You may create a custom hook for this though. Do note that it may cost more if you keep unsubscribing and resubscribing.

from observable-hooks.

ArielGueta avatar ArielGueta commented on May 16, 2024

Ok, thanks. Last question:

What about a use case where I have a BehaivorSubject? In this case, I expect that useObservable will take the initial value synchronously and use it instead of passing a "redundant" initial value and cause an additional re-render. What do you think?

It's common usage in state management libraries such as Akita.

from observable-hooks.

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.