If I may suggest, could you please create another tutorial on how to add user account functionality to this? Sign In / Sign Up / Edit Account etc. I think that would be extremely useful for someone like me who is trying to learn Meteor now during the community’s transition to 1.3 and React. It’s hard to find learning material on all this new stuff.
If you are familiar with Blaze this article should help you much. At least it helped me to catch up basics with Meteor React and some more about Sign In / Sign Up and etc… in Meteor React.
Also, at the end of Part 1, it shows a screenshot of what the home page should look like (with a list of posts), however, the tutorial up to that point never had a step that involved inserting data into the collection.
I had a quick look through this. Everything is clear to me. But now I’m looking at this:
…and I’m wondering, what if I’m storing my subscription params in redux? I need my subscription to run reactively using both redux AND tracker at the same time. I need it to run so that I know when the subscription is ready, and I need it to run also when redux state is updated. Is this possible?
Thanks for the guide though, it made going through mantra much quicker than without.
Also @arunoda the link you provided is still pointing at your ES2015 content. Not sure if that’s intentional
Im trying to add Accounts functionality right now and I’m having a hard time finding where to import Accounts from…i tried the following but it didn’t work -
import {Accounts} from ‘meteor/accounts-password’;
@arjunrajjain I am now facing the same issue with creating an Authentication system, I can’t quite see how to make this work.
Did you manage to figure this out?
@arunoda would you be able to create a simple example of this? I’m having trouble initializing my store with collection data. I’m doing something like this in my container:
but the component never renders. I’ve been trying to find the best approach on initializing collection data in a redux store but have not found one yet.