Robert S.

Results 24 comments of Robert S.

sure, go ahead and submit a pr

@quarrant we might want to remove the `invalidStorageAdaptorWarningIf` check because `storage: window.localStorage` should be fine. In the [Demo](https://github.com/quarrant/mobx-persist-store?tab=readme-ov-file#demo) we use `window.localStorage`. I don't think that util check is accurate.

@momtboy It's has been awhile but if you are using `storage: window.localStorage` I think you also need to set `stringify: true`. I could be wrong. `configurePersistable({ storage: window.localStorage, stringify: true,...

I would also like to see the feature added. Where I could include one TS file into the HTML file and it would load in the referenced files. Great work...

This is similar to https://github.com/quarrant/mobx-persist-store/issues/41 and https://github.com/quarrant/mobx-persist-store/issues/55 where you are trying to save a [Map Object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) with references to classes. So basically you are doing this: ```js JSON.stringify(new Map(['productId', new...

I like the name `autoHydrate`. I will probably work on a PR this weekend and you can see what I come up with. First I think I am going to...

I am going to work on this still but it will be a few weeks now until I can.

I wonder if these feature will solve your issue? https://github.com/quarrant/mobx-persist-store/issues/82

When you say "fast refresh" is that the same a React hot reloading? I have noticed during development mode I will get the warning you are get but when I...