Go one step further with lowering pusher data landing into store

If user switches to recent repos tab and then switches away, there's really no
point in pushing everything into store. We can still reject all of the events
for repos that don't belong to the current user and are not yet in the store.
This commit is contained in:
Piotr Sarnacki 2015-02-04 19:47:38 +01:00
parent 6f0eaf7091
commit e33af8a672
2 changed files with 5 additions and 2 deletions

View File

@ -5,6 +5,9 @@ Route = MainTabRoute.extend
reposTabName: 'recent'
activate: ->
@store.set('recentReposOpened', true)
@store.set('recentReposTabIsOpened', true)
deactivate: ->
@store.set('recentReposTabIsOpened', true)
`export default Route`

View File

@ -9,7 +9,7 @@ Store = DS.Store.extend
[name, type] = event.split(':')
auth = @container.lookup('auth:main')
if !@get('recentReposOpened') && event != 'job:log' && auth.get('signedIn') &&
if !@get('recentReposTabIsOpened') && event != 'job:log' && auth.get('signedIn') &&
!config.pro && !config.enterprise
# if recent repos hasn't been opened yet, we can safely
# drop any events that doesn't belong to repos owned by