2020-11-08 23:37:44 -05:00
# Using Mobx with multiple stores
2019-05-20 07:03:33 -04:00
2019-05-24 13:34:58 -04:00
## Summary
A sample webpart that uses the [Mobx ](https://mobx.js.org/ ) library with multiple stores to keep track of the applications state.
2019-05-20 07:03:33 -04:00
2019-05-24 13:34:58 -04:00
< img src = "assets/demo.gif" / >
2019-05-20 07:03:33 -04:00
2019-05-24 13:34:58 -04:00
## Used SharePoint Framework Version
![drop ](https://img.shields.io/badge/version-1.8.2-green.svg )
## Applies to
2020-06-09 03:09:22 -04:00
* [SharePoint Framework ](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview )
2019-05-24 13:34:58 -04:00
* [SharePoint Framework Webpart Samples ](https://github.com/SharePoint/sp-dev-fx-webparts )
2020-06-09 03:09:22 -04:00
* [Office 365 developer tenant ](https://docs.microsoft.com/sharepoint/dev/spfx/set-up-your-developer-tenant )
2019-05-24 13:34:58 -04:00
## Solution
Solution|Author(s)
--------|---------
react-mobx-multiple-stores | Kemal Sinanagic / [@kemicza ](http://twitter.com/kemicza ) / kemicza@gmail.com
## Version history
2019-05-20 07:03:33 -04:00
2019-05-24 13:34:58 -04:00
Version|Date|Comments
-------|----|--------
1.0|May 24, 2019|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
```sh
$ git clone https://github.com/SharePoint/sp-dev-fx-webparts
$ cd sp-dev-fx-webparts/samples/react-mobx-multiple-stores
$ npm install
$ gulp serve
```
2019-05-20 07:03:33 -04:00
2019-05-24 13:34:58 -04:00
## Features
2019-05-20 07:03:33 -04:00
2019-05-24 13:34:58 -04:00
* Enforces that the state always needs be updated in **actions** , using the < em > always</ em > flag for < em > enforceActions</ em > .
* Demonstrates the **toJS** method to convert an observable array to a javascript structure. This is used to render the items in a DetailsList.
* Out-of-the-box MobX **decorators** to keep the code clean.
* **Asynchronous** actions
* MobX **computed** values
* **Typescript** version 3.3.4 using < em > @microsoft/rush-stack-compiler-3.3</ em > for compatibility with the latest MobX version and typings
2019-05-20 07:03:33 -04:00
2020-11-08 23:37:44 -05:00
< img src = "https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/samples/react-mobx-multiple-stores" / >