Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions src/components/BoardSwitcher.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react";
import React, { useState } from "react";

function Board(props) {
let className = "board";
Expand All @@ -10,16 +10,24 @@ function Board(props) {
}

function BoardSwitcher(props) {
// add state to track current selection
// state variable
const [selectedBoardIndex, setSelectedBoardIndex] = useState(0);
// create an event handler
const handleClick = (event) => {
// use the getter when trying to update the setter of state variable
setSelectedBoardIndex((selectedBoardIndex + 1) % props.numBoards);
}
let boards = [];
for (let ii = 0; ii < props.numBoards; ii++) {
let isSelected = ii === 0;
boards.push(<Board index={ii} selected={isSelected} key={ii} />);
for (let boardIndex = 0; boardIndex < props.numBoards; boardIndex++) {
let isSelected = boardIndex === selectedBoardIndex;
boards.push(<Board index={boardIndex} selected={isSelected} key={boardIndex} />);
}

return (
<div>
<div className="boards">{boards}</div>
<button>Toggle</button>
<button onClick={handleClick}>Toggle</button>
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import "./index.css";
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<BoardSwitcher numBoards={3} />
<BoardSwitcher numBoards={5} />
</React.StrictMode>
);