Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/authentication_service.js.coffee
2015-10-01 11:13:45 +10:00

34 lines
1.0 KiB
CoffeeScript

Darkswarm.factory "AuthenticationService", (Navigation, $modal, $location, Redirections, Loading)->
new class AuthenticationService
selectedPath: "/login"
constructor: ->
if $location.path() in ["/login", "/signup", "/forgot"] && location.pathname isnt '/register/auth'
@open $location.path()
else if location.pathname is '/register/auth'
@open '/signup', 'registration_authentication.html'
open: (path = false, template = 'authentication.html') =>
@modalInstance = $modal.open
templateUrl: template
windowClass: "login-modal medium"
@modalInstance.result.then @close, @close
@selectedPath = path || @selectedPath
Navigation.navigate @selectedPath
select: (path)=>
@selectedPath = path
Navigation.navigate @selectedPath
active: Navigation.active
close: ->
if location.pathname in ["/", "/checkout"]
Navigation.navigate "/"
else
Loading.message = t 'going_back_to_home_page'
location.hash = ""
location.pathname = "/"