genyded
genyded
This can be accomplished/addressed with https://scribe.knuckles.wtf/laravel/documenting/custom-endpoints. It's not quick and easy but then none of the packages that help with API docs using docblocks and such are. This one however...
Oh and I forgot to mention another option that may work better for some teams or people who hate YAML. If you happen to be using the tests that Laravel...
+1 for example... in [meals](https://github.com/djhi/my-nutrition/blob/master/app/client/actions/meals.js), on line 11, where do the values for userId and Date come from? Also the comments in the subscription middleware show a slightly different signature...
Same here... I am under the gun for a client project though and was really hoping to use this middleware because out of everything out there this seems like the...
Not sure why this closed... this is a royal PAIN!!! Patching does not work IF YOU ARE USING AN EXTERNAL REACT. And some people do not have a choice.
There's another nice Meteor, Webpack, React starter [here](https://github.com/thereactivestack) that even supports SSR but it has many of the same challenges and I had a hard time trying to integrate redux...
Just an update... I've been working with the devs of [the reactivestack](https://github.com/thereactivestack) Meteor, Redux, Webpack starter and it now has full Redux support. I have also fully integrated it with...
Hi David, I assume you mean the Meteor subscriptions? If so, subscriptions have a stop() method that I invoke via a seperate action in the components unmount. The middleware already...
@dbismut If it helps... here is what I changed (or added).... @djhi [meteorSubscription.js](https://github.com/djhi/my-nutrition/blob/master/app/client/middlewares/meteorSubscription.js)... ``` javascript ... export default store => next => action => { if (!action.meteor || !action.meteor.subscribe &&...
@dbismut It's probably possible to do something like composeWithTracker, but right now I do not have time to boil the ocean and was trying to get something working quickly. 1)...