Giter Site home page Giter Site logo

redux-create-store-lab-nyc-web-100719's Introduction

(Candy) Store Lab

simpsons-candy

Objectives

  1. Write a method to create a store.
  2. Work with stores, reducers, and actions.

Overview

Good news - you're opening a candy store! First, we just need to build an app to manage our inventory.

For now, we'll want to create a store to keep track of all of the types of candy we sell. Later on, we'll learn how we can manage multiple pieces of state and more than one reducer, but for this challenge, the state is going to be a basic array of strings. By the end of this lab, you should be able to open index.html, use your store's dispatch function to add a name of a type of candy, and see that name appear on the page.

Instructions

Write your code in src/index.js. We've provided the candyReducer function for you, as well as a render function, so you can get a sense of how they'll work.

  1. Write a function called createStore that takes in a reducer function as an argument.

  2. The createStore function should return an object with two methods - getState, dispatch.

    • getState should return the current state.
    • dispatch should take in an action, update the state using the reducer, and call the render function.

Once you've written createStore, to get everything working, you'll need two more things at the end of index.js:

  1. Notice that in the provided render function, a variable named store is called. Define a variable named store and assign it to whatever is returned by the createStore function you've written when it is passed the candyReducer function.
  2. Initialize your state using a dispatch call to the reducer.

Resources

redux-create-store-lab-nyc-web-100719's People

Contributors

maxwellbenton avatar lukeghenco avatar lizbur10 avatar jeffkatzy avatar dependabot[bot] avatar gj avatar robhitt avatar sdcrouse avatar

Watchers

 avatar Mohawk Greene avatar Victoria Thevenot avatar Bernard Mordan avatar Otha avatar raza jafri avatar  avatar Joe Cardarelli avatar The Learn Team avatar Sophie DeBenedetto avatar  avatar  avatar Matt avatar Antoin avatar  avatar Alex Griffith avatar  avatar Amanda D'Avria avatar  avatar Ahmed avatar Nicole Kroese  avatar Kaeland Chatman avatar Lisa Jiang avatar Vicki Aubin avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.