Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add class when button clicked in react.js

I've been working on React for a few weeks now, and while I've got most of the basic syntax down (props, states), I'm struggling to draw some connections with some concepts, most notably adding classes when a state has changed. I'm trying to build a simon says game, which contains four buttons, all built using a Button component. These are initially set to have a opacity of .3 and an active state of false. When clicked, the state "active" becomes true, but I cannot for the life of me figure out how to add a css class that can give the button a full opacity. Here is my code:

class App extends Component {
  constructor(){
    super();
    this.state = {
      active: false
    }
  }
  handleClick(){
    this.setState({active: !this.state.active})
  }
  renderButtons(i, f){
    return <Button value={i} className="button" id={f} active= {this.state.active} onClick={() => this.handleClick()}/>
  }
  render() {
    return (
      <div className="App">
        {this.renderButtons("red", "buttonRed")}
        {this.renderButtons("blue", "buttonBlue")}
        {this.renderButtons("green", "buttonGreen")}
        {this.renderButtons("yellow", "buttonYellow")}
      </div>
    );
  }
}

And my css:

.button{
  width: 100px;
  height: 45px;
  opacity: .3;
  margin: 0 auto;
  margin-bottom: 30px;
}
#buttonRed{
  background: red;
}
#buttonBlue{
  background: blue;
}
#buttonGreen{
  background: green;
}
#buttonYellow{
  background: yellow;
}

So, at this moment, I would simply like to add a class when clicking the button while still keeping the "button" class to the component. Can anyone help?

like image 488
Ian Springer Avatar asked Mar 01 '17 04:03

Ian Springer


People also ask

How do you add active class to clicked item in Reactjs?

to just get the side nav element which was clicked identified by it's id . Then you can use an element. classList. add('active_item'); to add the active_item css class to the selected side nav item.

How do you toggle class in React?

To toggle class on click with React, we can set the className prop. to create the MyComponent component. In it, we have the isActive state. We set it with the setActive function in the toggleClass function.


3 Answers

React has a couple of ways of doing this. The first is as suggested by Tudor Ilisoi, which is simply concatenating strings. The second way is to give className an Object instead of a string. This way is arguably simpler but requires you to add the classnames module. You can install it with either npm install --save classnames or yarn add classnames. You can import it with:

import classNames from 'classnames';

And then you can use it in the following way:

<button className={classNames({button: true, active: this.state.active})} />

The first pair of curly brackets just tells react that we are passing a dynamic property, and the second is just the normal JavaScript syntax for objects. Note that the object is wrapped by the classNames() function. If we had declared it earlier, we could just as easily do:

render(){
    const classes = classNames({
        button: true, // we always want this class
        active: this.state.active, // only add this class if the state says so
     });

     return (
          <button className={classes} />
     );
}
like image 168
Mobius Avatar answered Oct 17 '22 22:10

Mobius


change className="button" to className={'button ' + f}

The expression enclosed in curly braces is evaluated as javascript and it produces a string

Also note that when using the curly brace syntax you do not have to add double quotes "" around attribute value .

When your JSX is parsed, React will generate the proper HTML attribute, for example class="button red".

like image 31
Tudor Ilisoi Avatar answered Oct 17 '22 21:10

Tudor Ilisoi


if you are looking for 2021/2022 answer: Here is an example that uses react hooks, which add the class name app to a div element when we click on a Toggle class button.

 import React, { useState } from "react";import "./styles.css";

export default function App() {
  const [isActive, setActive] = useState("false");
  const handleToggle = () => {
    setActive(!isActive);  };
  return (
    <div className={isActive ? "app" : null}>
       <h1>Hello react</h1>
       <button onClick={handleToggle}>Toggle class</button>
    </div>
  );
}
like image 40
David Elkabas Avatar answered Oct 17 '22 22:10

David Elkabas