Let’s display the "next block" preview — a 4×4 grid that shows which block will drop next.
- Create a
NextBlock
component that uses a 4×4 grid ofGridSquare
s. - Style the grid and add it to the UI.
Make a new file: src/components/NextBlock.js
import React from 'react';
import GridSquare from './GridSquare';
// Draws the "next" block view showing the next block to drop
export default function NextBlock() {
const block = [
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0],
];
const grid = block.map((rowArray, row) =>
rowArray.map((square, col) => (
<GridSquare key={`${row}${col}`} color={square} />
))
);
return <div className="next-block">{grid}</div>;
}
✅ This uses nested .map()
calls to render the 4×4 block using GridSquare
.
Update src/index.css
:
/* Next Block */
.next-block {
display: grid;
grid-template-columns: repeat(4, var(--tile-size));
align-self: flex-start;
}
This arranges the 4×4 grid nicely using CSS Grid.
Update src/App.js
:
import React from 'react';
import './App.css';
import GridBoard from './components/GridBoard';
import NextBlock from './components/NextBlock';
function App() {
return (
<div className="App">
<header className="App-header">
<h1 className="App-title">Tetris Redux</h1>
</header>
<GridBoard />
<NextBlock />
</div>
);
}
export default App;
✅ You should now see the 10×18 game grid and the 4×4 next block preview.
- Change a few
0
s in theblock
array to1
,2
, or3
to preview different colored blocks. - Add a border or background to
.next-block
to help visualize layout.
"How do the nested
.map()
calls inNextBlock
generate a flat list of components?"
"Can you refactor
NextBlock
to accept a tetris block array as a prop?"
- Why is
.next-block
styled withgrid-template-columns: repeat(4, ...)
? - What happens if the
block
array is not 4×4? - How are
key
s important in the nested.map()
?
git add .
git commit -m "Added initial next block"
git push