Skip to content
Advertisement

how to toggle between two css classes view types with react

I have a List and Grid type display. How do I toggle between them in React. I want to toggle between jsGridView and jsListView classes.

This is the vanilla js of the toggling of classes

JavaScript

** this is my react file where I have the display items and buttons to toggle. how do I implement the toggle event listeners into my react file** How do I toggle between the two classes – jsGridVew and jsListView

JavaScript

EDIT: > I also want to add an ‘active class on each button on click. I’ve tried somethings but it doesn’t work

Advertisement

Answer

I am assuming this div is where you want to toggle between jsGridView and jsListView

JavaScript

So why not use a state variable to store the class name? Then use the onClick even to set it.

JavaScript

So here you set your class to jsGridView initially so it renders in grid view by default. But you also have 2 buttons that can flip it between grid and list view.

You can also add an active class to the button if you want.

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