• Empleos
  • Sobre nosotros
  • profesionales
    • Inicio
    • Empleos
    • Cursos y retos
  • empresas
    • Inicio
    • Publicar vacante
    • Nuestro proceso
    • Precios
    • Evaluaciones
    • Nómina
    • Blog
    • Comercial
    • Calculadora de salario

0

263
Vistas
Getting TypeError when I'm passing a Ref from a function component to other function component using forwardRef in react js,

I want to pass the ref from the App to Foo, App and Foo are function components, so I'm using forwardRef() to warp the Foo, but I get the error warning TypeError: Cannot add property current, object is not extensible. Below id my code, we do I need to change?

import './App.css';
import React, { useState, Component, useEffect, createRef, useRef, forwardRef } from 'react'
import ReactDOM from 'react-dom'

const Foo=forwardRef((inputRef)=> {
  const onClick = () => {
    inputRef.current.focus()
  }
    return (
      <div>
        <input type="text" ref={ inputRef }></input>
        <button onClick={ onClick }>Focus</button>
      </div>
    ) 
})
function App() {
  const inputRef = createRef()
  const clicked = () => {
    inputRef.current.focus()
  }
  return (
    <div>
      <Foo ref={inputRef} />
      <button onClick={ clicked }>Click Foo</button>
    </div>
  )
  
}
export default App;
about 3 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Please define ref at start function

const inputRef = useRef(null); 
about 3 years ago · Juan Pablo Isaza Denunciar

0

Ref Forwarding receives two parameters props and ref.

React.forwardRef((props, ref) =>{
    return(
        <button ref={ref}>{props.children}</button>
    )
};

Here is your edited code I've added type for ref which is HTMLInputElement.

type RefType = HTMLInputElement | null;
interface PropsType {}

const Foo = forwardRef<RefType, PropsType>((props, ref) => {
  const onClick = () => {
   if (ref && "current" in ref) {
    ref.current?.focus();
   }
};
  return (
     <div>
       <input type="text" ref={ref}></input>
       <button onClick={onClick}>Focus</button>
     </div>
 );
});

 function App() {
  const inputRef = createRef<HTMLInputElement>();
  const clicked = () => {
  inputRef.current?.focus();
 };
  return (
     <div>
     <Foo ref={inputRef} />
     <button onClick={clicked}>Click Foo</button>
    </div>
   );
  }
 export default App;
about 3 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Nuestro proceso Comercial
Legal
Términos y condiciones Política de privacidad
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recomiéndame algunas ofertas
Necesito ayuda