Skip to content

JuniperxandxLamplight/Redux-Kitchen

Repository files navigation

Redux Kitchen Logo

Redux Kitchen

A browser game to teach Redux flow and best practices.

By Aurora Shido-Wagenet, Kim McConnell, Ward Chamberlain, Randee Layosa, Tracy Reith

  1. Description
  2. Stretch Goals
  3. Target Audience
  4. Component Tree
  5. State Shapes
  6. Installation
  7. Design and Development Technologies
  8. License

Description

Redux Kitchen is an educational game that teaches the basic concepts of Redux: actions, reducers, the store, and how data flows in Redux.

Learners begin the game by taking over the day-to-day operation of a waffle shop. For each day's activities, they will learn to write Redux code as they complete each level.

Introduction

Inherit store

splash - Welcome Page second splash - Story Page

Level 1

Day Start: Dispatch one type of Action; Reducers: Cook Reducer

Start Page

Day End: Add Switch Case for biscuits

End Day 1 Page

Level 2

Day Start: Goal: Dispatch multiple types of actions; Reducer: Cooked Reducer 2.0

Day 2 Customer Order

Day End: Goal: Modify Reducer to accept quantity payload

End Day 2 Page

Level 3

Day Start: Goal: Dispatch actions with payload; Reducer: Cooked Reducer 3.0

Day End: Goal: Add pantry and kitchen reducers, buy ticket wheel

Stretch Goals

Level 4: Day start

Goal: Dispatch actions to both reducers at once

Target Audience

Developers and students new to Redux. Prerequisites: Javascript, React (optional).

Component Tree

alt text

State Shapes

User State

Level 1-3

state = {
  Kitchen: {
    waffles: 1,
    strawberryWaffles: 2,
    biscuits: 2
  }
}

Level 4+

state = {
  Kitchen: {
    waffles: 1,
    strawberryWaffles: 2,
    biscuits: 2
  },
  Pantry: {
    batter: 5,
    strawberries: 7
  }
}

App State

state = {
  userState: {
    Kitchen: {
      waffles: 1,
      strawberryWaffles: 2,
      biscuits: 2
    },
    Pantry: {
      batter: 5,
      strawberries: 7
    }
  },
  userLevel: 1,
  dayTime: true,
  customerCount: 1
}

Setup and Installation Requirements

  • Use your command terminal (gitbash if you're using a windows machine) to clone the latest commit from Github, using the url provided
  • Open with a text editor such as Atom to view the code
  • In your terminal run the command npm install
  • Then, run the command npm run start to view

Design and Development Technologies

  • Javascript
  • React-Redux
  • HTML5 and CSS3
  • Figma

License

MIT

Copyright (c) 2019 Aurora Shido-Wagenet, Kim McConnell, Ward Chamberlain, Randee Layosa, Tracy Reith

About

A browser game to teach Redux flow and best practices.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published