添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I'm not 100% confident regarding what was intended with the current | null Mutable vs non-Mutable mechanism in the current React hook useRef typings, so I've raised this as an issue rather than attempting a PR.

  • I tried using the @types/react package and had problems.
  • I tried using the latest stable version of tsc. https://www.npmjs.com/package/typescript (Tested with TSC 3.1.6)
  • I have a question that is inappropriate for StackOverflow . (Please ask any appropriate questions there).
  • Mention the authors (see Definitions by: in index.d.ts ) so they can respond.
  • Authors: @johnnyreilly , @Kovensky
  • According to the React docs - and several online code examples - useRef should be callable without a parameter, but the current types here mandate a parameter. Obviously if used without a parameter, a generic type parameter would be required, but right now the types mandate an actual parameter.

    The React documentation ( https://reactjs.org/docs/hooks-faq.html#is-there-something-like-instance-variables ) shows that it should be possible to write:

    const intervalRef = useRef();
    

    or more likely, in stronger-typed TS:

    const intervalRef = useRef<number|undefined>();
              

    The thinking behind making the parameter required was the same as the thinking behind making creatContext's argument required.

    Dan said back in the day that even though you technically can not give an argument, you still are supposed to and that the docs having an empty argument list example was an oversight.

    The thing with the |null is to make it more convenient to use DOM/Component refs, and you will see that all examples of useRef for that purpose have it initialized with null. It's not mutable there because React is the one that should do the mutation, not user code. Explicitly giving null in the generic argument does skip the overload, though.

    You could maybe have an overload like useRef<T = undefined>(): MutableRefObject<T | undefined> (template default there to stop it from being {} by default), but I'd like to hear from @gaearon (or someone else involved) whether that's an intended use pattern or a documentation oversight.

    Cool, you've obviously got your ear closer to the ground than I have - I hadn't heard that the empty arg list docs example was an oversight. Looking at the source, it does look like the parameter isn't optional.

    https://github.com/facebook/react/blob/504576306461a5ff339dc99691842f0f35a8bf4c/packages/react/src/ReactHooks.js#L68

    This needs to be revisited. It's possible to use useRef without initial value and it works just fine. You can even find examples in react docs:

  • https://reactjs.org/docs/hooks-faq.html#is-there-something-like-instance-variables
  • https://reactjs.org/docs/hooks-faq.html#how-to-get-the-previous-props-or-state
  • Edit: more examples from the userland:

  • https://egghead.io/lessons/react-access-and-modify-a-dom-node-with-the-react-useref-and-useeffect-hooks
  • https://blog.bitsrc.io/react-hooks-beyond-usestate-useeffect-f54dd6df6d1d
  • https://www.fullstackreact.com/articles/an-introduction-to-hooks-in-react/#useref-hook-example
  • Edit 2: also, this is the function responsible for creating initial ref:
    https://github.com/facebook/react/blob/0e67969cb1ad8c27a72294662e68fa5d7c2c9783/packages/react-reconciler/src/ReactFiberHooks.js#L761-L769
    If you don't pass initialValue, it will just be undefined.

    There was a twitter thread about this subject yesterday as well https://twitter.com/dan_abramov/status/1097844767956918274

    The conclusion was (again) that it is an oversight.