Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork17
Persist and hydrate MobX-state-tree stores (in < 100 LoC)
License
agilgur5/mst-persist
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Persist and hydrateMobX-state-tree stores.
npm i -S mst-persist
import{types}from'mobx-state-tree'importlocalForagefrom'localForage'import{persist}from'mst-persist'constSomeStore=types.model('Store',{name:'John Doe',age:32})constsomeStore=SomeStore.create()persist('some',someStore,{storage:localForage,// or AsyncStorage in react-native.// default: localStoragejsonify:false// if you use AsyncStorage, this shoud be true// default: truewhitelist:['name']// only these keys will be persisted}).then(()=>console.log('someStore has been hydrated'))
arguments
- keystring The key of your storage engine that you want to persist to.
- storeMST store The store to be persisted.
- optionsobject Additional configuration options.
- storagelocalForage / AsyncStorage / localStoragelocalForage-style storage API. localStorage for Web (default), AsyncStorage for React Native.
- jsonifybool Enables serialization as JSON (default:
true). - whitelistArray<string> Only these keys will be persisted (defaults to all keys).
- blacklistArray<string> These keys will not be persisted (defaults to all keys).
returns a void Promise
None yet, but can take a look atagilgur5/react-native-manga-reader-app which uses it in production.Can view the commit that implements ithere.
Basically just a small wrapper around MST'sonSnapshot andapplySnapshot.The source code is currently shorter than this README, so take a look under the hood! :)
Inspiration for parts of the code and API came fromredux-persist,mobx-persist, andthis MST persist PoC gist
About
Persist and hydrate MobX-state-tree stores (in < 100 LoC)
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.
