sp-dev-fx-webparts/samples/react-mobx
Hugo Bernier 8e6bd1404b Added web part to every sample 2024-04-18 01:51:29 -04:00
..
.devcontainer remote container for react-mobx 2022-03-11 16:05:30 -05:00
.vscode Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
assets Added web part to every sample 2024-04-18 01:51:29 -04:00
config Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
src Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
typings Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
.editorconfig Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
.gitattributes Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
.gitignore Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
.npmignore Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
.yo-rc.json Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
README.md Added more contributions 2023-03-15 01:23:34 -04:00
gulpfile.js Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
package.json Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
react-mobx-spfx-webpart.njsproj Sample react-mobx (#56) 2016-11-10 17:48:31 +02:00
tsconfig.json Sample react-mobx (#56) 2016-11-10 17:48:31 +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

Using Mobx

Summary

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

Reactive

Non-Reactive

Compatibility

⚠️ Important
Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.
Refer to https://aka.ms/spfx-matrix for more information on SPFx compatibility.

This sample is designed to be used in the following environments:

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

For more information about SPFx compatibility, please refer to https://aka.ms/spfx-matrix

Applies to

Contributors

Version history

Version Date Comments
1.0 November 4, 2016 Initial release

Minimal Path to Awesome


>  This sample can also be opened with [VS Code Remote Development](https://code.visualstudio.com/docs/remote/remote-overview). Visit https://aka.ms/spfx-devcontainer for further instructions.sh
$ git clone https://github.com/pnp/sp-dev-fx-webparts
$ cd sp-dev-fx-webparts/samples/react-mobx
$ npm install
$ gulp serve

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

  • Presentational (dumb) components live in ./components
  • Container (smart) components live in ./container
  • Mobx stores are defined in ./store with a sample web part store that keeps track of the web part properties.

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.