Fix search

In search there was a check on 'auth' in the view and we no longer
inject auth into views. That's why the check needs to be done on the
controller.

The other thing is that slash breaks the URL currently, so this commit
also changes slash in the search phrase into %2F character.
This commit is contained in:
Piotr Sarnacki 2015-02-17 10:38:01 +01:00
parent 29513b744d
commit f7f274f5d5
3 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ Controller = Ember.ArrayController.extend
searchFor: (phrase) ->
Ember.run.cancel(@searchLater) if @searchLater
@searchLater = Ember.run.later(this, (->
@transitionTo('main.search', phrase)
@transitionTo('main.search', phrase.replace(/\//g, '%2F'))
), 500)
noReposMessage: (->

View File

@ -14,7 +14,7 @@ Route = MainTabRoute.extend
@controllerFor('repos').addObserver('firstObject', this, 'currentRepoDidChange')
model: (params) ->
params.phrase
params.phrase.replace(/%2F/g, '/')
deactivate: ->
@_super.apply(this, arguments)

View File

@ -8,7 +8,7 @@ View = Ember.View.extend
classRecent: (->
if @get('tab') == 'recent'
'active'
else if @get('tab') == 'search' && @auth.get('signedIn')
else if @get('tab') == 'search' && @get('controller').auth.get('signedIn')
'hidden'
).property('tab')