Skip to content
Advertisement

React issue with show / hiding elements

This project is using React.

The goal is that when the maximize icon is clicked on the the Editor component, the Preview component will be hidden. When the maximize icon is clicked on the Preview component, the Editor component will be hidden.

The problem is, when I click the maximize icon on the Editor component, the only thing that displays is the text “not found.” But the Preview maximize icon works when clicked.

I logged state to the console so I know that the state is updating when the editor button is clicked, but I can’t figure out what is wrong with the way I am rendering the Editor element.

Codepen link: https://codepen.io/Jamece/pen/Exbmxmv

Thank you for any help you can provide.

JavaScript

Advertisement

Answer

A button element inside a form element by default has type="submit". Hence, when you click the maximize button it tries to submit the form, making an http request.

This is not what you want here so you should set type="button" on your buttons. This way they will not trigger a form submission on click.

The same thing happens on your Preview component, but note that in the console you get the following message:

Form submission canceled because the form is not connected

I believe this is because the way you order the elements in the different states causes React to recreate the preview window in the DOM. If you switch Editor and Preview around in the state where both are visible then Editor works fine and Preview is broken.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement