icd2k3 / react-redux-slideshow-example

Slideshow example app built with React, Redux, Webpack, Babel, & Karma

Home Page:http://slideshow.justin-schrader.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dependency Status David Travis Coverage Status

Note: the eventual goal of this repo is to fork it into a full-stack starter kit (or possibly a yo generator), but for now it's just a place for me to try out different ways of structuring a react-redux UI.

React + Redux Slideshow Example Project

Slideshow example app built with React, Redux, Webpack, Babel, & Karma.

Demo

slideshow.justin-schrader.com Screenshot

This is obviously waaay over-engineered for a simple slideshow that could have been built in vanilla js. But this stack/setup represents how I would (currently) approach building a large-scale application.

Slideshow features include json config file, settings panel for transitions/image size, and view count.

Install & Run Locally

  1. Node & NPM should be installed globally
  2. Clone this repo
  3. npm i - install all project dependencies
  4. npm run dev - run local dev server with hot module reloading*

*Hot module reloading is enabled. Example video link - normally in this flow we'd have to reload the page, navigate back to the final image, and view it 4 times in order to test this change. With hot module reloading the component is updated instantly in the current app state.

Key Pain Points To Solve

  • If a bug surfaces in the platform it should not be difficult to find the origin.
  • It should be entirely modular in that each piece of functionality (component) should be able to work independently of the rest of the app.
  • The platform should be easy to edit or add to.
  • It should be able to be entirely covered with unit tests.

Run Unit Tests & Code Coverage Reports

  • npm run test This script runs all karma unit tests (any *.spec.js file in /src) then generates a code coverage report.

Code coverage report is provided via Istanbul and highlights which parts of the app are not covered. This report can be viewed in code-coverage-report/html/index.html after running npm run test:

Coverage

Create Production Builds

  • npm run dist This script compiles, compresses, and copies all assets to be deployed to a /dist directory.

Pros & Cons

Pro: Predictable

  1. Components receive props and dispatch actions (when the user interacts with them)
  2. Reducers handle these dispatched actions and modify application state at the root level
  3. Application state is propagated back down the React component tree and UI is updated
  4. ????
  5. Profit

In this flow components are de-coupled from the state, they do not worry about anything that's going on around them; they just know they're supposed to receive certain properties and render. Also, since the entire state exists at the root level of the application, any component can easily be granted access to any part of the state and we can track every user interaction with the app and how it modifies state. Really useful for debugging.

Logger

Pro: Scalable

With this approach it is easy to add & modify functionality anywhere in the app without worrying about how it might affect other parts of the application. Each component folder in this app could be used anywhere.

Pro: Testable

Components, actions, and reducers (state) can be individually unit tested as they are functional code islands.

Con: Lots of Dependencies

While most of the dependencies are for local build & unit tests, there is still 9 dependencies included in the final dist bundle. Lately I've been exploring Riot which seems promising in terms of cutting down final build size while still maintaining a similar app structure.

Con: Learning Curve

For developers that haven't used React or Redux before there would certainly be a bit of ramp-up time. However, as long as the documentation is good it should be fairly straightforward.

Main Tools Used

This project has quite a few dependencies, but the list below represents the key tools, and why I decided to include them.

  • Babel
    • To be able to use es6 when developing locally. Super handy for a number of reasons.
  • Enzyme
    • React's default testing tools are somewhat limited. Enzyme provides a nice jQuery-like api for interacting with React components when writing unit tests.
  • Eslint
    • My favorite tool for linting javascript. Not only does it report errors, but it is very extendable so you can add custom (personal preference) rules to ensure all developers on a project will produce similar looking code.
  • Karma/Mocha/Chai
    • Easy to use, configurable test runner that also produces some handy code coverage reports (see Unit Tests section above ^)
  • PostCSS
    • SASS/LESS include a bunch of functionality out-of-the-box, but PostCSS is a customizable, extendable css processing tool. Here's a great breakdown of why this is useful.
  • React
    • Do I think React is the end-all be-all of FE libs? No. But I do think it has the right opinion when thinking about an app as a series of smaller components. I've been digging Riot a lot recently, but React has a much larger community behind it.
  • Redux
    • Great way of managing application state as 1 huge data object at the root level. Makes the app more predictable, and it's very easy to track every single user interaction (what they did, previous state, and next state after their action). Very handy for debugging.
  • Webpack
    • I've been using webpack as a build tool for pretty much every project now. I used to use grunt/gulp, but webpack requires a lot less custom code to work (more of a config file really).

Note: usually for large data applications I would also include Immutable which provides an extra layer of predictability and security to application state. It would be very easy to modify reducers to use Immutable for this example. I just left it out because there is not much data in this example app.

Planned Improvements

  • Add router and routes for each image
  • Add image preloader for each image

Get at Me!

Please email me at me@justin-schrader.com or submit an issue if you have any questions or issues with this repo. Suggestions and PRs also welcome!

About

Slideshow example app built with React, Redux, Webpack, Babel, & Karma

http://slideshow.justin-schrader.com


Languages

Language:JavaScript 77.0%Language:CSS 16.1%Language:HTML 6.8%