Ask Your Question
1

How can React components be hidden or shown without causing re-renders?

asked 2023-06-15 05:50:53 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-15 06:10:01 +0000

woof gravatar image

React components can be hidden or shown without causing re-renders by using the CSS property "display" to toggle the visibility of the component. Instead of changing the component's state, this approach manipulates the CSS style. This way, the component is not re-rendered, and it remains in the virtual DOM.

Here's an example:

class MyComponent extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      visible: true
    };
  }

  toggleVisibility() {
    this.setState(prevState => ({ visible: !prevState.visible }));
  }

  render() {
    const { visible } = this.state;

    return (
      <div>
        <button onClick={() => this.toggleVisibility()}>
          Toggle visibility
        </button>
        <div
          style={{ display: visible ? "block" : "none" }}
        >
          Hidden content
        </div>
      </div>
    );
  }
}

In this example, the div element with the "Hidden content" text is hidden or shown depending on the current value of the visible state property. The style of the div element is changed using the inline style {{display: visible ? "block" : "none"}}. When the user clicks on the "Toggle visibility" button, the toggleVisibility method is called, which updates the visible state property. However, the component doesn't re-render because only the style of the div element changes.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-15 05:50:53 +0000

Seen: 15 times

Last updated: Jun 15 '23