Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

208
Visualizações
How to use useState in addEventListener?

If I rightClick the red DivElement, I want to change my state

As the state has been changed, so I thought I could see console.log

But It does not work

Here is my code

 import { useState, useRef, useEffect } from "react";

function Main() {
  const [testState, setTestState] = useState(0);
  const testRef = useRef(null);

  function clickHandler(event) {
    setTestState(testState + 1);
  }

  useEffect(() => {
    if (!testRef) return;

    testRef.current.addEventListener('contextmenu', (event) => { clickHandler(event) });
  }, [testRef]);

  useEffect(() => {
    console.log('testState: ', testState);
  }, [testState]);

  return (
    <div
      ref={testRef}
      style={{width: '100%', display: 'block', height: '32px', backgroundColor: 'red'}}
    />
  );
}

export default Main;
about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

the problem comes when you are referencing your state, keep in mind that setState is executed asynchronously (think about set state as a request to rerender the component).

by changing your setTestState(testState + 1); setTestState((oldVal) => oldVal + 1); your example will work. take a look to this stackblitz example

regards,

about 4 years ago · Juan Pablo Isaza Relatório

0

You should use a cleanup function and preventDefault on clickHandler.

import { useState, useRef, useEffect, useCallback } from "react";

function Main() {
  const [testState, setTestState] = useState(0);
  const testRef = useRef(null);

  const clickHandler = useCallback((event) => {
    event.preventDefault();
    setTestState((test) => test + 1);
  }, []);

  useEffect(() => {
    const refElement = testRef.current;
    refElement.addEventListener("contextmenu", clickHandler);
    return () => refElement.removeEventListener("contextmenu", clickHandler); //cleanup function
  }, [clickHandler]);

  useEffect(() => {
    console.log("testState: ", testState);
  }, [testState]);

  return (
    <div
      ref={testRef}
      style={{
        width: "100%",
        display: "block",
        height: "32px",
        backgroundColor: "red"
      }}
    />
  );
}

export default Main;

Working Codesandbox

about 4 years ago · Juan Pablo Isaza Relatório

0

Here is a working code snippet:

function Main() {
  const [testState, setTestState] = useState(0);
  const testRef = useRef(null);

  useEffect(() => {
    function clickHandler(event) {
      setTestState((old) => old + 1);
    }
    if (!testRef) return;
    const ref = testRef.current;
    ref.addEventListener("contextmenu", clickHandler);
    return () => ref.removeEventListener("contextmenu", clickHandler);
  }, [testRef, testState]);

  useEffect(() => {
    console.log("testState: ", testState);
  }, [testState]);

  return (
    <div
      ref={testRef}
      style={{
        width: "100%",
        display: "block",
        height: "32px",
        backgroundColor: "red",
      }}
    />
  );
}
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda