I'd to keep the my Meteor interactions in a redux action creator using redux-thunk. Using Meteor.ddp.on("added"..., I can see that the data is being retrieved but the Meteor.collection('keys').find() returns null.
I suspect this is because the call is not wrapped in createContainer but I don't want to do the updates in a React component. Is it possible to maintain a redux store with Meteor data in this way?
I'd to keep the my Meteor interactions in a redux action creator using redux-thunk. Using
Meteor.ddp.on("added"...
, I can see that the data is being retrieved but theMeteor.collection('keys').find()
returns null.I suspect this is because the call is not wrapped in createContainer but I don't want to do the updates in a React component. Is it possible to maintain a redux store with Meteor data in this way?