Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

75
Views
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 answers
Answer question

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 Report

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!