Git Product home page Git Product logo

mobx-keystone-persist's Introduction

mobx-keystone-persist

npm version typings build status code coverage

Persist and hydrate mobx-keystone stores.

Installation

npm i -S mobx-keystone-persist

Usage

import { model, Model } from "mobx-keystone";
import localForage from "localForage";
import { persist } from "mobx-keystone-persist";

@model("myApp/SomeStore")
class SomeStore extends Model({
  name: "John Doe",
  age: 32,
}) {}

const someStore = new SomeStore({});

persist("some", someStore, {
  storage: localForage, // or AsyncStorage in react-native.
  // default: localStorage
  jsonify: false, // if you use AsyncStorage, this shoud be true
  // default: true
  whitelist: ["name"], // only these keys will be persisted
}).then(() => console.log("someStore has been hydrated"));

API

persist(key, store, options)

  • arguments

    • key string The key of your storage engine that you want to persist to.
    • store mobx-keystone store The store to be persisted.
    • options object Additional configuration options.
      • version number Version code for the state (default: -1).
      • storage localForage / AsyncStorage / localStorage Any Storage Engine that has a Promise-style API similar to localForage. The default is localStorage, which has a built-in adaptor to make it support Promises. For React Native, one may configure AsyncStorage instead.
        Any of redux-persist's Storage Engines should also be compatible with mobx-keystone-persist.
      • jsonify bool Enables serialization as JSON (default: true).
      • whitelist Array<string> Only these keys will be persisted (defaults to all keys).
      • blacklist Array<string> These keys will not be persisted (defaults to all keys).
      • migrate function Migration handler for versioning (default: undefined).
      • throttle number Throttle and delay persisting so it can't happen more than once every Nth ms (default: undefined).
  • returns a void Promise

Migrations

Mobx-keystone-persist has migration support very similar to redux-persist v6's migrations. The migration process runs after getting stored state but before actually reconciling with the store.

The library ships with createMigrate which covers most use cases and is simple to use. If you need more control of how versioning is handled and migrations are applied, you can instead write your own migrator. It can be any function which takes state as an argument and returns a promise to return a new state object.

[Additional information]

Node and Server-Side Rendering (SSR) Usage

Node environments are supported so long as you configure a Storage Engine that supports Node, such as redux-persist-node-storage, redux-persist-cookie-storage, etc. This allows you to hydrate your store server-side.

For SSR though, you may not want to hydrate your store server-side, so in that case you can call persist conditionally:

if (typeof window !== 'undefined') { // window is undefined in Node
  persist(...)
}

With this conditional check, your store will only be hydrated client-side.

How it works

Basically just a small wrapper around mobx-keystone's getSnapshot and applySnapshot. The source code is currently shorter than this README, so take a look under the hood! :)

Credits

A fork of mst-persist by Anton Gilgur. modified to use mobx-keystone instead of mobx-state-tree.

Inspiration for parts of the original code and API came from redux-persist, mobx-persist, and this MST persist PoC gist

mobx-keystone-persist's People

Contributors

agilgur5 avatar barbalex avatar phault avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

mobx-keystone-persist's Issues

[email protected] introduces breaking changes

Starting with [email protected], this module no longer works and throws an error:

Unhandled Runtime Error
TypeError: Cannot read properties of undefined (reading '_internal')

Would be great if you could find the time to update this module to the latest version of mobx-keystone.

Mobx keystone v0.64.1 compatible.

This library has been a very useful tool, I've been using it for a while now.
I cannot use this library anymore when upgrading to [email protected]
Is it possible to update this library?

The code to persist:

persist("TestStore", rootStore, {
    jsonify: true, 
  });

Now when i npm install:

npm install mobx-keystone-persist
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: electron-react-boilerplate@undefined
npm ERR! Found: [email protected]
npm ERR! node_modules/mobx-keystone
npm ERR!   mobx-keystone@"^0.64.0" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer mobx-keystone@"^0.45.1" from [email protected]
npm ERR! node_modules/mobx-keystone-persist
npm ERR!   mobx-keystone-persist@"^1.2.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /home/tst/.npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/tst/.npm/_logs/2022-01-11T19_44_36_116Z-debug.log

When i try --force, it installs of course but I receive the following error in renderer:

Uncaught (in promise) Error: node must be a tree node (usually a model or a shallow / deep child part of a model 'data' object)
    at failure (renderer.dev.js:163461)
    at assertTweakedObject (renderer.dev.js:163762)
    at onSnapshot (renderer.dev.js:168961)
    at persist (renderer.dev.js:162829)
    at createRootStore (renderer.dev.js:228450)
    at ./src/models/root-store.ts (renderer.dev.js:228459)
    at Object.options.factory (renderer.dev.js:237491)
    at __webpack_require__ (renderer.dev.js:236936)
    at fn (renderer.dev.js:237162)
    at ./src/renderer/components/pages/Configuration.tsx (renderer.dev.js:228775)

I hope you can find the time to update this package.

Kr,

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.