Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add a State property to an Inline Style in React

I have a react element that has an inline style like this: (Shortened version)

      <div className='progress-bar'
           role='progressbar'
           style={{width: '30%'}}>
      </div>

I want to replace the width with a property from my state, although I'm not quite sure how to do it.

I tried:

      <div className='progress-bar'
           role='progressbar'
           style={{{width: this.state.percentage}}}>
      </div>

Is this even possible?

like image 592
lost9123193 Avatar asked Jun 15 '16 06:06

lost9123193


Video Answer


2 Answers

You can do it like this

style={ { width: `${ this.state.percentage }%` } }

Example

like image 162
Oleksandr T. Avatar answered Oct 27 '22 05:10

Oleksandr T.


yes its possible check below

class App extends React.Component {

  constructor(props){
    super(props)
    this.state = {
      width:30; //default
    };
  }


  render(){

//when state changes the width changes
const style = {
  width: this.state.width
}

  return(
    <div>
    //when button is clicked the style value of width increases
      <button onClick={() => this.setState({width + 1})}></button>
      <div className='progress-bar'
           role='progressbar'
           style={style}>
      </div>
    </div>
  );
}

:-)

like image 23
Mike Tronic Avatar answered Oct 27 '22 05:10

Mike Tronic