2018-10-10 18:03:03 -04:00
---
id: 5a24c314108439a4d4036176
2021-02-06 04:42:36 +00:00
title: Use State to Toggle an Element
2018-10-10 18:03:03 -04:00
challengeType: 6
2020-09-18 00:13:42 +08:00
forumTopicId: 301421
2021-01-13 03:31:00 +01:00
dashedName: use-state-to-toggle-an-element
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2021-02-06 04:42:36 +00:00
Sometimes you might need to know the previous state when updating the state. However, state updates may be asynchronous - this means React may batch multiple `setState()` calls into a single update. This means you can't rely on the previous value of `this.state` or `this.props` when calculating the next value. So, you should not use code like this:
2020-09-18 00:13:42 +08:00
2021-01-13 00:22:19 +08:00
```jsx
2020-09-18 00:13:42 +08:00
this.setState({
counter: this.state.counter + this.props.increment
});
```
2021-02-06 04:42:36 +00:00
Instead, you should pass `setState` a function that allows you to access state and props. Using a function with `setState` guarantees you are working with the most current values of state and props. This means that the above should be rewritten as:
2020-09-18 00:13:42 +08:00
2021-01-13 00:22:19 +08:00
```jsx
2020-09-18 00:13:42 +08:00
this.setState((state, props) => ({
counter: state.counter + props.increment
}));
```
2021-02-06 04:42:36 +00:00
You can also use a form without `props` if you need only the `state` :
2020-09-18 00:13:42 +08:00
2021-01-13 00:22:19 +08:00
```jsx
2020-09-18 00:13:42 +08:00
this.setState(state => ({
counter: state.counter + 1
}));
```
2021-02-06 04:42:36 +00:00
Note that you have to wrap the object literal in parentheses, otherwise JavaScript thinks it's a block of code.
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
# --instructions--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
`MyComponent` has a `visibility` property which is initialized to `false` . The render method returns one view if the value of `visibility` is true, and a different view if it is false.
2020-12-16 00:37:30 -07:00
2021-02-06 04:42:36 +00:00
Currently, there is no way of updating the `visibility` property in the component's `state` . The value should toggle back and forth between true and false. There is a click handler on the button which triggers a class method called `toggleVisibility()` . Pass a function to `setState` to define this method so that the `state` of `visibility` toggles to the opposite value when the method is called. If `visibility` is `false` , the method sets it to `true` , and vice versa.
2020-12-16 00:37:30 -07:00
2021-02-06 04:42:36 +00:00
Finally, click the button to see the conditional rendering of the component based on its `state` .
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
**Hint:** Don't forget to bind the `this` keyword to the method in the constructor!
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
# --hints--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
`MyComponent` should return a `div` element which contains a `button` .
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
assert.strictEqual(
Enzyme.mount(React.createElement(MyComponent)).find('div').find('button')
.length,
1
);
2018-10-10 18:03:03 -04:00
```
2021-02-06 04:42:36 +00:00
The state of `MyComponent` should initialize with a `visibility` property set to `false` .
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```js
assert.strictEqual(
Enzyme.mount(React.createElement(MyComponent)).state('visibility'),
false
);
```
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Clicking the button element should toggle the `visibility` property in state between `true` and `false` .
2020-09-18 00:13:42 +08:00
2018-10-10 18:03:03 -04:00
```js
2021-02-06 04:42:36 +00:00
(() => {
2020-12-16 00:37:30 -07:00
const mockedComponent = Enzyme.mount(React.createElement(MyComponent));
const first = () => {
mockedComponent.setState({ visibility: false });
2021-02-06 04:42:36 +00:00
return mockedComponent.state('visibility');
2020-12-16 00:37:30 -07:00
};
const second = () => {
mockedComponent.find('button').simulate('click');
2021-02-06 04:42:36 +00:00
return mockedComponent.state('visibility');
2020-12-16 00:37:30 -07:00
};
const third = () => {
mockedComponent.find('button').simulate('click');
2021-02-06 04:42:36 +00:00
return mockedComponent.state('visibility');
2020-12-16 00:37:30 -07:00
};
2021-02-06 04:42:36 +00:00
const firstValue = first();
const secondValue = second();
const thirdValue = third();
2020-12-16 00:37:30 -07:00
assert(!firstValue & & secondValue & & !thirdValue);
2021-02-06 04:42:36 +00:00
})();
2018-10-10 18:03:03 -04:00
```
2020-08-13 17:24:35 +02:00
2021-02-06 04:42:36 +00:00
An anonymous function should be passed to `setState` .
2020-12-16 00:37:30 -07:00
```js
const paramRegex = '[a-zA-Z$_]\\w*(,[a-zA-Z$_]\\w*)?';
assert(
new RegExp(
'this\\.setState\\((function\\(' +
paramRegex +
'\\){|([a-zA-Z$_]\\w*|\\(' +
paramRegex +
'\\))=>)'
2021-02-06 04:42:36 +00:00
).test(__helpers.removeWhiteSpace(code))
2020-12-16 00:37:30 -07:00
);
```
2021-02-06 04:42:36 +00:00
`this` should not be used inside `setState`
2020-12-16 00:37:30 -07:00
```js
assert(!/this\.setState\([^}]*this/.test(code));
```
2021-01-13 03:31:00 +01:00
# --seed--
## --after-user-code--
```jsx
ReactDOM.render(< MyComponent / > , document.getElementById('root'));
```
## --seed-contents--
```jsx
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
visibility: false
};
// Change code below this line
// Change code above this line
}
// Change code below this line
// Change code above this line
render() {
if (this.state.visibility) {
return (
< div >
< button onClick = {this.toggleVisibility} > Click Me< / button >
< h1 > Now you see me!< / h1 >
< / div >
);
} else {
return (
< div >
< button onClick = {this.toggleVisibility} > Click Me< / button >
< / div >
);
}
}
}
```
2020-12-16 00:37:30 -07:00
# --solutions--
2021-01-13 03:31:00 +01:00
```jsx
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.state = {
visibility: false
};
this.toggleVisibility = this.toggleVisibility.bind(this);
}
toggleVisibility() {
this.setState(state => ({
visibility: !state.visibility
}));
}
render() {
if (this.state.visibility) {
return (
< div >
< button onClick = {this.toggleVisibility} > Click Me< / button >
< h1 > Now you see me!< / h1 >
< / div >
);
} else {
return (
< div >
< button onClick = {this.toggleVisibility} > Click Me< / button >
< / div >
);
}
}
}
```