Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

166
Vistas
How I can operate on the current state right after updating it in the same function?

Essentially I have this state object and this method:

const [groupData, setGroupData] = useState({});
// groupData state 
        groupData = {
           group1: [
              { id: 1, name: Mike, age: 24 },
              { id: 2, name: Bob, age: 31 }
           ],
           group2: [
              { id: 3, name: Christin, age: 21 },
              { id: 4, name: Michelle, age: 33 }
           ],
        }

const stateRef = useRef();

stateRef.current = groupData;

const handleRemovePerson = (personToRemoveById: string) => {
   
    const filteredGroupData = Object.fromEntries(
      Object.entries(groupData).map(([key, value]) => {
        return [key, value.filter((person) => person.id !== personToRemoveById)];
      }),
    );

    setMainContentData(filteredGroupData);

    // Now check if group array does not have anymore persons, if empty then delete 
       group array

    console.log('stateRef', stateRef);
    // outputs the correct current data
    const filteredStateRef = Object.keys(stateRef).map((key) => stateRef[key]);

    console.log('filteredStateRef', filteredStateRef);
    // outputs previous data ??
};

I tried useRef and once I loop through it, it gives me back the previous data. How can I get the most current data after setting state and then operating on that new data right away? Thank you!

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

First of all, you can't access the state after using setState because it's an asynchronous operation and if you want to check something after using setState you need use useEffect hook to listen for state change and decide what to do with it, or in recent versions of react and react-dom you could use a not so suggested function called flushSync which will would update the state synchronously.

so the prefered way is to use useEffect like this:

const handleRemovePerson = (personToRemoveById: string) => {
  const filteredGroupData = Object.fromEntries(
    Object.entries(groupData).map(([key, value]) => {
      return [key, value.filter((person) => person.id !== personToRemoveById)];
    }),
  );

  setMainContentData(filteredGroupData);
};

useEffect(() => {
  if(true/**some conditions to prevents extra stuff */){
    // do your things, for example:
    console.log('stateRef', stateRef);
    // outputs the correct current data
    const filteredStateRef = Object.keys(stateRef).map((key) => stateRef[key]);
  }
}, [mainContentData, /**or other dependencies based on your needs */])
about 4 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 Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda