Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Owen Liang Friday 6PM Jonathan Chery (Instructor), Catherine Jimenez (TA) #43

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
19 changes: 16 additions & 3 deletions src/components/BoardSwitcher.js
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 @@ -11,15 +11,28 @@ function Board(props) {

function BoardSwitcher(props) {
let boards = [];

const [currentBoard, setCurrentBoard] = useState(0);

const handleToggle = (event) => {
if(currentBoard >= props.numBoards - 1) {
setCurrentBoard(0);
}
else {
setCurrentBoard(currentBoard + 1);
}

}

for (let ii = 0; ii < props.numBoards; ii++) {
let isSelected = ii === 0;
let isSelected = ii === currentBoard;
boards.push(<Board index={ii} selected={isSelected} key={ii} />);
}

return (
<div>
<div className="boards">{boards}</div>
<button>Toggle</button>
<button onClick={handleToggle}>Toggle</button>
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
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>
);