28 lines
841 B
CoffeeScript
28 lines
841 B
CoffeeScript
NavigationBarDirective = (currentUserService, $location) ->
|
|
link = (scope, el, attrs, ctrl) ->
|
|
scope.vm = {}
|
|
|
|
scope.$on "$routeChangeSuccess", () ->
|
|
if $location.path() == "/"
|
|
scope.vm.active = true
|
|
else
|
|
scope.vm.active = false
|
|
|
|
taiga.defineImmutableProperty(scope.vm, "projects", () -> currentUserService.projects.get("recents"))
|
|
taiga.defineImmutableProperty(scope.vm, "isAuthenticated", () -> currentUserService.isAuthenticated())
|
|
|
|
directive = {
|
|
templateUrl: "navigation-bar/navigation-bar.html"
|
|
scope: {}
|
|
link: link
|
|
}
|
|
|
|
return directive
|
|
|
|
NavigationBarDirective.$inject = [
|
|
"tgCurrentUserService",
|
|
"$location"
|
|
]
|
|
|
|
angular.module("taigaNavigationBar").directive("tgNavigationBar", NavigationBarDirective)
|