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

77
Vistas
how to setstate in handleclick in reactjs

im a beginner concerning react .i do not know why setState in the handleclick function doesn't work properly . this is the code


class Toggle extends React.Component {
    constructor(props) {
        super(props);
        this.state = { isDark: false }
    }
    handleOnClick = () => {
        this.setState(prevState => ({ isDark: !prevState.isDark }))
        if (this.state.isDark === 'true') {
            setTheme('theme-dark')
        }
        else setTheme('theme-light')
    }
render() {

        return (
            <button onClick={this.handleOnClick}>
          </button>

so when i click the button the state of isDark will always be false , that means setState is not working i guess

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

0

the problem is that the react lifecycle will update the state after the sync function handleOnClick complete. You may try this way:

handleOnClick = () => {
  this.setState(prevState => {
    const isDark = !prevState.isDark;
    if (isDark === true) {
      setTheme('theme-dark');
    } else setTheme('theme-light');
    return {...prevState, isDark};
  })
};

or using lifecycle method https://reactjs.org/docs/react-component.html#componentdidupdate

componentDidUpdate(){
 if (this.state.isDark === true) {
   setTheme('theme-dark');
 } else setTheme('theme-light');
}

about 4 years ago · Juan Pablo Isaza Denunciar

0

You need to write this

this.handleOnClick = this.handleOnClick.bind(this);

at the end of your constructor and in handleOnClick function create local variable to save new value:

handleOnClick = () => {
    const isDark = !this.state.isDark;

    this.setState({ isDark: isDark });

    if (isDark === true) {
        setTheme('theme-dark')
    } else {
        setTheme('theme-light');
    }
}
about 4 years ago · Juan Pablo Isaza Denunciar

0

the code is correct but in the conditional statement there is a huge mistake i was comparing this.state.isDark ==='true'

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