Welcome! In this tutorial, youโll build a fully functional version of Tetris using React and Redux Toolkit โ one step at a time.
You'll start with a basic React app and work all the way up to a polished, interactive game with score tracking, keyboard controls, and automatic block dropping.
This tutorial is hands-on and code-first. After each short page, your game will still run โ no broken builds, no skipped logic. You'll also find:
- ๐ค AI Prompts to help you explore concepts deeper
- ๐ง Check for Understanding to reinforce learning
- โ Working Code after every step
Each step builds on the one before it:
- 00-Introduction โ Set up your React app
- 01-Grid-Square โ Create the basic square component
- 02-Grid-Board โ Build a 10ร18 game board
- 03-Next-Block โ Add the next shape preview
- 04-Score-Board โ Display score and game controls
- 05-Arranging-the-Page โ Use CSS Grid for layout
- 06-Controls โ Add movement buttons
- 07-Message-Popup โ Display pause and game over messages
- 08-Redux-Toolkit โ Set up the Redux store
- 09-Organizing-Code โ Move helpers to a
utils
folder - 10-Default-State โ Define initial game state
- 11-Connect-Next-Block โ Pull shape data from Redux
- 12-Connecting-Grid-Board โ Draw the board dynamically
- 13-connect-Controls โ Hook up controls to actions
- 14-Connect-Message-Popup โ Show pause and game over states
- 15-Connect-Score-Board โ Connect score and control buttons
- 16-Rotating-Blocks โ Add rotation logic
- 17-Moving-Blocks โ Move blocks and place them
- 18-Creating-a-Timer โ Drop blocks over time
- 19-Game-Over-and-Restart โ End and restart the game
- 20-Stretch Goals - Try these stretch goals!
- Core React concepts: components, props, and hooks
- Redux Toolkit: slices, state, and dispatch
- Grid-based rendering logic
- Game loop timing with
requestAnimationFrame
- UI layout using CSS Grid
Start with 00-Introduction.md and follow the steps in order. Each page keeps your app functional and helps you build real logic and design patterns.
Good luck and have fun โ let's build Tetris! ๐งฑ