Skip to content

charmedsatyr-401-advanced-javascript/lab-35

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cf Lab 35: Refactor RESTy to REdux

Date: May 3rd, 2019
Authors: Joseph Wolfe, Aaron Ferris

File Structure

├── config
│   ├── env.js
│   ├── jest
│   │   ├── cssTransform.js
│   │   └── fileTransform.js
│   ├── modules.js
│   ├── paths.js
│   ├── webpack.config.js
│   └── webpackDevServer.config.js
├── LAB.md
├── package.json
├── package-lock.json
├── public
│   └── index.html
├── README.md
├── scripts
│   ├── build.js
│   ├── start.js
│   └── test.js
└── src
    ├── actions
    │   ├── form-actions.js
    │   └── history-actions.js
    ├── app.js
    ├── components
    │   ├── footer
    │   │   └── index.js
    │   ├── header
    │   │   └── index.js
    │   └── resty
    │       ├── display-response.js
    │       ├── form.js
    │       ├── history.js
    │       ├── index.js
    │       ├── method-handler.js
    │       ├── methods.js
    │       └── resty.css
    ├── index.js
    ├── lib
    │   ├── api.js
    │   └── utils.js
    ├── reducers
    │   ├── form-reducers.js
    │   └── history-reducers.js
    ├── store
    │   ├── index.js
    │   └── reporter.js
    └── style
        ├── reset.css
        └── style.css

14 directories, 36 files

Assignment

-[x] Keeping the core functionality in place, upgrade RESTy
-[x] Convert from component state to a Redux Store
-[ ] Convert from using superagent to fetch
-[x] Modularize the component and store tree
-[ ] Fully document the application and all components
-[ ] Fully test the reducers, actions, and units

-[x] Use the tools you've built in react to construct an amazing application.
-[x] Make this easy and intuitive for a user to use
-[x] The User Interface and Experience are completely up to you

UML

About

RESTy Conversion to Redux

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors