Less useless ladder refresh requests.

This commit is contained in:
Nick Winter 2014-03-19 18:26:38 -07:00
parent 9713f7d142
commit ff1e64e1f6
2 changed files with 6 additions and 10 deletions
app
templates/play/ladder
views/play

View file

@ -58,6 +58,7 @@ div#columns.row
span(data-i18n="ladder.watch_victory") Watch your victory
else
span(data-i18n="ladder.defeat_the") Defeat the
|
| #{team.otherTeam}
if !team.matches.length

View file

@ -72,20 +72,15 @@ module.exports = class LadderView extends RootView
@showPlayModal(hash) if @sessions.loaded
fetchSessionsAndRefreshViews: ->
return if @destroyed or application.userIsIdle or @$el.find('#simulate.active').length or (new Date() - 2000 < @lastRefreshTime)
@sessions.fetch({"success": @refreshViews})
refreshViews: =>
return if @destroyed or application.userIsIdle
if @$el.find("#ladder.active").length
return if new Date() - 2000 < @lastLadderRefreshTime
@lastLadderRefreshTime = new Date()
@ladderTab.refreshLadder()
console.log "Refreshing ladder."
if @$el.find("#my-matches.active").length
return if new Date() - 2000 < @lastMatchesRefreshTime
@lastMatchesRefreshTime = new Date()
@myMatchesTab.refreshMatches()
console.log "Refreshing matches view."
@lastRefreshTime = new Date()
@ladderTab.refreshLadder()
@myMatchesTab.refreshMatches()
console.log "Refreshed sessions for ladder and matches."
onIdleChanged: (e) ->
@refreshViews() unless e.idle