Giter Site home page Giter Site logo

Comments (6)

JulianKingman avatar JulianKingman commented on July 20, 2024

Ah, right. This is probably because combineReducers creates new nested objects with the reducer name, which is also probably why you're getting error #28. So we need to deal with this a little more intelligently, because combining reducers the way it's done now will break a bunch of things (see conbineReducers docs: http://redux.js.org/docs/api/combineReducers.html). Basically, if combineReducers is used, we need to use MeteorStore.meteorReduxReducers.dispatch(...) instead of MeteorStore.dispatch(...), make sense? Interested in creating a new pull request?

You might be able to get away with something as simple as:

// line 86
const newReducers = (customReducers !== undefined) ? combineReducers({ ...customReducers, meteorReduxReducers }) : meteorReduxReducers;
const MeteorStore = createStore(newReducers, preloadedState, enhancer);
if (customReducers) MeteorStore.dispatch = MeteorStore.meteorReduxReducers.dispatch;

from react-native-meteor-offline.

Diwei-Chen avatar Diwei-Chen commented on July 20, 2024

@JulianKingman Sorry, I don't quite understand what's the difference between dispatched by MeteorStore and Meteor.meteorReduxReducers? Could you explain it with a bit more details, please? Also, we can't access to meteorReduxReducers as it is not directly under MeteorStore and it doesn't have a dispatch function as it is not a store object?

We tried very hard today and here are some screen shots:

screen shot 2017-03-28 at 4 48 16 pm

screen shot 2017-03-28 at 4 54 35 pm

We appreciate for your quick response :)

from react-native-meteor-offline.

JulianKingman avatar JulianKingman commented on July 20, 2024

I'm sorry, I led you astray there, it's not that the store gets nested, just the state. So now whenever you call MeteorStore.getState(), you get {meteorReduxReducers: {...}, customReducers: {...}}. So on line 95, in the rehydration step, calling MeteorStore.getState() is getting the whole state object, it needs to be MeteorStore.getState().meteorReduxReducers instead.

So if you replace instances of MeteorStore.getState() with this, it should work:

const getState = typeof customReducers !== 'undefined' ? MeteorStore.getState().meteorReduxReducers : MeteorStore.getState();
_.each(getState, (collection, key) => {
// etc...

from react-native-meteor-offline.

Diwei-Chen avatar Diwei-Chen commented on July 20, 2024

No worries. After added these two lines of codes, good news is, we can be able to restore all the customReducers' states properly, but all the previous states would be nested into meteorReduxReducers again. Then after several times of refreshing the app, the size of meteorReduxReducers will increase largely.

Is this problem caused by the 'rehydrated' step, which is from line 95 - 110? As the payload of current persist/REHYDRATE action doesn't overwrite prev state correctly?

from react-native-meteor-offline.

JulianKingman avatar JulianKingman commented on July 20, 2024

How is this working in v2, I haven't tested?

from react-native-meteor-offline.

Diwei-Chen avatar Diwei-Chen commented on July 20, 2024

Thanks @JulianKingman

screen shot 2017-05-18 at 11 33 02 am

This problem still exists

from react-native-meteor-offline.

Related Issues (20)

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.