-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
fix(gen:app:navbar): improve navbar component when using ui-router #445
fix(gen:app:navbar): improve navbar component when using ui-router #445
Conversation
Changes: - Use `ui-sref` instead of `href` or `ng-href` when ui-router is chosen - Use `ui-sref-active` instead of `ng-class='{active: isActive()}'` when ui-router is chosen - Use `$scope.menu[n].state` instead of `$scope.menu[n].link` when ui-router is chosen (attempt to remove possible confusion) - Omit `$scope.isActive` when ui-router is chosen - Simplify `navbar(jade).jade` templating (remove extra `<% if (filters.auth) %>` tag) closes angular-fullstack#436
@JaKXz potentially the change to use Your thoughts? |
I'd be in favour of $state.go(), leveraging UI-router. |
Then perhaps we should take a look actually leveraging more of UI-router's features when it come to state routing.
I'm actually using Either way, would a separate PR be inline to cover these possible changes, as well as switching to |
As for a logout state, we could also make a corresponding route if the user chooses In either case, if the URL: This would allow for a more restful interface as well as provide additional functionality such as allowing for: Just my 2 cents... |
Also, I'd be interested in submitting the PR to cover such a change. Not trying to throw extra work on anyone else ;) |
Those are all good points. Go nuts, @kingcody! |
Looks good. I need to start merging things into the canary branch. |
PRs directly to canary would make my job easier. |
Changes:
ui-sref
instead ofhref
orng-href
when ui-router is chosenui-sref-active
instead ofng-class='{active: isActive()}'
when ui-router is chosen$scope.menu[n].state
instead of$scope.menu[n].link
when ui-router is chosen (attempt to remove possible confusion)$scope.isActive
when ui-router is chosennavbar(jade).jade
templating (remove extra<% if (filters.auth) %>
tag)closes #436, #331