eb8bd92a0b | ||
---|---|---|
.. | ||
.vscode | ||
assets | ||
config | ||
src | ||
typings | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.npmignore | ||
.yo-rc.json | ||
README.md | ||
gulpfile.js | ||
package.json | ||
react-redux.njsproj | ||
tsconfig.json | ||
tslint.json |
README.md
page_type | products | languages | extensions | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sample |
|
|
|
Web part with React and Redux
Summary
Sample web part implementation that uses Redux to keep track of its state.
Reactive
Non-Reactive
Compatibility
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 |
Minimal Path to Awesome
$ git clone https://github.com/pnp/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 web part reducer that stores the web part properties. Web part reducer implementation follows the ducks pattern. - Redux store configuration defined in
./store
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.