GithubHelp home page GithubHelp logo

Clickoutside about react-hooks HOT 6 CLOSED

ecomfe avatar ecomfe commented on September 2, 2024
Clickoutside

from react-hooks.

Comments (6)

otakustay avatar otakustay commented on September 2, 2024 1

Yes absolutely, I will fix it soon

from react-hooks.

otakustay avatar otakustay commented on September 2, 2024

I have further looked into this issue, useDocumentEvent does not require listener function to be reference equal, and it should never requires that since document is not a react controlled element, events on document can be stored inside a ref, so current implement is safe.

from react-hooks.

otakustay avatar otakustay commented on September 2, 2024

I will close this issue since there is no side effect in current implement, discussion can continue here

from react-hooks.

lishine avatar lishine commented on September 2, 2024

I have further looked into this issue, useDocumentEvent does not require listener function to be reference equal, and it should never requires that since document is not a react controlled element, events on document can be stored inside a ref, so current implement is safe.

What do you mean by safe?
The reason I am suggesting useCallback is so that this function won't be recreated on each render...

from react-hooks.

otakustay avatar otakustay commented on September 2, 2024

Yes, this function is recreated on each render, but since its underlying useDocumentEvent does not pass the function any react controlled element like <div onClick={testAndTrigger} />, a recreation of function will not trigger more render (or update) in react.

On the other side, we don't have performance benefit from useCallback, for the code like:

useCallback(
  function testAndTrigger() {
  },
  []
);

testAndTrigger is also recreated on each render, useCallback from the second render discards the newly created function and returns a previously cached one. In this case we don't get performance boost to have an extra lookup in a cache.

So my conclusion is that a recreation of function will not make react render or update more times and it will not effect any performance, it is safe to just leave it recreated.

from react-hooks.

lishine avatar lishine commented on September 2, 2024

Indeed, you are much right.
In React we may consider potential performance problem in case of callback passing in props and child rerender and then Dom diff, in this case useCallback will help, which is not the case here.
About the second part, interesting point, useCallback actually creates this function anyway every time. BTW useMemo will not autocreate the function :) ()=>()=>{}

from react-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.