Code Monkey home page Code Monkey logo

Comments (4)

otakustay avatar otakustay commented on June 12, 2024 1

This is not a real problem, omitting setValue from native useCallback is a feature of react-hooks/exhaustive-deps built on the fact that setValue is a reference stable function, so when we pass it to deps of useCallback and useMemo, this always passes change detection, just causing very little performance slowdown.

IMHO the structure of code and separation of concern are generally more important than the little performance slowdown, I will encourage to use hooks inside selector function by myself, at lease I can delete an entire selector function when it is no longer used, not having to remember to delete a part of the root hook's body.

I think we can add a note in document to confirm that hooks are available in selector functions, but not to officially encourage users to use it as a best practice.

from constate.

diegohaz avatar diegohaz commented on June 12, 2024

Yes, you can use hooks inside selectors. That's not a good example though.

Inside the selector, you don't know whether setValue has a stable constant value. By omitting it from the useCallback dependencies, you are at risk of creating a stale callback. So, the right place to put that useCallback would be inside the useValue hook, where you know how setValue has been created.

Because of this, eslint will also complain about that if you use the react-hooks/exhaustive-deps rule.

I'm totally open to update the documentation if we can come up with a better example of hooks inside selectors.

from constate.

diegohaz avatar diegohaz commented on June 12, 2024

omitting setValue from native useCallback is a feature of react-hooks/exhaustive-deps

Not in this case. Since eslint doesn't know where setValue comes from, the function can't be added to the list of exceptions. Since it's not in the same scope, react-hooks/exhaustive-deps has no clue whether this setValue is actually a state setter returned by useState.

Screenshot showing the eslint warning

But the eslint warning is not the real problem. I'd say the developer maintaining that code may also get confused about that if the original hook is abstracted somewhere else.

I guess we can possibly add that to the docs if we include setValue in the deps array:

useCallback(() => setValue(v => v + 1), [setValue]);

Would you like to send a PR?

from constate.

diegohaz avatar diegohaz commented on June 12, 2024

Closing this issue because of lack of activity. Feel free to send a PR with the suggested documentation.

from constate.

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.