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:
parent
6f0eaf7091
commit
e33af8a672
|
@ -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`
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user