sp-dev-fx-webparts/samples/react-redux
Hugo Bernier 35fbbf7809 Moved disclaimers to bottom 2021-11-07 01:54:14 -05:00
..
.vscode Sample react-redux (#52) 2016-11-10 17:48:10 +02:00
assets Changed from updated to modificationDateTime 2021-05-02 15:39:42 -04: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 Moved disclaimers to bottom 2021-11-07 01:54:14 -05: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
tslint.json Add tslint at the root of each SPFx project (#394) 2018-01-08 15:58:48 +02:00

README.md

page_type products languages extensions
sample
office-sp
javascript
typescript
contentType technologies platforms createdDate
samples
SharePoint Framework
React
1/1/2016 12:00:00 AM

Web part with React and Redux

Summary

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

Reactive

Non-Reactive

Compatibility

SPFx 0.4.0 Node.js v6 Compatible with SharePoint Online Compatible SharePoint 2019 Compatible with SharePoint 2016 (Feature Pack 2) Local Workbench Compatible Hosted Workbench Compatible

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.