sp-dev-fx-webparts/samples/react-redux
Vesa Juvonen 71e0031828 Added SPFx version indicator to readme files for all samples. 2016-12-13 11:26:45 +02:00
..
.vscode Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
config Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
src Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
typings Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
.editorconfig Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
.gitattributes Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
.gitignore Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
.npmignore Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
.yo-rc.json Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
README.md Added SPFx version indicator to readme files for all samples. 2016-12-13 11:26:45 +02:00
gulpfile.js Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
package.json Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
react-redux.njsproj Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
tsconfig.json Sample react-redux (#52) 2016-11-10 17:48:10 +02:00

README.md

Webpart with React and Redux

Summary

Sample webpart implementation that uses Redux to keep track of its state.

Reactive

Non-Reactive

Used SharePoint Framework Version

drop

Applies to

Solution

Solution Author(s)
react-redux Kevin Mees kev.mees@gmail.com (Experts Inside GmbH, @kmees)

Version history

Version Date Comments
1.0 October 28, 2016 Initial release

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.


Minimal Path to Awesome

$ git clone https://github.com/SharePoint/sp-dev-fx-webparts
$ cd sp-dev-fx-webparts/samples/react-redux
$ npm install
$ gulp serve

Features

  • Presentational (dumb) components live in ./components
  • Container (smart) components live in ./container
  • Redux reducers are defined in ./reducers with a sample webpart reducer that stores the webpart properties. Webpart reducer implementation follows the ducks pattern.
  • Redux store configuration defined in ./store