Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User state #16

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

User state #16

wants to merge 9 commits into from

Conversation

nathangthomas
Copy link
Owner

Do NOT MERGE (The functionality in this PR does not work properly)

This PR attempts to do the following:

  • Attempts to automatically redirect the user to the ./recipe-book route upon login preventing the user from having to refresh the page to be redirected.
  • Attempts to automatically redirect the user to the / route upon logout preventing the user from having to refresh the page to be redirected.

I am following a LevelUpTuts tutorial and for reference am stuck on this For reference THIS is this episode I am stuck on.

Desired outcome
I am looking to create login and logout redirects. For example when logging in you are automatically redirected to a desired page and upon log out the user is redirected to the home page. Currently the user has to physically refresh the page to make this happen.

What I have tried
The tutorial achieves this functionality with the following code in routes.js:

Accounts.onLogin(function() {
  FlowRouter.go('recipe-book');
  // BlazeLayout.render('MainLayout', {main: 'Recipes'});
});
Accounts.onLogout(function() {
  // BlazeLayout.render('HomeLayout');
  FlowRouter.go('home');
});

I have tried the above code, using the direct path like so FlowRouter.go("./layouts/HomeLayout.html"); and using Blaze's render method in various ways as seen in the commented code above. Additionally, I read that it might be better to create template wrappers like in the docs HERE, but to no avail.

The strange thing is that both the code above and the template wrappers render a console.log properly when logging in and out, but do not redirect to the appropriate page without the user having to physically refresh the page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant